/* Global Styles */
:root {
  --dark-bg: #060b0f;
  --heading-color: #11202d;
  --primary-color: #274b6b;
  --light-bg: #b4cee4;
  --subtle-bg: #e1ebf4;
  --transition-speed: 0.3s;
  --container-padding: clamp(20px, 5vw, 40px);
  --section-spacing: clamp(60px, 8vw, 100px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Luna Sans", sans-serif;
  transition: background-color 0.3s ease,
              border-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Add smooth scrolling to the whole page */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.menu-open {
  background: rgba(6, 11, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(6, 11, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px var(--container-padding);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #e1ebf4;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(225, 235, 244, 0.1);
  transform: translateY(-2px);
}

.contact-btn {
  background: var(--primary-color);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(39, 75, 107, 0.2);
}

.contact-btn:hover {
  background: #274b6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39, 75, 107, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #e1ebf4;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.hamburger.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(6, 11, 15, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 100px var(--container-padding) 40px;
  text-align: right;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity, visibility;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  color: #e1ebf4;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  width: 100%;
  text-align: right;
  position: relative;
  border-bottom: 1px solid rgba(225, 235, 244, 0.1);
}

.mobile-menu a:hover {
  color: #b4cee4;
  padding-right: 40px;
}

.mobile-menu .contact-btn {
  margin: 25px 30px;
  padding: 15px 40px;
  font-size: 1.3rem;
  width: auto;
  background: rgba(39, 75, 107, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu .contact-btn:hover {
  color: #b4cee4;
  padding-right: 50px;
}

/* Hero Section */
/* .hero {
  min-height: 70vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--container-padding) 60px;
  position: relative;
  overflow: hidden;
  background: url('imagesforzillius/Hero-Banner.webp') no-repeat center center; 
  /* background-size: cover; 
  background-size: 100% 100%;
  animation: heroFadeIn 1.5s ease-out;
} */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
   padding: 120px var(--container-padding) 60px; 
  position: relative;
  overflow: hidden;
  background: url('imagesforzillius/Hero-Banner.WEBP') no-repeat center center;
   background-size: 100% 120%; 
  animation: heroFadeIn 1.5s ease-out;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(6, 11, 15, 0.85),
    rgba(17, 32, 45, 0.65)
  );
  animation: gradientFadeIn 1.5s ease-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: contentSlideUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

.hero .tagline {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1s;
}

.cta-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(39, 75, 107, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.2s;
}

.cta-button:hover {
  background: #274b6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39, 75, 107, 0.3);
}

/* Hero Animations */
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gradientFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes contentSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
  .hero {
    padding: 100px var(--container-padding) 40px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  .hero .tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px var(--container-padding) 30px;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .hero .tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}

/* About Section Styles */
.about-section {
  padding: var(--section-spacing) 0;
  background: linear-gradient(135deg, #e1ebf4 0%, #b4cee4 100%);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-text {
  text-align: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #11202d;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #11202d;
}

.about-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: #274b6b;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-text {
  font-size: 1.1rem;
  color: var(--heading-color);
  font-weight: 500;
}

/* Services Section */
.services-section {
  background: var(--subtle-bg);
  padding: 100px 0;
  animation: fadeIn 0.8s ease-out;
}

.services-section h2 {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
  transition: all var(--transition-speed) ease;
}

.services-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b4cee4;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.service-card {
  background: #e1ebf4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  text-decoration: none;
  display: block;
  cursor: pointer;
  will-change: transform, box-shadow;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #e1ebf4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.4rem;
  margin: 20px 24px;
  color: var(--dark-bg);
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card p {
  font-size: 1rem;
  color: #11202d;
  margin: 0 24px 20px;
  line-height: 1.6;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card:hover p {
  color: var(--heading-color);
}

.service-hover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(135deg, #274b6b, #11202d);
  color: white;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -4px 12px rgba(39, 75, 107, 0.2);
  opacity: 0;
}

.service-card:hover .service-hover {
  opacity: 1;
}

.service-hover .learn-more {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-right: 25px;
}

.service-hover .learn-more::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.service-card:hover .service-hover .learn-more::after {
  width: 20px;
}

.service-hover .arrow {
  font-size: 1.4rem;
  transition: transform 0.4s ease-in-out;
  display: inline-block;
  opacity: 0.8;
}

.service-card:hover .service-hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

.read-more {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.read-more:hover {
  background: #274b6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.read-more:active {
  transform: translateY(0);
}

/* Detailed Services */
.detailed-services {
  background: var(--subtle-bg);
  padding: 100px 0;
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.service-image {
  flex: 1;
}

.service-image img {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer {
  background: #060b0f;
  color: #e1ebf4;
  padding: 80px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-info h3,
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: #e1ebf4;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all var(--transition-speed) ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #b4cee4;
  padding-left: 5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid rgba(225, 235, 244, 0.1);
  background: rgba(225, 235, 244, 0.05);
  color: #e1ebf4;
  border-radius: 5px;
  transition: all var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #274b6b;
  box-shadow: 0 0 0 2px rgba(39, 75, 107, 0.2);
}

.contact-form textarea {
  height: 60px;
  resize: vertical;
}

.contact-form button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #274b6b;
}

/* Footer Contact Button */
.footer-contact-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
}

.footer-contact-btn:hover {
  background: #274b6b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 140, 186, 0.2);
}

.footer-contact-btn:active {
  transform: translateY(0);
}

/* Mission & Vision Section */
.mission-vision {
  background: #b4cee4;
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.mission-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(39, 75, 107, 0.2),
    transparent
  );
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* .mission-block,
.vision-block {
  position: relative;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
} */

.mission-block,
.vision-block {
  position: relative;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 40px;        /* Consistent padding on both sides */
  text-align: left;       /* Uniform text alignment */
}



.mission-block {
  text-align: left;
  padding-right: 40px;
  display: inline;
}

.vision-block {
  text-align: right;
  padding-left: 40px;
  display: inline;
}

/* Common styles for both mission and vision images */
.mission-image,
.vision-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
  height: auto;
}

.mission-img,
.vision-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
}

.mission-image::after,
.vision-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(39, 75, 107, 0.1) 0%,
    rgba(39, 75, 107, 0.2) 100%
  );
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
}

.mission-image:hover .mission-img,
.vision-image:hover .vision-img {
  transform: scale(1.02);
}

.mission-image:hover::after,
.vision-image:hover::after {
  background: linear-gradient(
    180deg,
    rgba(39, 75, 107, 0.05) 0%,
    rgba(39, 75, 107, 0.15) 100%
  );
}

.mission-block h2,
.vision-block h2 {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  transition: all var(--transition-speed) ease;
  width: 100%;
}

.mission-block h2::after,
.vision-block h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.mission-block h2::after {
  left: 0;
}

.vision-block h2::after {
  right: 0;
}

.mission-block p,
.vision-block p {
  color: #11202d;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  opacity: 0.9;
  text-align: justify;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Global Reach Section */
.global-reach {
  background: linear-gradient(135deg, #b4cee4 0%, #e1ebf4 100%);
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.global-reach h2 {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
  transition: all var(--transition-speed) ease;
}

.global-reach h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.global-reach-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  animation: slideUp 0.8s ease-out;
}

.global-reach-text {
  text-align: left;
  padding: 20px;
}

.global-reach p {
  color: #11202d;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

.global-reach-image {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.global-reach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
}

.global-reach-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(39, 75, 107, 0.1) 0%,
    rgba(39, 75, 107, 0.2) 100%
  );
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
}

.global-reach-image:hover .global-reach-img {
  transform: scale(1.02);
}

.global-reach-image:hover::after {
  background: linear-gradient(
    180deg,
    rgba(39, 75, 107, 0.05) 0%,
    rgba(39, 75, 107, 0.15) 100%
  );
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #b4cee4 0%, #e1ebf4 100%);
  padding: var(--section-spacing) 0;
  position: relative;
  animation: fadeIn 0.8s ease-out;
}

.why-choose-us h2 {
  color: var(--heading-color);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
  transition: all var(--transition-speed) ease;
}

.why-choose-us h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.why-choose-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  animation: slideUp 0.8s ease-out;
}

.why-choose-image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-choose-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
}

.why-choose-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(39, 75, 107, 0.1) 0%,
    rgba(39, 75, 107, 0.2) 100%
  );
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
}

.why-choose-image:hover .why-choose-img {
  transform: scale(1.02);
}

.why-choose-image:hover::after {
  background: linear-gradient(
    180deg,
    rgba(39, 75, 107, 0.05) 0%,
    rgba(39, 75, 107, 0.15) 100%
  );
}

.why-choose-content p {
  color: #11202d;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Additional Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Why Choose Us List Styles */
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-list li {
  background: #e1ebf4;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 75, 107, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-choose-list li::before {
  display: none;
}

.why-choose-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 75, 107, 0.15);
  border-color: #274b6b;
}

