/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Header */

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar*/
.top-bar {
    background-color: #f8f8f8;
    padding: 8px 0;
    border-bottom: 1px solid #e7e7e7;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    margin-right: 20px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.contact-info a i {
    margin-right: 5px;
    color: #e67e22;
}

.social-icons a {
    margin-left: 10px;
    font-size: 16px;
    color: #555;
    text-decoration: none;
}

.social-icons a:hover, .contact-info a:hover {
    color: #e67e22;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #9c7801;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    font-weight: 600;
    color: #334;
    transition: color 0.3s;
    padding: 10px 0;
}

nav ul li a:hover {
    color: #e67e22;
}

nav ul li a.active {
    color: #e67e22;
    border-bottom: 2px solid #e67e22;
}

.login-btn {
    background-color: #e67e22;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #d35400;
}



/* Hover Menu */
/* Navigation Menu Alignment Fixes */
.thawa-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
  .thawa-nav ul li {
    position: relative;
    margin: 0;
    padding: 0;
  }
  
  .thawa-nav ul li a {
    display: block;
    padding: 20px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  /* Ensure equal spacing between navigation items */
  .thawa-header-container .thawa-nav ul {
    justify-content: space-between;
  }
  
  /* Active state for current page */
  .thawa-nav ul li a.thawa-active {
    color: #e67e22;
    border-bottom: 2px solid #e67e22;
  }
  
  /* Fix for About Us and Join Our Team alignment */
  .thawa-nav ul li.thawa-about-menu a,
  .thawa-nav ul li.thawa-join-menu a {
    padding: 20px 15px;
  }
  
  /* Highlight effect for all menu items */
  .thawa-nav ul li a:hover {
    color: #e67e22;
  }
  
  /* Mega menu styling */
  .thawa-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 800px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    border-radius: 4px;
    padding: 20px;
    display: flex;
  }
  
  .thawa-nav ul li:hover > .thawa-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .thawa-mega-column {
    flex: 1;
    padding: 0 15px;
  }
  
  .thawa-mega-column h3 {
    color: #e67e22;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 10px;
  }
  
  .thawa-mega-column ul {
    display: block;
  }
  
  .thawa-mega-column ul li {
    width: 100%;
  }
  
  .thawa-mega-column ul li a {
    padding: 8px 0;
    color: #555;
    font-weight: normal;
  }
  
  .thawa-mega-column ul li a:hover {
    color: #e67e22;
    background-color: transparent;
    padding-left: 5px;
  }
  
  /* Mobile menu toggle */
  .thawa-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .thawa-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #9c7801;
    transition: all 0.3s ease;
  }
  
  /* Mobile menu toggle animation */
  .thawa-menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .thawa-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .thawa-menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Mobile responsive rules */
  @media screen and (max-width: 1200px) {
    .thawa-header-container {
      flex-wrap: wrap;
      position: relative;
      padding: 15px 15px;
    }
    
    .thawa-contact-info {
      justify-content: center;
    }
    
    .thawa-menu-toggle {
      display: flex !important;
      order: 3;
    }
    
    .thawa-nav {
      flex-basis: 100%;
      order: 4;
      display: none;
      width: 100%;
    }
    
    .thawa-nav.open {
      display: block;
    }
    
    .thawa-nav ul {
      flex-direction: column;
      width: 100%;
      padding: 0; 
      margin: 0; 
    }
    
    .thawa-nav ul li {
      margin: 0;
      padding: 10px 0;
      border-top: 1px solid #eee;
      text-align: center;
      width: 100%; 
    }
    
    .thawa-nav ul li a {
      display: block; 
      padding: 1px 0; 
    }
    
    .thawa-nav ul li a.thawa-active {
      border-bottom: none;
      color: #e67e22;
    }
    
    .thawa-mega-menu {
      position: static;
      width: 100%;
      transform: none;
      padding: 0;
    }
    
    .thawa-nav ul li:hover > .thawa-mega-menu {
      transform: none;
    }
  }


