/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0b2e65;
  --secondary-color: #041d88;
  --dark-color: #212121;
  --light-color: #f9f8f5;
  --text-color: #333;
  --text-light: #ffffff;
  --accent-color: #f8edd6;
  --section-padding: 5rem;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== 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 {
  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;
}

.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;
}

.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);
}

.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: var(--transition);
  white-space: nowrap;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.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: var(--transition);
  border-radius: 2px;
}

.page-title {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: zoomIn 0.8s ease-out forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ========== SERVICES INTRODUCTION SECTION ========== */
.services-intro {
  padding: 60px 72px 100px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-intro h2 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  max-width: 526px;
  flex: 1;
  margin: 0;
  opacity: 0;
  animation: slideInFromLeft 0.8s ease-out 0.3s forwards;
}

.services-intro p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  max-width: 664px;
  flex: 1;
  margin: 0;
  align-self: flex-start;
  opacity: 0;
  animation: slideInFromRight 0.8s ease-out 0.3s forwards;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== SERVICES SLIDER SECTION ========== */
.services-slider {
  padding: 60px 72px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 15px;
  box-sizing: border-box;
}

.service-details {
  background-color: var(--text-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(11, 46, 101, 0.1);
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-content h4 {
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin: 30px 0 15px 0;
}

.service-features {
  margin-bottom: 30px;
  padding-left: 20px;
}

.service-features li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  list-style-type: disc;
}

/* USP Section Styles */
.usp-row {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.usp-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 25px 15px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-5px);
}

.usp-image-container {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.usp-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-color);
  line-height: 1.4;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(11, 46, 101, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(11, 46, 101, 0.3);
}

.dot:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
              url('../assets/images/faq-bg.jpg') center/cover no-repeat;
  padding: 120px 72px;
  color: var(--text-light);
}

.faq-container {
  max-width: 1076px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 24px 0;
}

.faq-question h3 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  text-align: left;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  box-sizing: content-box;
}

.faq-item.active .faq-answer {
  max-height: 100vh;
  opacity: 1;
  padding: 0 20px 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 40px;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 10px -20px;
  padding: 0 20px;
}

