/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #d9f1ff;
    color: #0a2b33;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    background: #02c7c7;
    padding: 6px 10px;
    border-radius: 50%;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.btn-small {
    padding: 7px 15px;
    background: #02c7c7;
    color: #fff;
    border-radius: 5px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(#010055, #020085);
}

.hero h1 {
    font-size: 42px;
}
.hero h1 span {
    color: #00baba;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-main {
    background: #31b5dd;
    padding: 12px 22px;
    border-radius: 5px;
    color: white;
}

.btn-outline {
    border: 2px solid #31b5dd;
    padding: 12px 22px;
    border-radius: 5px;
    color: #ffffff;
}

/* STATS */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 20px;
    background: #ebe8e3;
}

.stats-box {
    text-align: center;
}

.stats-box h2 {
    color: #00baba;
}

/* WHY CHOOSE US */
.choose {
    text-align: center;
    padding: 70px 20px;
}

.choose span {
    color: #00baba;
}

.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    width: 23%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
    text-align: left;
}

/* CTA */
.cta {
    background: linear-gradient(90deg, #9ed3ff, #a5dbff);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta button {
    margin-top: 20px;
    background: #fff;
    color: #02baba;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* REVIEWS */
.reviews {
    padding: 70px 20px;
    text-align: center;
}

.review-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.review-box {
    width: 30%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
    text-align: left;
    font-size: 14px;
}

/* FOOTER */
footer {
    background: #0a2b33;
    color: white;
    padding: 60px;
    margin-top: 50px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 6px 0;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

/* Tablets - 992px */
@media (max-width: 992px) {

    nav ul {
        gap: 20px;
    }

    .features {
        flex-wrap: wrap;
    }

    .feature-box {
        width: 45%;
    }

    .review-grid {
        flex-wrap: wrap;
    }

    .review-box {
        width: 45%;
    }

    .stats {
        gap: 40px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {

    nav {
        padding: 10px 20px;
    }

    nav ul {
        display: none; /* Remove menu for now */
    }

    .nav-btns {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        width: 90%;
    }

    .review-grid {
        flex-direction: column;
        align-items: center;
    }

    .review-box {
        width: 90%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    footer {
        padding: 40px 20px;
    }
}

/* Very Small Screens - 480px */
@media (max-width: 480px) {

    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .btn-main, 
    .btn-outline {
        padding: 10px 15px;
    }

    .feature-box, 
    .review-box {
        width: 100%;
        padding: 20px;
    }

    .cta button {
        width: 100%;
    }

    footer {
        padding: 30px 15px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    
    position: sticky;
    top: 0;
    z-index: 10;
    
    
}

.logo {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    background: #02c7c7;
    padding: 6px 10px;
    border-radius: 50%;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    
}

header{
  width:100%;
  padding:18px 45px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  border-bottom:1px solid #eee;
}

.logo{
  font-size:22px;
  font-weight:700;
}
.logo span{ color:#ff6a00; }

nav a{
  margin:0 7px;
  color:#555;
  text-decoration:none;
  font-weight:500;
}
nav a.active{ color:#2f6be0; }

.header-right a {
  padding: 8px 12px;
  border-radius: 6px;
  margin-left: 10px;
  font-size: 14px;
  text-decoration: none !important;
  color: #333;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}

.header-right a:hover {
  background: #f7f7f7;
}

/* WhatsApp Button */
.header-right .whatsapp {
  color: white;
  background: #25D366 !important;
  border: none !important;
}

.header-right .whatsapp:hover {
  opacity: 0.85;
}

/* Get Free Audit — Gradient button (Same as homepage) */
.header-right .cta {
  color: white !important;
  border: none !important;
  background: linear-gradient(to right, #557bff, #9c4bff) !important;
}

.header-right .cta:hover {
  opacity: 0.9;
}

/* ===========================
   RESPONSIVE FIXES ONLY
   =========================== */

/* Tablets & small laptops */
@media (max-width: 1024px) {

  header {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    margin-left: 0 !important;
  }

  .navbar {
    gap: 1.5rem;
  }

  .hero {
    padding: 4rem 2rem;
    text-align: center;
  }

  .stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .features,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer p {
    margin-left: 0 !important;
    text-align: center;
  }
}


/* Mobile devices */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: center;
  }

  .logo1 {
    margin-left: 0 !important;
    text-align: left;
  }

  nav {
    width: 100%;
    margin: 1rem 0 !important;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .header-right {
    margin: 1rem 0 !important;
  }

  .hero h1 {
    font-size: 2.2rem !important;
  }

  .hero p {
    font-size: 1.1rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .stats {
    flex-direction: column;
  }

  .features,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer p {
    margin: 1rem 0 !important;
  }
}


/* Very small screens */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.9rem !important;
  }

  .choose h1 {
    font-size: 2.2rem !important;
  }

  .cta h1 {
    font-size: 2rem;
  }

  .stats-box h1 {
    font-size: 2.2rem;
  }
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
}

/* Desktop nav & header-right default styles remain intact */

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* Header flex layout */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 7rem;
    position: relative;
  }

  /* Logo left */
  .logo {
    margin-left: 0 !important;
  }

  /* Hamburger visible right */
  .hamburger {
    display: block;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    margin-top: 2rem;
  }

  /* Hide desktop navbar & buttons */
  nav,
  .header-right {
    display: none;
  }

  /* Mobile nav overlay */
  nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    padding-top: 7rem; /* header height */
    overflow-y: auto;
  }

  /* Vertical navbar */
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navbar li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .navbar li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
  }

  /* Disable background scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }
}

/* ===== HAMBURGER DEFAULT ===== */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
  }

  /* NAV HIDDEN */
  #mobileNav {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    background: #fff;
    width: 220px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    
  }

  /* NAV OPEN */
  #mobileNav.active {
    display: block;
  }

  /* MENU ITEMS */
  #mobileNav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  #mobileNav ul a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
  }

  /* HAMBURGER SHOW */
  .hamburger {
    display: block;
  }

  /* DESKTOP ITEMS HIDE */
  .header-right {
    display: none;
  }

  .logo1 {
    margin-left: 0 !important;
  }
}





.services-section {
  background: linear-gradient(180deg, #90d6ff, #e4eefc);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.services-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.services-desc {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  font-size: 1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: white;
  color: #000;
  padding: 3.5rem 2rem 2.5rem;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.icon-circle {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: #ffa726;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 2.2rem;
  }
}



.blog-section {
  background: #fef4ff;
  padding: 6rem 2rem;
  text-align: center;
}

.blog-top {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1b63d1;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin: 1rem 0 0.5rem;
  color: #0a0a2a;
}

.blog-sub {
  font-size: 1rem;
  margin-bottom: 4rem;
  color: #000;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blue-bg {
  height: 220px;
  background: linear-gradient(180deg, #0b3d91, #0a2c6f);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.blue-bg h4 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.5;
}

.blue-bg span {
  color: #ff9c2a;
}

.blog-content {
  padding: 1.8rem;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #0b3d91;
}

.blog-date {
  font-size: 0.85rem;
  color: #ff9c2a;
  display: block;
  margin-bottom: 0.8rem;
}

.blog-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #000;
}

.blog-content a {
  font-size: 0.95rem;
  color: #0b3d91;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.more-text {
  display: none;
}

.blog-card.expanded .more-text {
  display: inline;
}








/* HERO FIX */
.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero-text {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 900px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
/* IMAGE + TEXT SECTION FIX */
@media (max-width: 992px) {
  section > div img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: 90% !important;
    height: auto !important;
  }

  section > div[style*="margin-left: 60rem"] {
    margin-left: auto !important;
    margin-top: 2rem !important;
    padding: 0 1rem;
    font-size: 1rem !important;
  }
}
footer p {
  text-align: left;
}

@media (max-width: 768px) {
  footer p[style*="margin-left"] {
    margin-left: 0 !important;
    margin-top: 1rem !important;
    text-align: center;
  }
}



/* ===== NAVBAR LINK HOVER EFFECT (NO SIZE CHANGE) ===== */

.navbar li a,
.navbar a,
.header-right a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Text color change on hover */
.navbar li a:hover,
.navbar a:hover {
  color: rgb(0, 184, 197);
}

/* Underline animation */
.navbar li a::after,
.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background-color: rgb(0, 184, 197);
  transition: width 0.3s ease;
}

/* Animate underline on hover */
.navbar li a:hover::after,
.navbar a:hover::after {
  width: 100%;
}

/* Active page underline always visible */
.navbar li a.active::after {
  width: 100%;
}

/* ===== Header Right Buttons ===== */

.header-right a {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Login hover */
.header-right a:hover {
  color: rgb(0, 184, 197);
}

/* Get Started button hover (no size change) */
.header-right a.yeah:hover {
  background-color: rgb(0, 150, 160);
  color: #fff;
}


/* ===== CONTINUOUS 350° ROTATION FOR CUSTOM IMAGE ===== */

.spin-logo {
  animation: spin350 4s linear infinite;
  animation: spin350 8s linear infinite;

}

@keyframes spin350 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(350deg);
  }
}







/* SERVICES DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;   /* 👈 thoda niche */
  left: 0;
  background: white;
  min-width: 240px;

  display: flex;
  flex-direction: column;   /* 👈 proper vertical */

  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  border-radius: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  padding: 14px 20px;   /* 👈 vertical height badhayi */
  font-size: 1.05rem;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #eee;  /* 👈 clean separation */
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: rgb(0, 184, 197);
  color: white;
}

/* Hover slide-down */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