/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/About\ Us.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

                /* About Section */
                .about-section {
                  padding: 60px 0;
                  overflow: hidden;
                }
        
                .section-title {
                  text-align: center;
                  position: relative;
                  margin-bottom: 50px;
                  opacity: 0;
                  transform: translateY(30px);
                  animation: fadeInUp 0.8s ease forwards;
                }
        
                .section-title h2 {
                  font-size: 2.5rem;
                  color: #2c3e50;
                  margin-bottom: 10px;
                }
        
                .section-title:after {
                  content: '';
                  display: block;
                  width: 60px;
                  height: 4px;
                  background-color: #ff8c00;
                  margin: 15px auto;
                  transform: scaleX(0);
                  animation: scaleX 0.6s ease 0.4s forwards;
                }
        
                .about-content {
                  display: flex;
                  align-items: center;
                  gap: 60px;
                }
        
                .about-image {
                  flex: 1;
                  opacity: 0;
                  transform: translateX(-50px);
                  animation: slideInLeft 1s ease 0.6s forwards;
                }
        
                .about-image img {
                  width: 100%;
                  border-radius: 18px;
                  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                  display: block;
                  transition: all 0.4s ease;
                  transform: scale(1);
                }
        
                /* Image hover animations */
                .about-image img:hover {
                  transform: scale(1.05) translateY(-5px);
                  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                }
        
                /* Floating animation for the image */
                .about-image img {
                  animation: float 3s ease-in-out infinite;
                }
        
                .about-text {
                  flex: 1;
                  opacity: 0;
                  transform: translateX(50px);
                  animation: slideInRight 1s ease 0.8s forwards;
                }
        
                .about-text h3 {
                  color: #ff8c00;
                  margin-bottom: 15px;
                  font-size: 1.8rem;
                  opacity: 0;
                  transform: translateY(20px);
                  animation: fadeInUp 0.8s ease 1s forwards;
                }
        
                .about-text p {
                  margin-bottom: 15px;
                  color: #666;
                  line-height: 1.8;
                  opacity: 0;
                  transform: translateY(20px);
                }

                /* .about-text p {
                  animation: fadeInUp 0.8s ease 1.2s forwards;
                } */
        
                .about-text p:nth-of-type(1) {
                  animation: fadeInUp 0.8s ease 1.2s forwards;
                }
        
                .about-text p:nth-of-type(2) {
                  animation: fadeInUp 0.8s ease 1.4s forwards;
                }
        
                .about-text p:nth-of-type(3) {
                  animation: fadeInUp 0.8s ease 1.6s forwards;
                }

                .about-text p:nth-of-type(4) {
                  animation: fadeInUp 0.8s ease 1.8s forwards;
                }

                .about-text p:nth-of-type(5) {
  animation: fadeInUp 0.8s ease 2.0s forwards;
}

.about-text p:nth-of-type(6) {
  animation: fadeInUp 0.8s ease 2.2s forwards;
}

.about-text p:nth-of-type(7) {
  animation: fadeInUp 0.8s ease 2.4s forwards;
}

.about-text p:nth-of-type(8) {
  animation: fadeInUp 0.8s ease 2.6s forwards;
}

.about-text p:nth-of-type(9) {
  animation: fadeInUp 0.8s ease 2.8s forwards;
}
        
                .about-text .achiveul {
                  padding-left: 20px;
                }
        
                .about-text .achiveul .achiveli {
                  margin-bottom: 8px;
                }
        
                /* Keyframe animations */
                @keyframes fadeInUp {
                  to {
                    opacity: 1;
                    transform: translateY(0);
                  }
                }
        
                @keyframes slideInLeft {
                  to {
                    opacity: 1;
                    transform: translateX(0);
                  }
                }
        
                @keyframes slideInRight {
                  to {
                    opacity: 1;
                    transform: translateX(0);
                  }
                }
        
                @keyframes scaleX {
                  to {
                    transform: scaleX(1);
                  }
                }
        
                @keyframes float {
        
                  0%,
                  100% {
                    transform: scale(1) translateY(0px);
                  }
        
                  50% {
                    transform: scale(1) translateY(-10px);
                  }
                }
        
                /* Intersection Observer trigger class */
                .animate-on-scroll {
                  opacity: 0;
                  transform: translateY(30px);
                  transition: all 0.8s ease;
                }
        
                .animate-on-scroll.in-view {
                  opacity: 1;
                  transform: translateY(0);
                }
        
                /* Responsive design */
                @media (max-width: 768px) {
                  .about-content {
                    flex-direction: column;
                    gap: 30px;
                  }
        
                  .about-image img {
                    width: 90%;
                  }
        
                  .section-title h2 {
                    font-size: 2rem;
                  }
                }
        
                /* Additional subtle animations for enhanced effect */
                .about-image::before {
                  content: '';
                  position: absolute;
                  top: -10px;
                  left: -10px;
                  right: -10px;
                  bottom: -10px;
                  /* background: linear-gradient(45deg, #ff8c00, #ff6b35); */
                  border-radius: 20px;
                  opacity: 0;
                  z-index: -1;
                  transition: opacity 0.3s ease;
                }
        
                .about-image:hover::before {
                  opacity: 0.1;
                }

/* Values Section */
.values-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    color: #ff8c00;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
  padding: 60px 0;
  background: #fff;
}
 
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
 
.team-member {
  text-align: center;
}
 
.managing-director {
  grid-column: 1 / -1;
  max-width: 300px;
  margin: 0 auto 40px;
}
 
/* Photo wrapper — needed for popup positioning */
.team-photo-wrap {
  position: relative;
  width: 150px;
  /* height: 150px; */
  margin: 0 auto 15px;
  cursor: pointer;
}
 
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ddd;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
 
.team-photo-wrap:hover .team-photo {
  border-color: #ff8c00;
  transform: scale(1.04);
}
 
.team-photo img {
  width: 100%;
  height: 130%;
  object-fit: cover;
}
 
/* ── Hover popup ── */
.team-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1a1915;
  color: #f5f0e8;
  border: 1px solid rgba(200, 146, 42, 0.35);
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 200px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 50;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
 
