
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

body{
    background:#fff;
    overflow-x:hidden;
}
/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #fff;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* ===== LOGO IMAGE ===== */
.navbar .logo img {
  height:100%;          /* navbar height ke hisaab se */
  max-width: 240px;     /* width ko limit */
  width: auto;
  
  display: block;
  object-fit: contain;
}

.navbar .logo {
   display: flex;
  align-items: center;
  height: 100%;
  /* max-width: 200px; */
}


/* body offset */
body {
  padding-top: 64px;
}

/* ===== LOGO ===== */
.footer-logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-logo span {
  width: 34px;
  height: 34px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* align-items: center; */
  margin-right: 8px;
  font-size: 16px;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-links a:hover::after {
  width: 100%;
}

/* .nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
} */

/* ===== BUTTON ===== */
.desktop-btn {
  margin-left: 20px;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .desktop-btn {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  /* hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .navbar .logo img {
    height: 100%;
    max-width: 200px;
  }

  .footer-logo {
    flex-direction: column;    /* upar logo, niche text */
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-logo span {
    margin-right: 0;
    margin-bottom: 6px;        /* logo aur text ke beech gap */
  }

}

  




/* ================= HERO ================= */
.hero{
    width:100%;
    padding:60px 5%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    background:linear-gradient(120deg,#eef6ff,#eafff4);
}

.badge{
    display:inline-block;
    padding:6px 14px;
    background:#e0edff;
    color:#2563eb;
    font-size:13px;
    border-radius:20px;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-left h1 span{
    color:#2563eb;
}

.hero-left p{
    color:#555;
    line-height:1.6;
    margin-bottom:30px;
    max-width:520px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-outline{
    padding:10px 20px;
    border:2px solid #2563eb;
    color:#2563eb;
    border-radius:22px;
    text-decoration:none;
    font-weight:600;
}

/* ================= STATS ================= */
.stats{
    display:flex;
    gap:30px;
    margin-top:35px;
    flex-wrap:wrap;
}

.stat h3{
    color:#2563eb;
    font-size:22px;
    font-weight:700;
}

.stat p{
    font-size:13px;
    color:#666;
}

/* ================= HERO RIGHT ================= */
.hero-right{
    position:relative;
    width:100%;
}

.hero-right img{
    width:100%;
    max-width:420px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.pickup-card{
    position:absolute;
    bottom:-18px;
    left:20px;
    background:#fff;
    padding:12px 16px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.pickup-icon{
    width:38px;
    height:38px;
    background:#d1fae5;
    color:#059669;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ================= TABLET ================= */
@media(max-width:992px){
    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-left p{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .stats{
        justify-content:center;
    }

    .pickup-card{
        left:50%;
        transform:translateX(-50%);
    }
}

/* ================= MOBILE ================= */
@media(max-width:600px){
    

    .hero-left h1{
        font-size:34px;
    }

    .hero{
        padding:40px 6%;
    }

    .stats{
        gap:20px;
    }
}



/* scrolling smooth  */
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.7s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ===== LOADER ===== */
#loader{
    position:fixed;
    inset:0;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10000;
}

.spinner{
    width:45px;
    height:45px;
    border:4px solid #e5e7eb;
    border-top:4px solid #2563eb;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{ transform:rotate(360deg); }
}







/* ================= SERVICES ================= */
.services{
    padding:90px 5%;
    background:#ffffff;
    text-align:center;
}

.services-header h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.services-header p{
    color:#666;
    font-size:15px;
    margin-bottom:50px;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1100px;
    margin:0 auto;
}

/* CARD */
.service-card{
    background:#fff;
    padding:30px 26px;
    border-radius:14px;
    text-align:left;
    border:1px solid #eef2f7;
    transition:0.3s ease;
}

.service-card:hover{
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    transform:translateY(-6px);
}

.icon-box{
    width:48px;
    height:48px;
    background:#e0edff;
    color:#2563eb;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}

.service-card h3{
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
}

.service-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:18px;
}

.service-card a{
    color:#2563eb;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
}

/* BUTTON */
.services-btn{
    margin-top:45px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .services-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .services{
        padding:70px 6%;
    }

    .services-header h2{
        font-size:26px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        text-align:center;
    }

    .icon-box{
        margin-left:auto;
        margin-right:auto;
    }
}

.why-choose {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.icon {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.icon.green {
  background: #d1fae5;
  color: #059669;
}

.icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.icon.yellow {
  background: #fef3c7;
  color: #d97706;
}

/* 2nd last  */

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  text-align: center;
  color: #fff;
}

.cta-content {
  max-width: 900px;
  margin: auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #fff;
  color: #2563eb;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #10b981;
}
@media (max-width: 600px) {
  .cta-content h2 {
    font-size: 26px;
  }
}
/* footer  */
.footer {
  background: linear-gradient(135deg, #0b132b, #1c2541);
  color: #cfd8dc;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Brand */
.logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.logo-circle {
  background: #00b4d8;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cfd8dc;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00b4d8;
}

/* Contact */
.contact-info li {
  display: flex;
  gap: 8px;
}

/* Social */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #00b4d8;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
  .contact-info li {
    justify-content: center;
    align-items: center;
  }
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1e4fd6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Desktop only */
.desktop-btn {
  margin-left: 20px;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .desktop-btn {
    display: none;
  }
}
