@font-face {
  font-family: 'fustat';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url('../fonts/Fustat-VariableFont_wght.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Lato:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  background-color: #FFF8E7;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER / NAV ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-inner {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0 0 50px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  gap: 20px;
  backdrop-filter: blur(10px);
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  flex: 0 0 268px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo a {
  display: inline-block;
}

.header-logo img {
  width: 119px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  border: 2px solid #1A2126;
  border-radius: 50px;
  padding: 8px 40px;
}

.nav-pill a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin: 0 12px;
  padding: 5px 10px;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.nav-pill a:hover {
  background: #2F80ED;
  color: #FFFFFF;
}

.nav-pill a.active {
  color: #707070;
}

.header-cta {
  flex: 0 0 268px;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-call-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EB5757;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 30px;
  padding: 20px 30px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn-call-now:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-call-now svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #FFFFFF;
  z-index: 1060;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #2F80ED;
}

.mobile-nav a.active {
  color: #707070;
}

.mobile-nav .mobile-cta {
  margin-top: 20px;
}

/* ===== BUTTONS ===== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #EB5757;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 30px;
  padding: 20px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-primary:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 30px;
  padding: 18px 28px;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background: #EB5757;
  color: #FFFFFF;
  border-color: #EB5757;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  padding: 20px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-dark:hover {
  background: #EB5757;
  color: #FFFFFF;
}

.btn-view-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EB5757;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  padding: 20px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.btn-view-location:hover {
  background: #FFFFFF;
  color: #000000;
}

/* ===== SECTION LABELS ===== */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label svg {
  flex-shrink: 0;
}

.section-label span {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.section-label--yellow span {
  color: #12233A;
}

.section-label--blue span {
  color: #FFFFFF;
}

.section-label--lightblue span {
  color: #FFFFFF;
}

.section-label--dark span {
  color: #FFFFFF;
}

/* ===== HERO SECTION ===== */

.hero-section {
  background-image: url('../assets/images/hero-bg.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 251px 0 80px;
  min-height: 780px;
}

.hero-section .container {
  padding: 0;
}

.hero-content h2 {
  font-family: 'fustat', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFF8E7;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 63.526%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px;
}

.section-label--gallery span {
  color: #000000;
}

/* ===== ABOUT SECTION ===== */

.about-section {
  background: #FFF8E7;
  padding: 80px 0;
}

.about-row {
  display: flex;
  gap: 20px;
  min-height: 500px;
}

.about-images {
  flex: 0 0 50%;
  display: flex;
  gap: 20px;
}

.about-images-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-images img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-images-left img {
  flex: 1;
  min-height: 0;
}

.about-images-right img {
  width: 100%;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.about-section h2 {
  font-family: 'fustat', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #00007A;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 1.65;
  margin-bottom: 0;
  text-transform: capitalize;
}

.about-section .btn-primary {
  gap: 10px;
  margin-top: auto;
}

/* ===== PROGRAMS SECTION ===== */

.programs-section {
  background-image: url('../assets/images/programs-bg.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.programs-section .container {
  max-width: 1140px;
}

.programs-header {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.programs-section h2 {
  font-family: 'fustat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 10px;
}

.programs-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 10px;
}

.program-card-text {
  flex: 1;
  background: #FFFFFF;
  border-radius: 25px;
  padding: 30px;
}

.program-card-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #444444;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 29.7px;
}

.program-card-image {
  flex: 1;
  border-radius: 25px;
  background-image: url('../assets/images/programs-card-bg.jpg');
  background-position: center center;
  background-size: cover;
  min-height: 663px;
  padding: 10px;
}

.programs-supporting-text {
  text-align: center;
  max-width: 87%;
  margin: 0 auto;
}

.programs-supporting-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.8;
}

/* ===== ADMISSIONS SECTION ===== */

.admissions-section {
  padding: 80px 0;
  background: #FFF8E7;
}

.admissions-row {
  display: flex;
  min-height: 500px;
}

.admissions-left {
  flex: 1;
  background: #333333;
  border-radius: 40px 0 0 40px;
  padding: 50px 0 50px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admissions-left h2 {
  font-family: 'fustat', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.admissions-left p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #E5E7E8;
  line-height: 1.65;
  text-transform: capitalize;
}

.admissions-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admissions-right {
  flex: 1;
  background-image: url('../assets/images/admissions-bg.jpg');
  background-position: center center;
  background-size: cover;
  border-radius: 0 30px 30px 0;
}

/* ===== GALLERY SECTION ===== */

.gallery-section {
  background: #FFF8E7;
  padding: 80px 0;
}

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  margin-bottom: 20px;
}

.gallery-info h2 {
  font-family: 'fustat', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 10px;
}

.gallery-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  text-transform: capitalize;
}

.gallery-btn-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.gallery-grid-full {
  padding: 0 10px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 250px;
  flex: 1 1 180px;
  max-width: 300px;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.8s;
}

.gallery-grid-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.8s;
  border-radius: 20px;
  pointer-events: none;
}

.gallery-grid-item:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding-top: 80px;
  padding-bottom: 0;
}

.contact-container {
  background: #082E4C;
  border-radius: 36px;
  padding: 60px 30px 60px 40px;
  margin-bottom: -100px;
  position: relative;
  z-index: 10;
}

.contact-layout {
  display: flex;
  gap: 10px;
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-left h2 {
  font-family: 'fustat', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 15px;
}

.contact-left > p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.contact-icon-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon-box svg {
  flex-shrink: 0;
}

.contact-icon-box-text .label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #EEEEEE;
}

.contact-icon-box-text .value {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #F5F5F5;
}

.contact-right {
  flex: 1;
}

.contact-map-area {
  position: relative;
}

.contact-map-area img {
  width: 100%;
  border-radius: 15px;
}

.contact-form-container {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px 20px 0 29px;
}

.contact-form-container h3 {
  font-family: 'fustat', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #082E4C;
  line-height: 1.3;
  margin-bottom: 30px;
}

.contact-form-container h3 span {
  font-size: 40px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #F5F5F5;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  outline: none;
  transition: box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #858585;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px #2F80ED;
}

.form-group textarea {
  resize: vertical;
}

.form-group input[type="file"] {
  padding: 10px 16px;
  cursor: pointer;
}

.btn-submit {
  display: inline-block;
  background: #EB5757;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  padding: 20px 80px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 20px;
}

.btn-submit:hover {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 0 0 2px #EB5757;
}

/* ===== FOOTER ===== */

.site-footer {
  background: #000000;
  color: #FFFFFF;
  padding-top: 120px;
  position: relative;
}

.footer-top-bar {
  padding: 0 0 50px;
}

.footer-top-bar p {
  font-family: 'fustat', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}

.footer-main {
  padding: 0 0 50px;
}

.footer-columns {
  display: flex;
  gap: 0;
}

.footer-col-logo {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-col-logo img {
  width: 60%;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 7px;
}

.footer-col ul li,
.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  transition: color 0.3s;
}

.footer-contact-item {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 7px;
  line-height: 1.5;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  padding-bottom: 20px;
  border-bottom: 2px solid #FFFFFF;
  margin-bottom: 20px;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}

/* ===== PAGE BANNER ===== */

.page-banner {
  background-image: url('../assets/images/hero-bg.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 251px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-end;
}

.page-banner h2 {
  font-family: 'fustat', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFF8E7;
  line-height: 1.3;
}

/* ===== GALLERY PAGE ===== */

.gallery-page-section {
  background: #FFF8E7;
  padding: 80px 0;
}

.gallery-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-page-header h2 {
  font-family: 'fustat', sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #00007A;
  line-height: 1.3;
  margin-bottom: 15px;
}

.gallery-page-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
}

.gallery-page-grid {
  columns: 4;
  column-gap: 10px;
}

.gallery-page-grid a {
  display: block;
  margin-bottom: 10px;
  break-inside: avoid;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-page-grid a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.8s;
  border-radius: 20px;
  pointer-events: none;
}

.gallery-page-grid a:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.gallery-page-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.8s;
}

