/* ===== RESET & BASE CSS START ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1F7FC4;
  --primary-light: #36A9E1;
  --primary-sky: #68C8E8;
  --primary-aqua: #63CFCB;
  --primary-navy: #183C78;
  --primary-dark: #0F2F4A;
  --white: #FFFFFF;
  --light-bg: #F7FAFC;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --gradient: linear-gradient(135deg, #63CFCB 0%, #36A9E1 35%, #1F7FC4 70%, #183C78 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(31, 127, 196, 0.15);
  --shadow: 0 15px 40px rgba(31, 127, 196, 0.18);
  --shadow-hover: 0 20px 60px rgba(31, 127, 196, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* ===== LOADER CSS START ===== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(31, 127, 196, 0.1);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}
/* ===== LOADER CSS END ===== */

/* ===== GLASSMORPHISM CSS START ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}
/* ===== GLASSMORPHISM CSS END ===== */

/* ===== BUTTONS CSS START ===== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(31, 127, 196, 0.3);
}

.btn.primary:hover {
  background: var(--primary-navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(31, 127, 196, 0.5);
}

.btn.outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn.outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Button Ripple */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}
/* ===== BUTTONS CSS END ===== */

/* ===== SECTION CSS START ===== */
.section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 10px;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
}

.dark-bg {
  background: rgba(31, 127, 196, 0.03);
}
/* ===== SECTION CSS END ===== */

/* ===== NAVBAR CSS START ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 30px;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(31, 127, 196, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
  color: var(--text-primary);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-navy);
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.navbar.scrolled .hamburger {
  color: var(--text-primary);
}
/* ===== NAVBAR CSS END ===== */

/* ===== MEGA DROPDOWN CSS START ===== */
.dropdown {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 40px;
  left: -200px;
  width: 700px;
  padding: 25px;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(31, 127, 196, 0.1);
  box-shadow: var(--shadow-hover);
}

.dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mega-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-secondary) !important;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mega-grid a:hover {
  background: rgba(31, 127, 196, 0.08);
  color: var(--primary) !important;
}

.mega-grid a i {
  color: var(--primary);
  width: 20px;
}

.navbar.scrolled .mega-dropdown {
  background: rgba(255, 255, 255, 0.98);
}
/* ===== MEGA DROPDOWN CSS END ===== */

/* ===== HERO CSS WITH VIDEO START ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===== HERO VIDEO ===== */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* ===== VIDEO OVERLAY ===== */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 47, 74, 0.65);
  z-index: 1;
}

/* ===== HERO FLOATING CIRCLES ===== */
.hero-float-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 207, 203, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: floatSlow 20s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
  100% {
    transform: translate(10px, -10px) scale(1.02);
  }
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--primary-aqua);
}

.hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Animated Heading */
.animated-heading span {
  display: inline-block;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(99, 207, 203, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(99, 207, 203, 0.6), 0 0 80px rgba(31, 127, 196, 0.3);
  }
}
/* ===== HERO CSS WITH VIDEO END ===== */

/* ===== ABOUT CSS START ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-text strong {
  color: var(--primary);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(31, 127, 196, 0.1);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-card span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
/* ===== ABOUT CSS END ===== */

/* ===== TEAM CSS START ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  background: var(--white);
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 15px;
  border: 3px solid var(--primary);
  box-shadow: 0 0 30px rgba(31, 127, 196, 0.2);
  transition: all 0.3s ease;
}

.team-card:hover .team-img {
  border-color: var(--primary-aqua);
  box-shadow: 0 0 50px rgba(31, 127, 196, 0.4);
}

.team-card h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
}

.team-card .role {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.team-card .bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.team-card .social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-card .social-icons a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.team-card .social-icons a:hover {
  color: var(--primary);
}
/* ===== TEAM CSS END ===== */

/* ===== SERVICES CSS START ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  background: var(--white);
  border: 1px solid rgba(31, 127, 196, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
  color: var(--primary-aqua);
}

.service-card h4 {
  color: var(--text-primary);
  font-size: 1rem;
}
/* ===== SERVICES CSS END ===== */

/* ===== FEATURES / WHY CHOOSE US CSS START ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feature {
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  background: var(--white);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
/* ===== FEATURES CSS END ===== */

/* ===== STATISTICS CSS START ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item span {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 5px;
}
/* ===== STATISTICS CSS END ===== */

/* ===== REVIEWS CSS START ===== */
.review-slider {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.review-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: 260px;
  padding: 25px 20px;
  border-radius: 16px;
  flex-shrink: 0;
  background: var(--white);
}

.review-card .stars {
  color: #f59e0b;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.review-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.review-card h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
}
/* ===== REVIEWS CSS END ===== */

/* ===== FAQ CSS START ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(31, 127, 196, 0.08);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-q:hover {
  background: rgba(31, 127, 196, 0.04);
}

.faq-q i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-a {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}
/* ===== FAQ CSS END ===== */

/* ===== CONTACT CSS START ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(31, 127, 196, 0.08);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(31, 127, 196, 0.15);
  background: var(--light-bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 127, 196, 0.1);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: var(--light-bg);
  padding: 0 4px;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group select:focus~label,
.form-group select:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--primary);
  background: var(--white);
  padding: 0 8px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234B5563' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.contact-form .btn {
  width: 100%;
}
/* ===== CONTACT CSS END ===== */

/* ===== FOOTER CSS START ===== */
.footer {
  background: var(--primary-dark);
  padding: 50px 20px 20px;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: var(--primary-sky);
}

.footer-grid .social-icons {
  display: flex;
  gap: 15px;
}

.footer-grid .social-icons a {
  font-size: 1.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}
/* ===== FOOTER CSS END ===== */

/* ===== FLOATING BUTTONS CSS START ===== */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.float-call {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(31, 127, 196, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-call:hover {
  transform: scale(1.1);
  background: var(--primary-navy);
  box-shadow: 0 12px 40px rgba(31, 127, 196, 0.5);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(31, 127, 196, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-navy);
  transform: translateY(-3px);
}
/* ===== FLOATING BUTTONS CSS END ===== */

/* ===== ANIMATIONS CSS START ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.float-animation:nth-child(2) {
  animation-delay: 0.5s;
}
.float-animation:nth-child(3) {
  animation-delay: 1s;
}
.float-animation:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* ===== ANIMATIONS CSS END ===== */

/* ===== RESPONSIVE CSS START ===== */
@media (max-width: 1024px) {
  .mega-dropdown {
    width: 500px;
    left: -100px;
  }
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
    gap: 15px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--text-secondary) !important;
  }

  .nav-links a:hover {
    color: var(--primary) !important;
  }

  .navbar.scrolled .nav-links a {
    color: var(--text-secondary) !important;
  }

  .dropdown {
    width: 100%;
  }

  .mega-dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.95) !important;
  }

  .dropdown:hover .mega-dropdown {
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .team-grid {
    max-width: 100%;
  }

  .float-whatsapp,
  .float-call {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .float-whatsapp {
    bottom: 20px;
    left: 20px;
  }

  .float-call {
    bottom: 80px;
    left: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 50px 15px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card {
    min-width: 220px;
  }

  .contact-form {
    padding: 20px;
  }

  .nav-links {
    width: 280px;
  }
}

@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
/* ===== RESPONSIVE CSS END ===== */