/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-color: #0b2e65;
  --secondary-color: #041d88;
  --dark-color: #212121;
  --light-color: #faf9f4;
  --text-color: #333;
  --text-light: #ffffff;
  --accent-color: #604b33;
  
  /* Spacing */
  --section-padding: 80px;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== UTILITY CLASSES ========== */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--border-radius);
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Desktop-only utility class */
.desktop-only {
  display: inline-block;
}

/* ========== HEADER SECTION ========== */
.header {
  position: relative;
  min-height: 400px;
  background: 
    linear-gradient(180deg, rgba(135, 134, 134, 0.5) 53.37%, rgba(33, 33, 33, 0.7) 100%),
    url('../assets/images/services-hero-bg.jpg') center/cover no-repeat;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

.header-content {
  position: relative;
  z-index: 2;
  padding: 20px 72px;
  box-sizing: border-box;
  flex-direction: column;
  flex-grow: 1;
}

.logo-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo Brand Styles */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.logo {
  width: 102.5px;
  height: 55px;
  object-fit: contain;
}

.company-name {
  color: var(--text-light);
  text-align: left;
  white-space: nowrap;
  margin-left: -8px;
}

.company-name-main {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: block;
  line-height: 1.2;
}

.company-name-sub {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: block;
  line-height: 1.2;
}

/* Navigation and Button Container */
.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-grow: 1;
}

.main-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  flex-shrink: 0;
}

.main-nav a {
  color: var(--text-light);
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  padding: 8px 0;
}

.main-nav a.active {
  color: var(--secondary-color);
  font-weight: 900;
}

.main-nav a:hover {
  color: var(--secondary-color);
}

/* Dropdown Menu */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li {
  padding: 8px 20px;
}

.main-nav .dropdown-menu li a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.main-nav .dropdown-menu li a:hover {
  background-color: #f2f2f2;
  color: var(--primary-color);
}

/* Page Title */
.page-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  margin: 100px auto 0;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  opacity: 1;
  transform: none;
  transition: all 0.8s ease-out;
}

.page-title.animate {
  transform: scale(1.1);
  transition: transform 0.8s ease-out;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 2px 0;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
  background-color: var(--text-light);
  padding: var(--section-padding) 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.founder-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.founder-content {
  max-width: 597px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.founder-section.animate .founder-content {
  opacity: 1;
  transform: translateX(0);
}

.founder-content h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 20px;
  margin-left: 100px;
}

.founder-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  margin-left: 100px;
}

.founder-image {
  border-radius: 50%;
  width: 380px;
  height: 380px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
  margin-right:150px;
}

.founder-section.animate .founder-image {
  opacity: 1;
  transform: translateX(0);
}

/* ========== TEAM SLIDER SECTION ========== */
.team-section {
  padding: var(--section-padding) 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 40px;
}

/* Desktop slider view */
.team-slider-container.desktop-view {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: block;
}

.team-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.team-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

.team-photo {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.team-info h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 5px;
  color: white;
}

.team-info p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #f0f0f0;
}

/* Dot indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Mobile grid view */
.team-grid-container.mobile-view {
  display: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 600px;
}

.team-grid-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.team-grid-item:hover {
  transform: translateY(-5px);
}

.team-grid-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.team-grid-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 46, 101, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
}

.team-grid-info h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: white;
}

.team-grid-info p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #f0f0f0;
}

/* ========== MISSION SECTION ========== */
.mission-section {
  padding: var(--section-padding) 0;
  opacity: 1; /* Remove initial opacity 0 */
}

.mission-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.mission-image {
  width: 50%;
  max-width: 636px;
  height: auto;
  aspect-ratio: 1/0.9;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.mission-content {
  flex: 1;
  max-width: 571px;
}

.mission-content h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 30px;
}

.mission-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ================= FOOTER STYLES ================= */
.footer {
  background-color: dimgray;
  color: var(--text-light);
  padding: 60px 72px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer.animate {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

/* ===== Left Side (Logo, Description, Social, Quick Links) ===== */
.footer-main {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
}

.footer-main img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.footer-main p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-light);
}

/* Added Follow Us heading */
.follow-us-heading {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  color: var(--text-light);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* ===== Quick Links ===== */
.footer-quick-links {
  margin-top: 10px;
}

.footer-quick-links h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.footer-quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap !important; /* Changed from nowrap to wrap */
  /* Removed overflow-x: auto to eliminate scrollbar */
}

.footer-quick-links li {
  display: inline-block;
}

.footer-quick-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.footer-quick-links li a:hover {
  color: var(--accent-color);
}