.gallery-page-grid a:hover img {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    padding: 10px 20px;
  }

  .hero-content h2 {
    font-size: 50px;
  }

  .programs-section h2 {
    font-size: 40px;
  }

  .admissions-left h2 {
    font-size: 36px;
  }

  .contact-left h2 {
    font-size: 36px;
  }

  .contact-form-container h3 {
    font-size: 36px;
  }

  .contact-form-container h3 span {
    font-size: 32px;
  }

  .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-banner h2 {
    font-size: 40px;
  }

  .gallery-page-grid {
    columns: 3;
  }

  .gallery-page-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 140px;
    min-height: auto;
  }

  .hero-content h2 {
    font-size: 65px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-row {
    flex-direction: column;
  }

  .about-images {
    flex: none;
    width: 100%;
    margin-bottom: 30px;
  }

  .about-section h2 {
    font-size: 32px;
  }

  .programs-cards {
    flex-direction: column;
  }

  .program-card-image {
    min-height: 250px;
  }

  .programs-section h2 {
    font-size: 32px;
  }

  .programs-supporting-text {
    max-width: 100%;
  }

  .admissions-row {
    flex-direction: column;
  }

  .admissions-left {
    border-radius: 30px 30px 0 0 !important;
    padding: 40px 20px;
  }

  .admissions-left h2 {
    font-size: 30px;
  }

  .admissions-right {
    border-radius: 0 0 30px 30px !important;
    min-height: 300px;
  }

  .gallery-info h2 {
    font-size: 32px;
  }

  .page-banner {
    padding-top: 140px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .page-banner h2 {
    font-size: 55px;
  }

  .gallery-page-grid {
    columns: 2;
  }

  .gallery-page-header h2 {
    font-size: 28px;
  }

  .contact-layout {
    flex-direction: column;
  }

  .contact-container {
    padding: 40px 20px;
  }

  .contact-left h2 {
    font-size: 30px;
  }

  .contact-form-container {
    padding: 30px 15px;
  }

  .contact-form-container h3 {
    font-size: 28px;
  }

  .contact-form-container h3 span {
    font-size: 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col-logo {
    flex: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
  }

  .container {
    padding: 0 20px;
  }

  .contact-icon-box-text .value {
    font-size: 18px;
  }

  .btn-primary,
  .btn-outline,
  .btn-dark {
    padding: 15px 25px;
    font-size: 15px;
  }
}
