/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: auto !important;
  min-height: 0 !important;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  display: block !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex: 1 0 auto;
}

/* Color Variables */
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #3b82f6;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --background-light: #f8fafc;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo {
  height: 40px;
  width: auto;
}

.nav-logo .company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 120px 0 60px;
  position: relative;
  overflow: visible;
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Enhanced Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
  color: var(--accent-color);
  font-size: 1rem;
}

/* Secondary CTA */
.hero-secondary-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-divider {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.learn-more-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.cta-button {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.cta-button:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(245, 158, 11, 0.3);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Trust Indicators */
.hero-trust {
  margin-top: 2rem;
}

.trust-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.trust-text i {
  color: var(--accent-color);
}

.trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-card,
.mini-card {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.22) 60%,
      rgba(255, 255, 255, 0.12) 100%
    ),
    radial-gradient(
      circle at var(--glass-x, 50%) var(--glass-y, 50%),
      rgba(255, 255, 255, var(--glass-glow-alpha, 0)) 0%,
      rgba(255, 255, 255, 0.08) 60%,
      transparent 100%
    );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.12);
  transition: transform 0.15s cubic-bezier(0.4, 2, 0.6, 1),
    box-shadow 0.15s cubic-bezier(0.4, 2, 0.6, 1), border-color 0.15s,
    background 0.15s;
  --glass-glow-alpha: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
}
.hero-card.in-view,
.mini-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.5s cubic-bezier(0.4, 2, 0.6, 1),
    transform 0.5s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.15s,
    border-color 0.15s, background 0.15s;
}
.hero-card:hover,
.mini-card:hover,
.hero-card:focus-within,
.mini-card:focus-within {
  transform: scale(1.045) translateY(-4px);
  box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.18);
  border-color: rgba(245, 158, 11, 0.45);
  --glass-glow-alpha: 0.35;
}
.hero-card {
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  max-width: 350px;
}
.mini-card {
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  min-width: 150px;
}

.hero-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Hero Card Features */
.hero-card-features {
  list-style: none;
  text-align: left;
}

.hero-card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-card-features li i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

/* Secondary Cards */
.hero-secondary-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mini-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.mini-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.mini-card p {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.about-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 500;
}

.feature i {
  font-size: 1.2rem;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.india-map {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.india-map i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.india-map p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--background-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  color: var(--text-muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit {
  text-align: center;
  padding: 2rem 1rem;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
}

.benefit h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.benefit p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--background-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image i {
  font-size: 1.5rem;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-person h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-person .title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  width: 20px;
  color: var(--primary-color);
  margin-top: 4px;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.address {
  line-height: 1.6;
  color: var(--text-muted);
}

.address strong {
  color: var(--text-dark);
}

.contact-form {
  background: var(--background-light);
  padding: 2.5rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  flex-shrink: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 2rem 0 1rem;
  margin-bottom: 0 !important;
  padding-bottom: 2rem !important;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo .company-name {
  font-size: 1.25rem;
  font-weight: 600;
}

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

.footer-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 90px 0 30px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-features,
  .hero-stats,
  .hero-trust,
  .hero-secondary-cards {
    display: none !important;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

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

  .hero-secondary-cta {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .phone-cta {
    width: 100%;
    justify-content: center;
  }

  .cta-divider {
    display: none;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat {
    min-width: 100px;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-secondary-cards {
    flex-direction: column;
    width: 100%;
  }

  .mini-card {
    min-width: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-features {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 110px 0 10px;
  }
  .hero-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    line-height: 1.15;
  }
  .hero-tagline {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
  }
  .hero-subtext {
    font-size: 1rem;
    margin-bottom: 1.3rem;
  }
  .cta-button,
  .phone-cta,
  .learn-more-cta {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-button {
    margin-top: 0.7rem;
    margin-bottom: 1.1rem;
  }
  .phone-cta {
    margin-bottom: 1.1rem;
  }
  .learn-more-cta {
    margin-bottom: 1.1rem;
  }
  .hero-secondary-cta {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-visual {
    margin-top: 0.3rem;
  }
  .hero-card {
    padding: 1.4rem 1.1rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
  }
  .hero-card h3 {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .hero-card p {
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
  }
  .hero-card-features li {
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
  }
}