/* ===== Right Side (Find Us & Contact) ===== */
.footer-right-section {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-find-us {
  flex: 2;
  min-width: 320px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-contact {
  flex: 1;
  min-width: 220px;
  padding: 15px 0;
  margin: 20px 0;
}

.footer-find-us h3,
.footer-contact h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--text-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

.contact-item i {
  color: var(--text-light);
  font-size: 16px;
  margin-top: 3px;
  min-width: 16px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}

/* ===== Bottom Copyright ===== */
.footer-copyright {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  /* Hide desktop elements on mobile */
  .desktop-logo,
  .desktop-description,
  .desktop-follow-us,
  .desktop-social,
  .desktop-quick-links,
  .footer-main,
  .footer-right-section {
    display: none !important;
  }

  /* Show mobile layout */
  .mobile-footer-layout {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Mobile Footer Top Section */
  .mobile-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }

  /* Mobile Logo Brand - Logo with text below */
  .mobile-logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .mobile-logo {
    width: 80px;
    height: auto;
    display: block;
  }

  .mobile-company-name {
    display: flex;
    flex-direction: column;
    color: var(--text-light);
  }

  .mobile-company-name-main {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: block;
    line-height: 1.2;
    color: var(--text-light);
  }

  .mobile-company-name-sub {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: block;
    line-height: 1.2;
    color: var(--text-light);
  }


  /* Mobile Quick Links */
  .mobile-quick-links {
    flex: 1;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5); /* Bold vertical separator */
  }

  .mobile-quick-links h3 {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
  }

  .mobile-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-quick-links li {
    margin-bottom: 8px;
  }

  .mobile-quick-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .mobile-quick-links li a:hover {
    color: var(--accent-color);
  }

  /* Mobile Right Section */
  .mobile-right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }


  /* Mobile Follow Us */
  .mobile-follow-us h3 {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-light);
  }

  .mobile-social-icons {
    display: flex;
    gap: 15px;
  }

  .mobile-social-icons a {
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .mobile-social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
  }

  /* Mobile Contact */
  .mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-contact-item h3 {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-light);
  }

  .mobile-contact-detail {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mobile-contact-detail i {
    color: var(--text-light);
    font-size: 14px;
  }

  .mobile-contact-detail span {
    color: var(--text-light);
    font-size: 14px;
    text-decoration: underline;
  }

  /* Mobile Addresses */
  .mobile-addresses {
    margin-top: 20px;
  }

  .mobile-addresses .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
  }

  .mobile-addresses .contact-item i {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 2px;
    min-width: 14px;
  }

  .mobile-addresses .contact-item span {
    color: var(--text-light);
  }
}