.why-choose-list strong {
  color: #274b6b;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
  text-align: center;
}

.why-choose-list strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.why-choose-list li:hover strong::after {
  width: 60px;
}

.why-choose-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--heading-color);
  opacity: 0.9;
}

/* Responsive adjustments for Why Choose Us cards */
@media (max-width: 767px) {
  .why-choose-list {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 600px;
  }
  
  .why-choose-list li {
    padding: 15px;
  }
  
  .why-choose-list strong {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .why-choose-list {
    max-width: 100%;
  }
  
  .why-choose-list li {
    padding: 12px;
  }
  
  .why-choose-list strong {
    font-size: 0.95rem;
  }
  
  .why-choose-list p {
    font-size: 0.9rem;
  }
}

/* Responsive Design */
/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .nav-container {
    max-width: 1400px;
  }
  
  .service-content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop (1024px to 1399px) */
@media (max-width: 1399px) {
  .container {
    max-width: 1200px;
  }
  
  .nav-container {
    max-width: 1200px;
  }
  
  .service-content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .mission-vision-wrapper {
    gap: 60px;
  }
}

/* Tablet Landscape (768px to 1023px) */
@media (max-width: 1023px) {
  .container {
    max-width: 960px;
  }
  
  .nav-container {
    max-width: 960px;
  }
  
  .service-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .global-reach-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-choose-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
  
  .hero .tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 720px;
  }
  
  .nav-container {
    max-width: 720px;
  }
  
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision-wrapper {
    padding: 0 20px;
  }
  
  .mission-block,
  .vision-block {
    padding: 0;
    text-align: center;
  }
  
  .global-reach-content {
    padding: 0 20px;
  }
  
  .global-reach-text {
    text-align: center;
  }
  
  .why-choose-list {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 100px var(--container-padding) 40px;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  
  .hero .tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

/* Mobile (375px to 575px) */
@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .nav-container {
    padding: 10px 15px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .service-card.wide {
    padding: 15px;
  }
  
  .service-card.wide h4 {
    font-size: 1rem;
  }
  
  .service-card.wide ul li {
    font-size: 0.9rem;
  }
  
  .mission-image,
  .vision-image,
  .global-reach-image {
    aspect-ratio: 4/3;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .mission-img,
  .vision-img,
  .global-reach-img {
    border-radius: 10px;
  }
  
  .service-icon {
    height: 180px;
    margin-bottom: 15px;
  }
  
  .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .why-choose-img {
    aspect-ratio: 4/3;
    height: auto;
  }
  
  .hero {
    padding: 80px 15px 30px;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }
  
  .hero .tagline {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .mobile-menu a {
    font-size: 1.2rem;
    padding: 12px 0;
  }
  
  .mobile-menu .contact-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

/* Small Mobile (below 375px) */
@media (max-width: 374px) {
  .container {
    padding: 0 10px;
  }
  
  .nav-container {
    padding: 8px 10px;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }
  
  .hero .tagline {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .mobile-menu a {
    font-size: 1.1rem;
    padding: 10px 0;
  }
  
  .mobile-menu .contact-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .mobile-menu,
  .hamburger,
  .cta-button,
  .service-hover,
  .footer-contact-btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  img {
    max-width: 100%;
    page-break-inside: avoid;
  }
  
  a {
    text-decoration: none;
  }
}

/* Responsive adjustments for about features */
@media (max-width: 767px) {
  .about-features {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .about-feature {
    padding: 15px;
  }
  
  .feature-text {
    font-size: 1rem;
  }
}

/* Responsive adjustments for mission-vision section */
@media (max-width: 1023px) {
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .mission-block,
  .vision-block {
    padding: 0;
    text-align: center;
    align-items: center;
  }
  
  .mission-block h2,
  .vision-block h2 {
    text-align: center;
  }
  
  .mission-block h2::after,
  .vision-block h2::after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  
  .mission-block p,
  .vision-block p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .mission-vision {
    padding: 60px 0;
  }
  
  .mission-vision-wrapper {
    gap: 40px;
    padding: 0 20px;
  }
  
  .mission-block h2,
  .vision-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .mission-block p,
  .vision-block p {
    font-size: 1.1rem;
  }
  
  .mission-image,
  .vision-image {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .mission-vision {
    padding: 40px 0;
  }
  
  .mission-vision-wrapper {
    padding: 0 15px;
  }
  
  .mission-block h2,
  .vision-block h2 {
    font-size: 1.6rem;
  }
  
  .mission-block p,
  .vision-block p {
    font-size: 1rem;
  }
  
  .mission-image,
  .vision-image {
    height: 200px;
  }
}

/* Service Section Animations */
.service-block {
  margin-bottom: 60px;
}

.service-block:last-child {
  margin-bottom: 0;
}

.portfolio-main-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(39, 75, 107, 0.1);
  width: 100%;
}

.portfolio-main-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.regulatory-services {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 5px;
  width: 100%;
}

.regulatory-content {
  width: 100%;
  background: #e1ebf4;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(39, 75, 107, 0.08);
  border: 1px solid rgba(39, 75, 107, 0.1);
  transition: all 0.3s ease;
}

.regulatory-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 75, 107, 0.12);
  border-color: rgba(39, 75, 107, 0.2);
}

.regulatory-features {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.regulatory-features li {
  font-size: 1rem;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #11202d;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.regulatory-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 10px;
}

.regulatory-features li:last-child {
  margin-bottom: 0;
}

/* Override any other list styles */
.service-card.wide .regulatory-features,
.regulatory-content .regulatory-features,
#manufacturer .regulatory-features {
  list-style: none !important;
  padding-left: 0 !important;
}

.service-card.wide .regulatory-features li,
.regulatory-content .regulatory-features li,
#manufacturer .regulatory-features li {
  padding-left: 28px !important;
  position: relative !important;
}

.service-card.wide .regulatory-features li::before,
.regulatory-content .regulatory-features li::before,
#manufacturer .regulatory-features li::before {
  content: "\2713" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--primary-color) !important;
  font-weight: bold !important;
  font-size: 1.1rem !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .regulatory-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 25px;
  }

  .regulatory-features li::before {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .regulatory-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 22px;
  }

  .regulatory-features li::before {
    font-size: 0.95rem;
  }
}

/* Enhanced Mobile Menu Styles */
@media (max-width: 767px) {
  .mobile-menu {
    padding: 100px 20px 40px;
  }

  .mobile-menu a {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.5s ease forwards;
  }

  .mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu a:nth-child(1) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.4s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.5s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.6s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.7s; }

/* Mobile Menu Responsive Styles */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu a {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.5s ease forwards;
  }

  .mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
  }
}