.team-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #1a1915;
}
 
.team-popup-name {
  font-size: 14px;
  font-weight: 600;
  color: #e8b84b;
  margin-bottom: 4px;
}
 
.team-popup-role {
  font-size: 12px;
  color: #9a9078;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
 
.team-popup-cta {
  font-size: 12px;
  color: #ff8c00;
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.team-popup-cta svg {
  width: 12px;
  height: 12px;
}
 
.team-photo-wrap:hover .team-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
 
/* Click ripple */
.team-photo-wrap:active .team-photo {
  transform: scale(0.97);
}
 
/* Rest of existing styles */
.member-info h4 {
  margin: 0 0 8px;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
}
 
.member-role {
  color: #ff8c00;
  margin-bottom: 8px;
  font-weight: bold;
  text-transform: uppercase;
}
 
.member-zone {
  color: #ff8c00;
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
 
.inspiration-quote {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  font-style: italic;
  color: #666;
  border-left: 4px solid #ff8c00;
}
 
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-popup { display: none; } /* avoid popup issues on touch */
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/Business\ Loans.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background-color: #ff8c00;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e67e00;
}


/* Overall india  */
.overallindia {
  padding: 5rem 7%;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.overallindia-header {
  text-align: center;
  margin-bottom: 3rem;
}

.overallindia-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.overallindia-title:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: #ff8c00;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.overallindia-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 700px;
  margin: 1.5rem auto;
  line-height: 1.6;
}

.overallindia-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.overallindia-text {
  flex: 1;
  min-width: 300px;
  padding-right: 3rem;
}

.overallindia-text p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #4a5568;
}

.overallindia-map {
  flex: 1;
  min-width: 100px;
  background: #000000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.overallindia-map img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}

.overallindia-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 2rem;
}

.overallindia-stat {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.overallindia-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.overallindia-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #ff8c00;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.overallindia-icon {
  width: 70px;
  height: 70px;
  background: #fff7ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ff8c00;
}

.overallindia-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 0.5rem;
}

.overallindia-label {
  font-size: 1rem;
  color: #4a5568;
  font-weight: 500;
}

@media (max-width: 992px) {
  .overallindia-content {
      flex-direction: column;
  }
  
  .overallindia-text {
      padding-right: 0;
      margin-bottom: 2rem;
  }
  
  .overallindia-stats {
      justify-content: center;
  }
  
  .overallindia-stat {
      min-width: 45%;
  }
}

@media (max-width: 576px) {
  .overallindia {
      padding: 3rem 5%;
  }
  
  .overallindia-stat {
      min-width: 100%;
  }
}




/* =========================
   RESPONSIVE STYLES 
   ========================= */

/* Large devices (desktops, tablets) - 992px and below */
@media screen and (max-width: 992px) {
    /* Hero Section */
    .about-hero h1 {
        font-size: 42px;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    /* Values Section */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .team-photo {
        width: 180px;
        height: 180px;
    }
}

/* Medium devices (tablets, smaller desktops) - 768px and below */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .about-hero {
        padding: 70px 0;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Section Spacing */
    .about-section, .values-section, .team-section {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    /* Values Section */
    .values-grid {
        gap: 20px;
    }
    
    .value-card {
        padding: 25px;
    }
    
    /* Team Section */
    .team-grid {
        gap: 30px 15px;
    }
    
    .team-photo {
        width: 160px;
        height: 160px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
}

/* Small devices (mobile phones) - 576px and below */
@media screen and (max-width: 576px) {
    /* Hero Section */
    .about-hero {
        padding: 50px 0;
        min-height: 250px;
        display: flex;
        align-items: center;
    }
    
    .about-hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .about-hero p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Section Spacing */
    .section-title:after {
        width: 50px;
        height: 3px;
        margin: 10px auto;
    }
    
    /* Values Section */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
    }
    
    .team-member {
        margin-bottom: 15px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Fix container spacing */
    .container {
        padding: 0 20px;
    }
}
@media screen and (max-width: 576px) {
  
}

/* Mobile responsive rules header footer */
@media screen and (max-width: 1200px) {
    .header-container {
      flex-wrap: wrap;
      position: relative;
      padding: 15px 15px;
    }
    
    .contact-info {
      justify-content: center;
    }
    
    .menu-toggle {
      display: flex !important;
      order: 3;
    }
    
    nav {
      flex-basis: 100%;
      order: 4;
      display: none;
      width: 100%;
    }
    
    nav.open {
      display: block;
    }
    
    nav ul {
      flex-direction: column;
      width: 100%;
      padding: 0; 
      margin: 0; 
    }
    
    nav ul li {
      margin: 0;
      padding: 0px 0;
      border-top: 1px solid #eee;
      /* text-align: center; */
      width: 100%; 
    }
    
    nav ul li a {
      /* display: block;  */
      padding: 1px 0; 
    }
    
    nav ul li a.active {
      border-bottom: none;
      color: #e67e22;
    }
    
    .social-icons {
      display: none;
    }
  }
  
  /* Menu toggle animation */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