/* Hide mobile layout on desktop */
@media (min-width: 769px) {
  .mobile-footer-layout {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .footer-quick-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copyright {
    font-size: 13px;
    margin-top: 10px;
    padding-top: 12px;
  }

  .contact-label {
    font-size: 13px;
  }
  
  .contact-value {
    font-size: 14px;
  }

  /* Mobile footer adjustments for very small screens */
  .mobile-footer-top {
    flex-direction: column;
    gap: 25px;
  }

  .mobile-quick-links,
  .mobile-right-section {
    width: 100%;
  }

  .mobile-quick-links {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 0;
    padding-bottom: 20px;
  }

  .mobile-quick-links h3,
  .mobile-follow-us h3 {
    font-size: 16px;
  }

  .mobile-quick-links li a {
    font-size: 13px;
  }

  .mobile-contact-item h3 {
    font-size: 14px;
  }

  .mobile-contact-detail span {
    font-size: 13px;
  }

  .mobile-addresses .contact-item {
    font-size: 12px;
  }

  .mobile-addresses .contact-item i {
    font-size: 12px;
  }
}
/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
  
  .header-content {
    padding: 20px 40px;
  }
  
  .founder-content h2,
  .founder-content p {
    margin-left: 0;
  }
  
  .founder-image {
    margin-right: 0;
    width: 320px;
    height: 320px;
  }
  
  .mission-content-wrapper {
    flex-direction: column;
  }
  
  .mission-image {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 992px) {
  .header {
    min-height: 400px;
  }
  
  .logo-nav-container {
    margin-bottom: 30px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .founder-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .founder-image {
    order: -1;
    width: 280px;
    height: 280px;
  }
  
  .team-photo {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .logo-brand {
    gap: 10px;
  }
  
  .header-content {
    padding: 15px 20px;
  }
  
  /* .logo-nav-container {
    margin-bottom: 20px;
  }
  
  .nav-container {
    justify-content: space-between;
    width: 100%;
    order: 1;
  } */

  .logo-nav-container {
    justify-content: space-between;
    width: 100%;
  }
  
  .nav-container {
    order: 0; /* Reset the order */
    justify-content: flex-end; /* Align items to the right */
    width: auto; /* Remove full width */
  }
  
  .mobile-menu-toggle {
    order: 1; /* Ensure it's placed at the end */
    margin-left: auto; /* Push to the right */
  }
  
  /* Hide contact button on mobile */
  .desktop-only {
    display: none;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #0b2e65, #0a265a, #08308a);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 80px 20px 40px;
  }
  
  .main-nav.active {
    display: flex;
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 25px;
    width: 100%;
    text-align: center;
  }
  
  .main-nav a {
    font-size: 20px;
    padding: 15px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .main-nav a.active {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .page-title {
    font-size: 2 rem;
    margin-top: 50px;
  }
  
  .cta-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .founder-section, .mission-section {
    padding: 60px 20px;
    gap: 20px;
  }
  
  .founder-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .founder-content p {
    font-size: 18px;
  }
  
  .founder-image {
    width: 220px;
    height: 220px;
  }
  
  /* Team section mobile styles */
  .team-slider-container.desktop-view {
    display: none;
  }
  
  .team-grid-container.mobile-view {
    display: block;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .team-grid-photo {
    height: 180px;
  }
  
  .team-grid-info {
    padding: 10px;
  }
  
  .team-grid-info h3 {
    font-size: 1rem;
  }
  
  .team-grid-info p {
    font-size: 0.8rem;
  }
  
  .mission-content h2 {
    font-size: 32px;
  }
  
  .mission-content p {
    font-size: 16px;
  }
  
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-find-us,
  .footer-contact,
  .footer-quick-links {
    min-width: calc(50% - 20px);
  }
  
  /* Show mobile-only elements on mobile */
  .mobile-only {
    display: block;
  }
  
  /* Mobile menu animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Dropdown menu for mobile */
  .main-nav .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    display: none;
    padding: 10px 0;
    margin-top: 10px;
  }
  
  .main-nav .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .main-nav .dropdown-menu li {
    padding: 8px 0;
  }
  
  .main-nav .dropdown-menu li a {
    color: var(--text-light);
    font-size: 16px;
    padding: 10px 0;
  }
  
  /* Mobile Footer Quick Links Horizontal */
  .footer-quick-links ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }
  
  .footer-quick-links li {
    flex: 0 0 calc(50% - 15px);
    text-align: left;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.8 rem;
  }
  
  .founder-content h2 {
    font-size: 28px;
  }
  
  .founder-content p {
    font-size: 16px;
  }
  
  .founder-image {
    width: 180px;
    height: 180px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .team-grid-photo {
    height: 220px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .mission-content h2 {
    font-size: 28px;
  }
  
  .footer-right-section {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-find-us,
  .footer-contact {
    min-width: 100%;
  }
  
  .footer-quick-links ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-quick-links li {
    flex: 1;
    width: 100%;
    text-align: left;
  }
}

.mobile-only {
  display: none;
}

/* ========== TEAM SLIDER SECTION ========== */
.team-section {
  padding: var(--section-padding) 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 40px;
}

/* Desktop slider view */
.team-slider-container.desktop-view {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: block;
}

.team-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.team-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

.team-photo {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.team-info h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 5px;
  color: white;
}

.team-info p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #f0f0f0;
}

/* Dot indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Mobile slider view */
.team-slider-container.mobile-view {
  display: none;
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* Mobile grid view */
.team-grid-container.mobile-view {
  display: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 600px;
}

.team-grid-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.team-grid-item:hover {
  transform: translateY(-5px);
}

.team-grid-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.team-grid-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 46, 101, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
}

.team-grid-info h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: white;
}

.team-grid-info p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #f0f0f0;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
  .team-photo {
    height: 60vh;
  }
}

@media (max-width: 992px) {
  .team-photo {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .team-slider-container.desktop-view {
    display: none;
  }
  
  .team-slider-container.mobile-view {
    display: block;
  }
  
  .team-grid-container.mobile-view {
    display: none;
  }
  
  .team-photo {
    height: 45vh;
    min-height: 300px;
  }
  
  .team-info {
    padding: 15px;
  }
  
  .team-info h3 {
    font-size: 1.5rem;
  }
  
  .team-info p {
    font-size: 1rem;
  }
  
  .slider-dots {
    margin-top: 20px;
  }
}

/* Specific responsive adjustments for smaller screens */
@media (max-width: 650px) {
  .team-photo {
    height: 40vh;
    min-height: 250px;
  }
}

@media (max-width: 507px) {
  .team-photo {
    height: 35vh;
    min-height: 220px;
  }
  
  .team-info {
    padding: 12px;
    left: 10px;
    right: 10px;
  }
  
  .team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
  
  .team-info p {
    font-size: 0.9rem;
  }
  
  .slider-dots {
    margin-top: 15px;
    gap: 12px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 420px) {
  .team-photo {
    height: 30vh;
    min-height: 180px;
  }
  
  .team-info {
    padding: 10px;
  }
  
  .team-info h3 {
    font-size: 1.1rem;
  }
  
  .team-info p {
    font-size: 0.8rem;
  }
  
  .slider-dots {
    gap: 10px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 360px) {
  .team-photo {
    height: 28vh;
    min-height: 160px;
  }
  
  .team-info h3 {
    font-size: 1rem;
  }
  
  .team-info p {
    font-size: 0.75rem;
  }
  
  .slider-dots {
    margin-top: 12px;
    gap: 8px;
  }
  
  .dot {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 320px) {
  .team-photo {
    height: 25vh;
    min-height: 140px;
  }
  
  .team-info {
    padding: 8px;
    left: 5px;
    right: 5px;
  }
  
  .team-info h3 {
    font-size: 0.9rem;
  }
  
  .team-info p {
    font-size: 0.7rem;
  }
  
  .slider-dots {
    margin-top: 10px;
  }
}

/* Fallback grid view for very small screens if needed */
@media (max-width: 280px) {
  .team-slider-container.mobile-view {
    display: none;
  }
  
  .team-grid-container.mobile-view {
    display: block;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .team-grid-photo {
    height: 150px;
  }
  
  .team-grid-info {
    padding: 10px;
  }
  
  .team-grid-info h3 {
    font-size: 1rem;
  }
  
  .team-grid-info p {
    font-size: 0.8rem;
  }
}

/* ===== EXTRA SMALL DEVICES (≤360px) ===== */
@media (max-width: 360px) {
  .footer {
    padding: 25px 12px 15px;
  }
  
  /* Tighten footer spacing and prevent overflow */
  .footer-content {
    padding: 0 8px;
    gap: 20px;
  }
  
  /* Mobile footer layout adjustments */
  .mobile-footer-layout {
    padding: 0 8px;
  }
  
  .mobile-footer-top {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
  }
  
  .mobile-quick-links,
  .mobile-right-section {
    width: 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .mobile-quick-links {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    padding-right: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .mobile-right-section {
    padding-left: 10px;
    gap: 10px;
  }
  
  /* Quick links styling */
  .mobile-quick-links h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .mobile-quick-links ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .mobile-quick-links li {
    margin-right: 0;
  }
  
  .mobile-quick-links li a {
    font-size: 13px;
    padding: 4px 0;
  }
  
  /* Right section adjustments */
  .mobile-right-section {
    width: 100%;
    gap: 15px;
  }
  
  .mobile-follow-us h3,
  .mobile-contact-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .mobile-social-icons {
    gap: 12px;
    margin-bottom: 5px;
  }
  
  .mobile-social-icons a {
    font-size: 16px;
  }
  
  .mobile-contact-detail {
    font-size: 13px;
  }
  
  .mobile-contact-detail i {
    font-size: 13px;
  }
  
  /* Address section */
  .mobile-addresses {
    margin-top: 15px;
  }
  
  .mobile-addresses .contact-item {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
    align-items: flex-start;
  }
  
  .mobile-addresses .contact-item i {
    font-size: 12px;
    margin-top: 3px;
    min-width: 12px;
  }
  
  /* Ensure long address lines wrap cleanly */
  .mobile-addresses .contact-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  
  /* Copyright section */
  .footer-copyright {
    margin-top: 15px;
    padding-top: 12px;
    font-size: 11px;
    line-height: 1.4;
  }
  
  .footer-copyright a {
    font-size: 11px;
    margin: 0 3px;
  }
  
  /* Logo and company name adjustments */
  .mobile-logo-brand {
    margin-bottom: 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .mobile-logo {
    width: 65px;
    margin: 0 auto;
  }
  
  .mobile-company-name-main {
    font-size: 14px;
  }
  
  .mobile-company-name-sub {
    font-size: 12px;
  }
}

/* Additional adjustments for very small heights */
@media (max-width: 360px) and (max-height: 640px) {
  .footer {
    padding: 20px 12px 12px;
  }
  
  .mobile-addresses .contact-item {
    margin-bottom: 8px;
    font-size: 11px;
  }
}

/* === Team Slider Swiper Styles === */
.team-swiper {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding-bottom: 40px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-photo {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-radius: 8px;
}

/* Navigation & Dots */
.swiper-button-prev,
.swiper-button-next {
  color: #0b2e65;
}

.swiper-pagination-bullet {
  background: #0b2e65;
}