/* Reset and basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Outfit', sans-serif;
  height: 100%;
  width: 100%;
  background: #fff;
  color: #222;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Container for centering content */
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Header styles */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo img {
  max-height: 80px;
  width: auto;
}

/* ---------- Navigation Links ---------- */
nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a:focus {
  color: #004a99;
  background-color: rgba(0, 74, 153, 0.15);
  box-shadow: 0 0 8px rgba(0, 74, 153, 0.4);
  border: 1px solid #004a99;
  outline: none;
}

/* ---------- Hamburger (Hidden on Desktop) ---------- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
    z-index: 1001;
  }

  nav ul.nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: #fff;
    width: 75%;
    height: 100vh;
    padding: 30px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .logo img {
    max-height: 55px;
    width: auto;
  }

  nav ul.nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  nav ul.nav-links li {
    margin-bottom: 20px;
  }
}


/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh; /* Full screen height */
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken video so text is readable */
}

.hero-content {
  position: relative;
  z-index: 5;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Outfit', sans-serif;
}

.hero-headline {
  font-size: 3rem;      /* Thoda bada, par balanced */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #00c2ff;      /* Sky blue */
  text-shadow: 0 0 10px rgba(0, 194, 255, 0.8);
}

.hero-headline span {
  opacity: 0;
  display: inline-block;
  color: inherit;
}

.hero-subheading {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #e0e0e0;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.hero-button {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.75rem 3rem;
  border: none;
  border-radius: 35px;
  background: linear-gradient(90deg, #00c2ff, #0066cc);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 194, 255, 0.6);
  transition: background 0.4s ease, transform 0.3s ease;
  letter-spacing: 1.1px;
}

.hero-button:hover,
.hero-button:focus {
  background: linear-gradient(90deg, #0066cc, #003366);
  transform: scale(1.07);
  outline: none;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.8);
}

.intro-section {
  background-color: #f5faff; /* Same light blue background */
  padding: 60px 20px;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}


.intro-text {
  flex: 1 1 55%;
  font-size: 1.2rem;
  line-height: 1.5;
}

.intro-text h2 span {
  color: #0099ff;
}

.intro-image {
  flex: 1 1 400px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .intro-text,
  .intro-image {
    width: 100%;
    flex: none;
  }

  .intro-image img {
    height: auto;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
  }
}


/* Why Choose Us */
.why-choose-section {
  background: #f5faff;
  padding: 50px 0;
}

.why-choose-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #0099ff;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 40px;
  justify-items: center;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

.why-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-card h4 {
  color: #0099ff;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.why-card p {
  color: #444;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Growth Section */
.growth-section {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}

.growth-section h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #0099ff;
}

.growth-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.growth-section .hero-button {
  margin-top: 32px; /* Creates space between text and button */
  display: inline-block;
}

.growth-section .hero-button {
  margin-top: 32px; /* Creates space between text and button */
  display: inline-block;
}
.btn-primary,
.btn-secondary {
  background-color: #0099ff;
  border: none;
  color: white;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #007acc;
}

.intro-text p {
  max-width: 700px;
  margin: 30px auto 30px;
}

.benefits-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 40px;
  padding-left: 20px;
  text-align: left;
  font-size: 1.1rem;
  color: #222;
}

.benefits-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0099ff;
  font-weight: 700;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* Stat item fix width for desktop */
.stat-item {
  background: linear-gradient(135deg, #e0f2ff 0%, #c0e4ff 100%);
  padding: 25px 20px;
  border-radius: 20px;
  flex: 0 0 200px;
  max-width: 200px;
  box-shadow:
    0 8px 16px rgba(0, 153, 255, 0.15),
    0 4px 8px rgba(0, 102, 204, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #007acc;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .stats {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .stat-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}


/* Services Section */
 section.services-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }

  section.services-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    color: #007b9e; /* sky blue */
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
  }

  .service-card {
    perspective: 1200px;
  }

  .card-inner {
    position: relative;
    width: 100%;
    height: 360px;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    background: white;
  }

  .service-card:hover .card-inner,
  .service-card:focus-within .card-inner {
    transform: rotateY(180deg);
  }

  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding:30px 20px;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-front {
    background: #fff;
    border: 2px solid #007b9e;
  }

  .card-front h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #007b9e;
    margin: 0 auto;
  }

  .card-back {
    background: #007b9e;
    color: white;
    transform: rotateY(180deg);
    box-sizing: border-box;
  }

  .card-back p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .learn-more-btn {
  padding: 12px 28px;
  background-color: #0099ff;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 153, 255, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.learn-more-btn:hover,
.learn-more-btn:focus {
  background-color: #007acc;
  box-shadow: 0 8px 24px rgba(0, 122, 204, 0.6);
  outline: none;
}


  /* Learn More button on back */
  /* Explore All Services button */
.explore-btn {
  display: block;
  margin: 50px auto 0; /* Top space from card */
  padding: 16px 40px;
  background-color: #0099ff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  user-select: none;
  box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn:hover,
.explore-btn:focus {
  background-color: #007acc;
  box-shadow: 0 8px 24px rgba(0, 122, 204, 0.7);
  outline: none;
}





/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: #fff;
}

.main-heading {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.main-heading h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #0099ff;
}

.main-heading p {
  font-size: 1.2rem;
  color: #333;
}

/* Cards wrapper */
.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual card */
.card {
  background: #f5faff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 440px;
  max-width: 480px;
}

/* Form styles */
form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #222;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 18px;
  border: 1.8px solid #ddd;
  border-radius: 8px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #0099ff;
}

form textarea {
  min-height: 110px;
  font-family: 'Outfit', sans-serif;
}

/* Submit button */
.submit-btn {
  background-color: #0099ff;
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #007acc;
}

/* Contact info section */
.contact-info h3,
.strategy-call h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #0099ff;
}

.info-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-label {
  font-weight: 700;
  color: #222;
}

.info-value a {
  color: #0099ff;
  text-decoration: none;
}

.info-value a:hover {
  text-decoration: underline;
}

/* Strategy call */
 .strategy-call {
    margin-top: 48px;
    padding: 30px 24px;
    background: #007bbf;
    border-radius: 32px;
    color: #ffffff;
    box-shadow: 0 8px 32px rgb(0 123 191 / 0.45);
    text-align: center;
  }
  .s
.strategy-call p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

.strategy-call button {
  background-color: #0099ff;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.strategy-call button:hover {
  background-color: #007acc;
}

/* Footer */
footer {
  background-color: #0d192b;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #0099ff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0099ff;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.7rem;
  color: #bbb;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0099ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: #999;
}

/* ------------------------- */
/* ✅ Responsive Fixes Start */
/* ------------------------- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }
}
/* ------------------------- */
/* ✅ Responsive Fixes End   */
/* ------------------------- */

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  .intro-text h2 {
    font-size: 2rem !important;
  }

  .growth-section h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    max-width: 140px;
  }
}