/* File Upload Styles */
.file-upload {
  margin: 8px 0;
  width: 100%;
}

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(225, 235, 244, 0.05);
  border: 2px dashed rgba(39, 75, 107, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  color: #e1ebf4;
}

.file-label:hover {
  background: rgba(225, 235, 244, 0.1);
  border-color: rgba(39, 75, 107, 0.4);
}

.file-label i {
  font-size: 16px;
  margin-bottom: 6px;
  color: #b4cee4;
}

.file-label span {
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.file-label small {
  font-size: 0.7rem;
  color: #b4cee4;
  opacity: 0.8;
}

.file-input {
  display: none;
}

.file-preview {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-preview-item {
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #e1ebf4;
  display: flex;
  align-items: center;
  gap: 5px;
}

.file-preview-item button {
  background: none;
  border: none;
  color: #b4cee4;
  cursor: pointer;
  padding: 0 5px;
  font-size: 1rem;
}

.file-preview-item button:hover {
  color: #e1ebf4;
}

/* Responsive adjustments for file upload */
@media (max-width: 575px) {
  .file-label {
    padding: 8px;
  }

  .file-label i {
    font-size: 14px;
  }

  .file-label span {
    font-size: 0.8rem;
  }

  .file-label small {
    font-size: 0.65rem;
  }
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

@media (max-width: 575px) {
  .footer-logo {
    height: 45px;
    margin-bottom: 12px;
  }
}

.service-card.wide {
  width: 100%;
  background: #e1ebf4;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(39, 75, 107, 0.08);
  border: 1px solid rgba(39, 75, 107, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card.wide h4 {
  color: #11202d;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card.wide .regulatory-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card.wide .regulatory-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card.wide .regulatory-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #11202d;
  line-height: 1.5;
}

.service-card.wide .regulatory-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

@media (max-width: 767px) {
  .service-card.wide {
    padding: 15px;
  }
  
  .service-card.wide h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .service-card.wide .regulatory-features li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 22px;
  }
}

@media (max-width: 575px) {
  .service-card.wide {
    padding: 12px;
  }
  
  .service-card.wide h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .service-card.wide .regulatory-features li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    padding-left: 20px;
  }
}

/* Remove any aspect-ratio or auto height styles */
.service-icon {
  height: 200px !important;
  width: 100% !important;
}

.service-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.hidden {
  display: none;
}

.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #B4CEE4;
  border-radius: 4px;
  background-color: #E1EBF4;
  color: #11202D;
  font-size: 16px;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2311202D'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: #274B6B;
  box-shadow: 0 0 0 2px rgba(39, 75, 107, 0.2);
}

.form-group select:hover {
  border-color: #274B6B;
}

.form-group select option {
  background-color: #E1EBF4;
  color: #11202D;
  padding: 10px;
}

.form-group select option:checked {
  background-color: #B4CEE4;
  color: #11202D;
}

@media (max-width: 768px) {
  .form-group select {
    padding: 10px 12px;
    font-size: 14px;
    background-size: 16px;
  }
}

.file-preview-item {
  display: inline-block;
  margin: 10px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  background-color: #fff;
}

.file-preview-item img {
  border-radius: 5px;
  margin-bottom: 5px;
  width: 40px;
  height: 40px;
}

.file-preview-item span {
  overflow: hidden;
}

.file-preview-item .remove-btn {
  position: absolute;
  top: 2px;
  right: 0px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #c00;
  cursor: pointer;
}