/* ================= 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: 20px;
    margin-bottom: 30px;
  }

  /* Mobile Logo + Text (row) */
  .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;
    line-height: 1.2;
  }

  .mobile-company-name-sub {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
  }

  /* 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: 8px;
    color: var(--text-light);
  }

  .mobile-contact-detail {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .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: 2px solid rgba(255, 255, 255, 0.5);
    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) {
  .header-content {
    padding: 20px 40px;
  }
  
  .services-intro,
  .services-slider,
  .faq-section {
    padding: 80px 40px;
  }
}

@media (max-width: 992px) {
  .services-slider {
    padding: 60px 40px;
  }
  
  .service-details {
    min-height: 550px;
    padding: 35px;
  }
  
  .usp-row {
    gap: 15px;
  }
  
  .usp-card {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 150px;
  }
  
  .usp-image-container {
    width: 65px;
    height: 65px;
  }
  
  .usp-text {
    font-size: 13px;
  }
  
  .faq-section {
    padding: 80px 40px;
  }
  
  .faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }
  
  .faq-question h3 {
    font-size: 22px;
  }
  
  .faq-answer {
    font-size: 17px;
  }
  
  .usp-row {
    flex-wrap: wrap;
  }
  
  .usp-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
  }

  .usp-image-container {
    width: 70px;
    height: 70px;
  }
  
  .usp-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .services-slider {
    padding: 40px 20px;
    display: block !important;
    opacity: 1 !important;
    overflow: hidden;
  }
  
  .slider-slide {
    padding: 0 10px;
    width: 100%;
  }

  .slider-container {
    overflow: hidden;
  }
  
  .service-details {
    padding: 25px 20px;
    min-height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(11, 46, 101, 0.1);
  }
  
  .service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .service-content p {
    font-size: 15px;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .service-content h4 {
    font-size: 18px;
    margin: 25px 0 12px 0;
    text-align: left;
  }
  
  .service-features {
    margin-bottom: 25px;
    padding-left: 18px;
  }
  
  .service-features li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  /* Mobile USP Cards */
  .usp-row {
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
  }
  
  .usp-card {
    flex: none;
    width: 100%;
    flex-direction: row;
    text-align: left;
    padding: 20px;
    align-items: center;
    justify-content: flex-start;
  }
  
  .usp-image-container {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .usp-text {
    font-size: 14px;
    margin: 0;
    flex: 1;
  }
  
  /* Mobile slider controls */
  .slider-controls {
    margin-top: 25px;
    display: none;
  }
  
  .slider-dots {
    gap: 10px;
    display: none;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  /* Add swipe indicators */
  .services-slider::before {
    content: "← Swipe to explore services →";
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(11, 46, 101, 0.6);
    margin-bottom: 20px;
    font-style: italic;
  }
  
  /* Header adjustments for mobile */
  .header {
    min-height: 350px;
  }
  
  .header-content {
    padding: 15px 20px;
  }
  
  .logo-nav-container {
    margin-bottom: 40px;
  }
  
  .page-title {
    font-size: 2.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
  }
  
  .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: flex-start;
    align-items: center;
    padding-top: 100px;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav.active {
    display: flex;
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 25px;
    width: 100%;
    text-align: center;
  }
  
  .main-nav li {
    width: 100%;
  }
  
  .main-nav a {
    padding: 15px 0;
    font-size: 20px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .main-nav a.active {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
  }
  
  /* Hide contact button on mobile */
  .header .cta-button {
    display: none;
  }
  
  /* Services intro mobile adjustments */
  .services-intro {
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
  }
  
  .services-intro h2 {
    font-size: 32px;
  }
  
  /* FAQ mobile adjustments */
  .faq-section {
    padding: 60px 20px;
  }
  
  .faq-question h3 {
    font-size: 20px;
  }
  
  .faq-answer {
    font-size: 16px;
  }
  
  .faq-item.active {
    margin: 10px -10px;
    padding: 0 10px 15px;
  }
  
  /* Footer mobile adjustments */
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-find-us, 
  .footer-contact, 
  .footer-quick-links {
    max-width: 100%;
    flex: 1 1 200px;
  }
  
  .contact-item {
    margin-bottom: 16px;
  }
  
  .slider-dots {
    gap: 8px;
  }
  
  .usp-card {
    flex: 1 1 100%;
  }
  
  .usp-image-container {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .usp-text {
    font-size: 14px;
  }
  
  /* Mobile menu toggle 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);
  }
  
  /* Header overlay for mobile menu */
  .header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
  }
  
  .header-overlay.active {
    display: block;
  }
  
  /* Prevent body scroll when menu is open */
  body.no-scroll {
    overflow: hidden;
  }
  
  /* Ensure header stays on top of menu */
  .header-content {
    position: relative;
    z-index: 1001;
  }
  
  /* Mobile footer quick links horizontal */
  .footer-quick-links ul {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 15px 30px;
    justify-content: flex-start;
  }
  
  .footer-quick-links li {
    list-style-type: none;
    margin-right: 20px;
    position: relative;
  }
  
  /* Optional: Add separators between links */
  .footer-quick-links li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -18px;
    top: 0;
    color: rgba(255, 255, 255, 0.3);
  }
  
  /* Reduce gap between quick links and copyright on mobile */
  .footer-content {
    margin-bottom: 30px;
  }
  
  .footer-copyright {
    margin-top: 20px;
    padding-top: 15px;
    font-size: 14px;
  }
  
  /* Show mobile-only elements on mobile */
  .mobile-only {
    display: block;
  }
}

@media (max-width: 576px) {
  .services-slider {
    padding: 30px 15px;
  }
  
  .slider-slide {
    padding: 0 5px;
    width: 100%;
  }
  
  .service-details {
    padding: 20px 15px;
    border-radius: 10px;
  }
  
  .service-content h3 {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .service-content p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .service-content h4 {
    font-size: 16px;
    margin: 20px 0 10px 0;
  }
  
  .service-features li {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .usp-card {
    padding: 15px;
    border-radius: 8px;
  }
  
  .usp-image-container {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
  
  .usp-text {
    font-size: 13px;
  }
  
  .slider-dots {
    gap: 8px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  /* Smaller swipe indicator text */
  .services-slider::before {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  /* Header adjustments */
  .header {
    min-height: 300px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .services-intro,
  .services-slider {
    padding: 60px 15px;
  }
  
  .services-intro h2 {
    font-size: 28px;
  }
  
  .faq-question h3 {
    font-size: 18px;
  }
  
  .faq-answer {
    font-size: 16px;
  }
  
  .footer {
    padding: 40px 15px 20px;
  }
  
  .contact-item {
    margin-bottom: 12px;
  }
  
  .logo {
    width: 80px;
    height: 43px;
  }
  
  .company-name-main {
    font-size: 16px;
  }
  
  .company-name-sub {
    font-size: 14px;
  }
  
  .slider-dots {
    gap: 6px;
  }
  
  .footer-quick-links ul {
    gap: 15px 20px;
  }
  
  .footer-quick-links li {
    margin-right: 15px;
  }
  
  .footer-quick-links li:not(:last-child)::after {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .services-slider {
    padding: 25px 10px;
  }
  
  .service-details {
    padding: 18px 12px;
  }
  
  .service-content h3 {
    font-size: 20px;
  }
  
  .service-content p {
    font-size: 13px;
  }
  
  .service-features li {
    font-size: 12px;
  }
  
  .usp-card {
    padding: 12px;
  }
  
  .usp-image-container {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .usp-text {
    font-size: 12px;
  }
  
  .footer-quick-links ul {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 12px 15px;
  }
  
  .footer-quick-links li {
    margin-right: 10px;
    font-size: 14px;
  }
  
  .footer-quick-links li:not(:last-child)::after {
    right: -12px;
  }
  
  .footer-copyright {
    margin-top: 15px;
    padding-top: 12px;
    font-size: 12px;
  }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  .dot {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dot::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(11, 46, 101, 0.3);
  }
  
  .dot.active::before {
    background-color: var(--primary-color);
    transform: scale(1.3);
  }
}

/* Smooth scrolling for touch devices */
.slider-track {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider-slide {
  scroll-snap-align: start;
}

/* Loading state */
.services-slider.loading .service-details {
  opacity: 0.7;
  pointer-events: none;
}

/* Accessibility improvements */
.dot:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .slider-track {
    transition: none;
  }
  
  .dot {
    transition: none;
  }
  
  .usp-card {
    transition: none;
  }
}

/* Hide mobile-only elements on desktop */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .slider-dots {
    gap: 8px;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .dot.active {
    transform: scale(1.2);
  }
}

@media (max-width: 576px) {
  .slider-dots {
    gap: 6px;
  }
  
  .dot {
    width: 4px;
    height: 4px;
  }
  
  .dot.active {
    transform: scale(1.2);
  }
}

@media (max-width: 480px) {
  .slider-dots {
    gap: 5px;
  }
  
  .dot {
    width: 2px;
    height: 2px;
  }
  
  .dot.active {
    transform: scale(1.2);
  }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  .dot {
    min-width: 30px;
    min-height: 30px;
  }
  
  .dot::before {
    width: 8px;
    height: 8px;
  }
  
  .dot.active::before {
    transform: scale(1.2);
  }
}

/* ========== MOBILE MENU STYLES ========== */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
  }
  
  .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;
  }
  
  .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);
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #0b2e65, #0a265a, #08308a);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex !important;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 25px;
    width: 100%;
    text-align: center;
  }
  
  .main-nav li {
    width: 100%;
  }
  
  .main-nav a {
    padding: 15px 0;
    font-size: 20px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .main-nav a.active {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
  }
  
  .header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
  }
  
  .header-overlay.active {
    display: block;
  }
  
  body.no-scroll {
    overflow: hidden;
  }
  
  /* Hide desktop contact button on mobile */
  .cta-button {
    display: none;
  }
  
  /* Show mobile-only elements */
  .mobile-only {
    display: block !important;
  }
}

/* ========== SLIDER NAVIGATION BUTTONS (DESKTOP ONLY) ========== */
@media (min-width: 769px) {
  .slider-controls {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
  }
  
  .slider-nav-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .slider-nav-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  }
  
  .slider-nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .slider-nav-btn i {
    font-size: 20px;
  }
  
  .slider-nav-btn.prev-btn {
    order: 1;
  }
  
  .slider-dots {
    order: 2;
  }
  
  .slider-nav-btn.next-btn {
    order: 3;
  }
  
  /* Disabled state for buttons */
  .slider-nav-btn:disabled {
    background-color: rgba(11, 46, 101, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  .slider-nav-btn:disabled:hover {
    background-color: rgba(11, 46, 101, 0.3);
    transform: none;
    box-shadow: none;
  }
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
  .slider-nav-btn {
    display: none !important;
  }
}

/* ========== MOBILE SWIPE INDICATORS ========== */
@media (max-width: 768px) {
  .swipe-indicator {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(11, 46, 101, 0.6);
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  /* Hide desktop navigation buttons on mobile */
  .slider-nav-btn {
    display: none !important;
  }
  
  /* Make slider track swipeable */
  .slider-track {
    cursor: grab;
  }
  
  .slider-track:active {
    cursor: grabbing;
  }
}

/* ========== MOBILE SWIPE FUNCTIONALITY ========== */
@media (max-width: 768px) {
  .services-slider {
    overflow: hidden;
    position: relative;
  }
  
  .slider-container {
    overflow: visible;
  }
  
  .slider-track {
    display: flex;
    transition: transform 0.3s ease-out;
    will-change: transform;
  }
  
  .slider-slide {
    min-width: 85%;
    flex-shrink: 0;
    padding: 0 10px;
    scroll-snap-align: start;
  }
  
  /* Swipe indicators */
  .swipe-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
  }
  
  .swipe-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(11, 46, 101, 0.3);
    transition: all 0.3s ease;
  }
  
  .swipe-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
  }
  
  /* Hide desktop dots on mobile */
  .slider-dots {
    display: none;
  }
  
  /* Touch-friendly styles */
  .slider-track {
    cursor: grab;
  }
  
  .slider-track:active {
    cursor: grabbing;
  }
}

/* Prevent text selection during swipe */
.slider-track {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Add this media query to hide auto-slide indicators on mobile */
@media (max-width: 768px) {
  .services-slider::before {
    content: "← Swipe to explore services →";
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(11, 46, 101, 0.6);
    margin-bottom: 20px;
    font-style: italic;
  }
  
  /* Hide auto-slide indicators */
  .slider-controls {
    display: none !important;
  }
}

/* ===== 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;
  }
}

/* === Services Slider Swiper Styles === */
.services-swiper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 50px;
}

.services-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-swiper .service-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
}

.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
  color: #0b2e65;
}

.services-swiper .swiper-pagination-bullet {
  background: #0b2e65;
}
