html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  height: 90px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 20px; 
  transition: all 0.4s ease;
}

nav.scrolled {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  list-style: none;
  gap: 100px; 
  transition: color 0.3s ease;
  margin: 0; 
  padding: 0; 
  margin-right: 50px;
}

.navbar li {
  width: auto; 
  height: 100%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar img {
  height: 60px;
  width: auto;
}

.navbar li a:hover {
  color: #266eb6;
}

nav.scrolled .navbar a {
  color: #333;
}

nav.scrolled .navbar a:hover {
  color: #266eb6;
}

.nav-logo {
  height: 70px;
  width: auto;
  z-index: 1001;
  display: block;
}

@media (max-width: 768px) {
  nav {
    justify-content: center; 
    padding: 0;
  }
  .nav-logo {
    position: absolute; 
    left: 20px;
    top: 20px;
    height: 40px;
  }
  .navbar {
    display: none; 
  }
  .navbar img {
    display: none;
  }
  .nav-logo img{
    height: 10px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background-color: #007bff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 6px;
}

.hamburger span:nth-child(2) {
  top: 14px;
}

.hamburger span:nth-child(3) {
  top: 22px;
}

nav.scrolled .hamburger span {
  background-color: #333;
}

.hamburger.active span:nth-child(1) {
  top: 14px;
  transform: translateX(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  top: 14px;
  transform: translateX(-50%) rotate(-45deg);
}

.off-screen-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(250, 252, 255, 0.98) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  max-width: 480px;
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  padding: 100px 0 0 0;
  box-sizing: border-box;
}

.off-screen-menu::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.03) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.5; }
}

.off-screen-menu.active {
  transform: translateX(0);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 997;
  opacity: 0;
  animation: fadeInOverlay 0.6s ease forwards;
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  width: 100%;
  max-width: 380px;
  margin-top: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: center;
  padding: 0 30px;
}

.menu-content a {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
  opacity: 0;
  font-family: 'Montserrat', sans-serif;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 18px 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.5px;
  text-align: left;
  background: rgba(0, 123, 255, 0.02);
  border: 1px solid rgba(0, 123, 255, 0.08);
}

.menu-content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 123, 255, 0.15) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
}

.menu-content a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff, #0099ff);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

.menu-content a:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  transform: translateX(10px);
  border-color: rgba(0, 123, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.15);
}

.menu-content a:hover::before {
  left: 100%;
}

.menu-content a:hover::after {
  width: 100%;
}

.menu-content a:nth-child(1) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.1s; 
}
.menu-content a:nth-child(2) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s; 
}
.menu-content a:nth-child(3) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s; 
}
.menu-content a:nth-child(4) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s; 
}

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

.menu-contact {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px 30px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgba(249, 250, 251, 0.8) 100%);
}

.contact-prompt {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 400;
}

.contact-prompt a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.contact-prompt a:hover {
  color: #0056b3;
  border-bottom-color: #0056b3;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 123, 255, 0.04);
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-card:active {
  transform: scale(0.98);
  background: rgba(0, 123, 255, 0.08);
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.05rem;
}

.contact-number {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.social-items {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-items a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.4rem;
  background: white;
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-items a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #4a9fff);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.social-items a:hover {
  color: #fff;
  transform: translateY(-5px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
}

.social-items a:hover::before {
  width: 100%;
  height: 100%;
}

.social-items a i {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-top: 10px;
  }
  
  .off-screen-menu {
    max-width: 100%;
  }
  
  .menu-content {
    max-width: calc(100% - 60px);
  }
  
  .menu-content a {
    font-size: 1.7rem;
    padding: 16px 25px;
  }
  
  .menu-contact {
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 480px) {
  .menu-content a {
    font-size: 1.5rem;
    padding: 14px 20px;
  }
}

/* Hero Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 100%;
  max-width: 1500px;
}

.left h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.left p {
  text-align: justify;
  margin-bottom: 30px;
}

.right {
  max-width: 500px;
}

.right p {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #e0dfdf;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.btn {
  background-color: #00c092;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #01977b;
}

.btn-outline {
  border: 2px solid #00c092;
  background: transparent;
  color: #00c092;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: #00c092;
  color: white;
}

.hero-centered {
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.hero-text-block {
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #e0dfdf;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.dark-gradient {
  background: linear-gradient(to right, rgba(10, 20, 40, 0.85), rgba(0, 0, 0, 0.5));
}

.light-gradient {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(15, 23, 42, 0.5));
}

.reversed {
  flex-direction: row-reverse;
}

.image-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 60px;
}

.hero3-icon {
  width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Indicators */
.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 100px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: white;
  transition: none;
}

.dot.active::before {
  animation: fillBar 4s linear forwards;
}

@keyframes fillBar {
  from { width: 0%; }
  to { width: 100%; }
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 24px;
  border-radius: 8px;
  background-color: #323232;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast.success {
  background-color: #38a169; 
}

.toast.error {
  background-color: #e53e3e; 
}

.toast.hidden {
  display: none;
}

.dot.active {
  background-color: rgba(255, 255, 255, 0.4);
}

.line-bot {
  border-bottom: 1px solid rgb(192, 192, 192);
  box-shadow: 1px 1px 1px #e2e1e1;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
  }

  .navbar.show {
    display: flex;
  }

  .navbar li {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid #eee;
    text-align: center;
  }

  .navbar img {
    display: none;
  }

  .content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .left h1,
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .dot {
    width: 40px;
  }
}

/* About Us Section */
.about-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  gap: 80px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-us.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-content {
  flex: 1;
  max-width: 520px;
  min-width: 320px;
}

.about-content h2 {
  font-size: 40px;
  color: #0f172a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border-radius: 2px;
}

.about-content p {
  color: #475569;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
  margin-top: 32px;
  text-align: justify;
}

.learn-more-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

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

.verticalline {
  width: 2px;
  height: 280px;
  background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  min-width: 280px;
}

.stat-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease;
  min-width: 160px;
}

.stat-box:hover {
  border-color: #cbd5e1;
}

.stat-box h3 {
  font-size: 42px;
  color: #1e40af;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-box p {
  color: #64748b;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .about-us {
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    gap: 50px;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-content p {
    text-align: justify;
  }

  .verticalline {
    display: none;
  }

  .about-stats {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .about-us {
    padding: 40px 20px;
    gap: 40px;
  }

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

  .about-content p {
    font-size: 15px;
  }

  .learn-more-btn {
    width: 100%;
    padding: 14px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-box {
    padding: 28px 20px;
  }

  .stat-box h3 {
    font-size: 36px;
  }
}

/* Awards Section */
.awards {
  position: relative;
  padding: 30px 0px;
  background: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.awards.animate {
  opacity: 1;
  transform: translateY(0);
}

.awards .vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('awardvector.png') no-repeat center center;
  background: url('assets/awardvector.png') no-repeat center center;
  background-size: cover;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.awards h2 {
  position: relative;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  z-index: 1;
}

.awards h4,
.award-images {
  position: relative;
  font-size: 15px;
  z-index: 1;
}

.award-images {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.award-card-static {
  position: relative;
  width: 280px;
  min-height: 350px;
  background: white;
  border-radius: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card-static:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(93, 138, 255, 0.3), 0 0 25px rgba(93, 138, 255, 0.4);
}

.award-card-static .badge-icon {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.award-card-static .badge-icon img {
  width: 100%;
  height: auto;
}

.award-card-static .award-img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-top: 10px;
  margin-bottom: 15px;
}

.award-card-static .caption {
  font-size: 14px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  word-break: break-word;
}

@media (max-width: 768px) {
  .award-images {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
  }

  .award-card-static {
    width: 100%;
    max-width: 320px;
    min-height: 320px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  }

  .award-card-static .award-img {
    max-height: 160px;
  }

  .award-card-static .caption {
    font-size: 13px;
  }

  .award-card-static .badge-icon {
    top: -14px;
    left: -14px;
    width: 34px;
    height: 34px;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .awards.animate {
    align-items: center;
    justify-items: center;
  }

  .award-card-static {
    max-width: 80%;
    padding: 12px;
    align-items: center;
  }

  .award-card-static .award-img {
    max-height: 150px;
  }

  .award-card-static .caption {
    font-size: 15px;
  }

  .award-card-static .badge-icon {
    width: 28px;
    height: 28px;
    top: -12px;
    left: -12px;
    padding: 3px;
  }

  .awards h2 {
    font-size: 20px;
  }

  .awards h4 {
    font-size: 14px;
  }
}

/* Why Choose Us Section */
.why-choose {
  background: #ffffff;
  padding: 6rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.why-choose.animate {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.why-choose-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.reason-item {
  display: flex;
  gap: 1.5rem;
}

.reason-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #0077b6;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.reason-content {
  flex: 1;
  padding-top: 4px;
}

.reason-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.reason-description {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 1024px) {
  .reasons-grid {
      gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .why-choose {
      padding: 4rem 1.5rem;
  }

  .why-choose-header {
      margin-bottom: 3rem;
  }

  .why-choose-title {
      font-size: 2rem;
  }

  .why-choose-subtitle {
      font-size: 1rem;
  }

  .reasons-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .reason-item {
      gap: 1.25rem;
  }

  .reason-number {
      width: 44px;
      height: 44px;
      font-size: 1.1rem;
  }

  .reason-title {
      font-size: 1.15rem;
  }

  .reason-description {
      font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .why-choose {
      padding: 3rem 1rem;
  }

  .why-choose-title {
      font-size: 1.75rem;
  }
}

/* Testimonial Section */
.testimonial {
  background: #fbfdff;
  padding: 50px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(38, 110, 182, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(38, 110, 182, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonial h1 {
  font-size: 2.2rem;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.testimonial h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0077ff, #266eb6);
  margin: 10px auto 0;
  border-radius: 2px;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  gap: 35px;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  flex: 1;
}

.quote-box {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  padding: 30px 35px;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
  border-left: 4px solid #0077ff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
  transform: translateY(-3px);
  box-shadow: 0px 15px 40px rgba(0,0,0,0.12);
}

.quote {
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  position: relative;
  margin-bottom: 20px;
}

.quote-mark {
  font-size: 3.5rem;
  font-weight: bold;
  color: rgba(0, 119, 255, 0.15);
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease;
}

.quote-box:hover .quote-mark {
  color: rgba(0, 119, 255, 0.25);
}

.quote-mark:first-of-type {
  top: -35px;
  left: -20px;
}

.quote-mark:last-of-type {
  bottom: -50px;
  right: -12px;
}

.author {
  margin-top: 15px;
  font-weight: 600;
  color: #222;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 119, 255, 0.1);
  position: relative;
}

.author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #0077ff;
}

.author span {
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.testimonial-video {
  display: flex;
  justify-content: center;
  padding: 10px;
  border-radius: 25px;
  background: linear-gradient(145deg, #f0f0f0, #e6e6e6);
  animation: floaty 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.testimonial-video::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #0077ff, #266eb6, #0077ff);
  border-radius: 37px;
  z-index: -1;
  opacity: 0.1;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(0.5deg); }
  50% { transform: translateY(-25px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-0.5deg); }
}

.testimonial-video video {
  width: 240px;
  height: 320px;
  border-radius: 20px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-video:hover video {
  transform: scale(1.02);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.4s ease;
}

.testimonial-dot.active {
  background: #0077ff;
  transform: scale(1.3);
}

.testimonial-dot.active::before {
  background: white;
}

.testimonial-dot:hover:not(.active) {
  background: rgba(0, 119, 255, 0.6);
  transform: scale(1.1);
}

#quoteContent,
#quoteAuthor {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

#quoteContent.fade-out,
#quoteAuthor.fade-out {
  opacity: 0;
  transform: translateY(15px);
}

@media (max-width: 992px) {
  .testimonial {
    padding: 40px 20px;
  }
  
  .testimonial-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .testimonial-text {
    margin-bottom: 0;
    padding: 0 15px;
  }
  
  .quote-box {
    padding: 25px 28px;
    border-radius: 14px;
  }
  
  .quote {
    font-size: 1rem;
    text-align: justify;
  }
  
  .quote-mark:first-of-type {
    top: -30px;
    left: -15px;
  }
  
  .quote-mark:last-of-type {
    bottom: -40px;
    right: -12px;
  }
  
  .testimonial-video {
    width: 70%;
    max-width: 320px;
    background: linear-gradient(145deg, #f0f0f0, #e6e6e6);
    padding: 16px;
    animation: none;
  }
  
  .testimonial-video video {
    width: 100%;
    height: auto;
    max-width: 260px;
    aspect-ratio: 3/4;
  }
}

@media (max-width: 576px) {
  .testimonial {
    padding: 35px 15px;
  }
  
  .testimonial h1 {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
  
  .quote-box {
    padding: 22px 20px;
  }
  
  .quote {
    font-size: 0.95rem;
  }
  
  .author {
    font-size: 0.9rem;
  }
  
  .testimonial-video {
    width: 85%;
    padding: 12px 0;
  }
  
  .testimonial-video video {
    border-radius: 15px;
  }

  .testimonial-controls {
    margin-top: 20px;
  }
}

/* Contact Us Section */
.contact-section {
  background-color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.contact-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.contact-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.contact-container {
  background: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
  align-items: flex-start;
}

.contact-text {
  flex: 1 1 200px;
  text-align: left;
}

.contact-text h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  color: #222;
}

.contact-text p {
  font-size: 0.95rem;
  color: #444;
  font-family: 'Montserrat', sans-serif;
  max-width: 500px;
  text-align: justify;
  line-height: 1.5;
}

.whatsapp-btn {
  display: inline-flex;
  gap: 8px;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
  transform: translateY(-2px);
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20fill='gray'%20class='bi%20bi-chevron-down'%20viewBox='0%200%2016%2016'%3E%3Cpath%20fill-rule='evenodd'%20d='M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.contact-form input,
.contact-form textarea{
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: none;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #7f9cf5;
  box-shadow: 0 0 0 3px rgba(127, 156, 245, 0.2);
  background-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

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

.contact-form button {
  background-color: #7f9cf5;
  color: white;
  font-weight: bold;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #5c7bdb;
}

.contact-form button {
  background-color: #7f9cf5;
  color: white;
  border: none;
  padding: 0.75rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #5c7bdb;
}

.g-recaptcha {
  width: 100px;
}

@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 35px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
  }

  .contact-text,
  .contact-form {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .contact-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-text p {
    max-width: 100%;
  }

  .contact-form {
    align-items: stretch;
    padding: 0 0.5rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form button {
    width: 100%;
  }

  .g-recaptcha {
    transform:scale(0.85);
    transform-origin:0 0;
  }
}

/* FAQ Section */
#faq {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  padding: 10px 40px;
  background: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

#faq.animate {
  opacity: 1;
  transform: translateY(0);
}

#faq h2 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
  position: relative;
}

#faq h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #6b91d3; 
  margin: 10px auto 0;
  border-radius: 2px;
}

.separator {
  border: none;
  height: 1px;
  background: #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin: 0;
}

.faq-row {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 20px;
  margin-bottom: 20px;
}

.faq-col {
  width: 80%;            
  max-width: 900px;      
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  transition: background 0.3s;
  background-color: #f4f4f4;
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-icon {
  font-size: 1.4rem;
  color: #6b91d3;
  transition: transform 0.3s, color 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #e53935; 
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  padding: 0 20px;
  transition: max-height 0.25s ease, padding 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  font-size: 0.9rem;
  text-align: justify;
  background: #fdfdfd;
}

@media (max-width: 900px) {
  #faq h2 {
    font-size: 25px;
  }

  .faq-col {
    width: 90%;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-answer {
    font-size: 12px;
    text-align: justify;
  }
}

@media (max-width: 600px) {
  .faq-col {
    width: 100%;
  }
}

/* Partners Section */
.partners {
  background-color: #FAFAFA;
  padding: 10px 0;
  text-align: center;
}

.partners .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partners h2 {
  margin-bottom: 12px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.partners h2::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 45px;
  height: 3px;
  background-color: #266EB6;
  border-radius: 2px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 150px;
  margin-top: 30px;
  padding: 0;
  margin-bottom: 30px;
}

.partner-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.partner-logos a:hover {
  opacity: 0.75;
}

.partner-logos img {
  height: 42px;
  width: auto;
  object-fit: contain;
  max-width: 150px;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .partners {
    padding: 35px 0;
  }
  
  .partners h2 {
    font-size: 19px;
  }
  
  .partner-logos {
    gap: 36px;
    margin-top: 26px;
  }
  
  .partner-logos img {
    height: 38px;
    max-width: 130px;
  }
}

@media (max-width: 480px) {
  .partners {
    padding: 30px 0;
  }
  
  .partners .container {
    padding: 0 1.5rem;
  }
  
  .partners h2 {
    font-size: 18px;
  }
  
  .partner-logos {
    gap: 30px;
    margin-top: 24px;
  }
  
  .partner-logos img {
    height: 34px;
    max-width: 110px;
  }
}

/* Footer Section */
footer {
  background-color: #266EB6;
  color: white;
  background-image: url('footervector.png'); 
  background-image: url('assets/footervector.png'); 
  background-repeat: no-repeat;
  background-position: right top;
  background-size: fill;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 5px;
}

.footer-logo p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: white;
}

.vertical-line {
  width: 1px;
  height: 140px;
  background-color: white;
}

.social-media {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

.social-media a {
  color: white;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #4a9fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-info {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 250px;
}

.contact-item i {
  margin-top: 5px;
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.5;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  font-size: 0.85rem;
}

@media (max-width: 1110px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .footer-logo img {
    height: 70px;
  }

  .vertical-line {
    display: none;
  }

  .social-media {
    font-size: 1.5rem;
    justify-content: center;
    gap: 20px;
  }

  .footer-right {
    padding-left: 0;
    width: 100%;
  }

  .contact-info {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
  }

  .contact-item {
    max-width: 220px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-item i {
    font-size: 1rem;
    margin-top: 5px;
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    height: 60px;
  }

  .social-media {
    font-size: 1.3rem;
  }

  .copyright {
    font-size: 0.75rem;
    padding: 15px;
  }

  .contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    overflow-x: auto;
    gap: 25px;
  }

  .contact-item {
    min-width: 200px;
    flex-shrink: 0;
  }

  .contact-info-scroll {
    overflow-x: scroll; 
    -webkit-overflow-scrolling: auto; 
    scrollbar-width: thin; 
    scrollbar-color: #aaa #eee; 
  }

  .contact-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    min-width: max-content;
  }

  .contact-item {
    min-width: 200px;
    flex-shrink: 0;
  }

  .contact-info-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .contact-info-scroll::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 3px;
  }

  .contact-info-scroll::-webkit-scrollbar-track {
    background-color: #eee;
  }
}