/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   BODY
===================== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.6;
  padding-top: 38px; /* 🔥 top label ke liye space */
}

/* =====================
   TOP LABEL (FIXED)
===================== */
/* ================= TOP BAR / LABEL ================= */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;          /* White background */
  color: #0f6c3d;                     /* Dark green text */
  z-index: 1100;                      /* header se upar rahega */
  font-size: 0.95rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* halka shadow taake premium lage */
  border-bottom: 1px solid #e0e0e0;   /* neeche halki line */
}

/* Inner container jo scroll karega */
.top-bar-inner {
  display: inline-block;
  padding: 8px 0;
  animation: marquee 25s linear infinite;
}

/* Text aur links ka style */
.top-bar-inner span.brand,
.top-bar-inner a {
  color: #0f6c3d;                    /* Dark green text */
  text-decoration: none;
  padding: 0 12px;
}

.top-bar-inner a:hover {
  color: #00c853;                    /* Bright green on hover */
  text-decoration: underline;
}

.top-bar-inner .divider {
  color: #0f6c3d;                    /* Green divider bhi */
  padding: 0 8px;
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Marquee animation – right se left */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Seamless loop ke liye duplicate content */
.top-bar-inner::after {
  content: " • Eshaal Kashish Web & SEO • 📞 0318 6891088 • ✉️ eyshalkashish@gmail.com • ";
  display: inline;
  white-space: nowrap;
  color: #0f6c3d;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .top-bar {
    font-size: 0.9rem;
  }

  .top-bar-inner {
    animation-duration: 20s;      /* mobile pe thoda tez */
  }

  .top-bar-inner span.brand,
  .top-bar-inner a {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 0.85rem;
  }

  .top-bar-inner {
    animation-duration: 18s;
  }
}
/* HEADER */
/* ================= HEADER STYLING ================= */
.header {
    background-color: #0f6c3d;
    color: white;
    position: fixed;
    top: 40px;                    /* top-label ki height jitna (adjust kar sakti ho) */
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

/* body ko header + label ke total height jitna neeche dhakel do */
body {
    padding-top: 115px;           /* top-label (~40px) + header (75px) = ~115px, thoda adjust kar sakti ho */
    margin: 0;
}

/* nav container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Logo – ab image ke liye style (text ki jagah) */
.logo {
    display: block;
    max-width: 90px;             /* logo ka maximum size – adjust kar sakti ho (jaise 220px ya 150px) */
    height: auto;
    line-height: 0;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

/* Navigation links (desktop) */
.nav {
    display: flex;
    gap: 12px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 10px 22px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav a.active {
    background-color: white;
    color: #0f6c3d;
    font-weight: 600;
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 850px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: #0f6c3d;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        text-align: center;
        margin: 10px 30px;
        padding: 14px;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.15);
    }

    .nav a:hover {
        background-color: rgba(255, 255, 255, 0.35);
    }

    /* mobile mein logo chhota kar sakti ho */
    .logo {
        max-width: 120px;
    }

    /* mobile mein top-label chhota kar sakti ho */
    .top-label {
        font-size: 1rem;
        padding: 6px 15px;
    }
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  height: 80vh;                    /* desktop ke liye acha starting point */
  min-height: 520px;
  max-height: 780px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-attachment: fixed;
  background-color: #ffffff;       /* White background – yeh confirm rakha */
  background-image: url("hero\ pictureeeee.jpg");  /* image waisi hi */

  background-size: cover;          /* ← Yeh sabse zaroori: cover se crop guaranteed hoga */
  background-repeat: no-repeat;
  background-position: center 70%; /* ← Top se heavy crop – red mark wala poora chhup jayega */

  overflow: hidden;

  padding-top: 180px;              /* ← Ooper ka hissa kam khali rahega + text ooper aayega */
}

/* Overlay off rakha taake white background zyada saaf dikhe */
.hero::before {
  display: none;
}

/* CONTENT WRAPPER – text ko ooper laane ke liye */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 90%;
  padding: 0 20px;
  color: #000000;                  /* default text black/white bg ke liye */
  margin-top: -140px;              /* ← Yeh line sabse zaroori: poora text (heading + subheading) ooper shift */
}

/* TEXT STYLING */
.hero-text h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  margin: 0 0 18px 0;
  line-height: 1.1;
  color: #ffffff;                  /* Eshaal Kashish white */
  text-shadow: 0 2px 8px rgba(0,0,0,0.6); /* halka shadow taake white bg pe bhi clear dikhe */
}

.hero-text h1 span {
  color: #00c853;                  /* Web & SEO green */
  display: block;
  text-shadow: none;               /* glow/shadow hata diya – classic look */
}

.hero-text h3 {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 400;
  margin: 0 0 35px 0;
  color: #ffffff;                  /* Professional Websites... white */
  opacity: 1;
}

/* BUTTON – button ko ooper laane ke liye margin kam kiya */
.hero-btn {
  display: inline-block;
  padding: 15px 48px;
  background: #00c853;
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 200, 83, 0.45);
  transition: all 0.35s ease;
  
  margin-top: 10px;                /* ← Yeh change: pehle 90px tha, ab 10px – button bohot ooper aa jayega */
}

.hero-btn:hover {
  background: #009e42;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 200, 83, 0.65);
}

/* MOBILE FIX – mobile pe center rakha taake crop na ho */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 480px;
    background-position: center center;  /* mobile pe center se shuru – koi crop nahi */
    background-attachment: scroll;       /* mobile pe fixed mat rakho */
    padding-top: 100px;                  /* mobile pe thoda kam padding */
    background-size: cover;              /* mobile pe cover better dikhta hai */
  }

  .hero-container {
    padding: 0 18px;
    margin-top: 0;                       /* mobile pe margin mat do */
  }

  .hero-text h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .hero-text h3 {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-btn {
    padding: 14px 42px;
    font-size: 1.05rem;
    margin-top: 70px;              /* mobile pe margin kam kiya taake acha fit ho */
  }
}

@media (max-width: 480px) {
  .hero {
    height: 65vh;
    background-position: center center;  /* chhote phones pe center */
    padding-top: 90px;
  }

  .hero-btn {
    margin-top: 60px;
  }
}
/* Our Services heading section (hero ke baad) */
.services-heading-section {
  padding: 60px 20px 40px;         /* upar-neeche space */
  text-align: center;
  background-color: #f8fbff;       /* bohot halka blue-white (optional, agar pure white chahiye to #ffffff kar dena) */
}

/* Our Services text – black, bold, light sky blue label */
.services-heading {
  display: inline-block;
  background-color: #a1d4ff;       /* light sky blue */
  color: #000000;                  /* black text */
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);  /* bada size, mobile pe adjust hota rahe */
  font-weight: 900;                /* bohot bold / mota */
  padding: 16px 60px;              /* andar space taake label acha dikhe */
  border-radius: 16px;             /* rounded corners */
  box-shadow: 0 6px 20px rgba(161, 212, 255, 0.4);  /* halka glow/shadow blue ke saath */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

/* Mobile pe size adjust */
@media (max-width: 768px) {
  .services-heading-section {
    padding: 50px 15px 30px;
  }

  .services-heading {
    font-size: clamp(2rem, 7vw, 3.2rem);
    padding: 14px 50px;
  }
}

@media (max-width: 480px) {
  .services-heading {
    padding: 12px 40px;
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
}
/* HOME CARDS SECTION - 3 CARDS ROW (Updated with big images like projects) */
.cards-section {
  padding: 50px 20px;
  background-color: #f8f9fa; /* section ka light bg same rakha */
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px; /* cards ke beech zyada space for better look */
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: white !important; /* confirmed white bg */
  width: 340px;          /* width increased */
  min-height: 580px;     /* height thodi zyada ki taake bari image fit ho jaye */
  padding: 0;            /* padding hata diya taake image top pe full lage */
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* soft shadow */
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;      /* image card ke bahar na nikle */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(-40px);
}

.card.visible {
  opacity: 1;
  transform: translateX(0);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(15, 157, 88, 0.18);
}

/* Big Project-style Image */
.card-image {
  width: 100%;
  height: 260px;         /* bilkul projects cards jaisi bari height */
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.08);
}

/* Card Content (text waghera) */
.card-content {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h2 {
  color: #0f9d58;         /* dark green – match your theme */
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}

.card h3 {
  color: #000;
  font-size: 20px;
  margin-bottom: 12px;
}

.card h4 {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.card .price {
  color: #0f9d58;
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 25px;
}

.badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.badge {
  background-color: #e8f5e9;
  color: #0f9d58;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #c8e6c9;
}

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.tags span {
  background-color: #0f9d58;
  color: white;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.features {
  list-style-type: none;
  text-align: left;
  margin: 0 0 30px;
  padding-left: 0;
}

.features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
}

.features li::before {
  content: "✔";
  color: #0f9d58;
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1.4;
}

.btn {
  background-color: #0f9d58;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-top: auto;       /* button ko card ke bottom pe push karta hai */
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #0b6e3f;
  transform: translateY(-3px);
}

/* Mobile responsive */
@media (max-width: 992px) {
  .cards-container {
    gap: 25px;
  }
  
  .card {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  
  .card-image {
    height: 220px;  /* mobile pe thodi chhoti taake acha lage */
  }
}
/* Scroll Animation for Home Cards */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card {
  animation: slideInFromLeft 0.8s forwards;
  animation-delay: calc(var(--order) * 200ms);
}
/* ABOUT PAGE - FULL WHITE BACKGROUND */
/* ABOUT PAGE - FULL WHITE BACKGROUND */
.about-page {
  padding: 140px 8% 120px;
  background: #ffffff;
  min-height: 100vh;
}

/* Main Heading - Bold Black */
.about-main-heading {
  color: #000000;
  font-size: 3.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

/* Intro Paragraph */
.about-intro {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-weight: 400;
}

/* Image Left + Text Right Row */
.about-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Left Image - Now 1:1 Square but height thoda zyada */
.about-image {
  flex: 0 0 380px;           /* width same rakhi */
}

.profile-img {
  width: 100%;
  height: 420px;             /* ← height bara kar diya (pehle 380px tha) */
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid #e6f3ff;
  box-shadow: 0 12px 40px rgba(15, 157, 88, 0.22);
}

/* Right Text */
.about-right-text {
  flex: 1;
  max-width: 600px;
}

.about-brand-title {
  color: #0f9d58;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.about-detail {
  color: #000000;
  font-size: 1.15rem;
  line-height: 1.9;
  margin: 0;
}

/* Buttons Row */
.about-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 60px 0 100px;
}

.about-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #0f9d58;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(15,157,88,0.25);
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(15,157,88,0.4);
  background: #0b6e3f;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #20b358;
}

/* Section Title */
.section-title {
  color: #0f9d58;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 80px 0 60px;
}

/* Grid for Expertise Cards (4 columns on PC) */
.grid.expertise-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Grid for Why Choose Us Cards (3 columns on PC) */
.grid.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Style – Light Blue */
.card {
  background: #e6f3ff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 1px solid #b3d9ff;
  transition: all 0.4s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.18);
  border-color: #4dabf7;
}

.card-icon {
  font-size: 3.5rem;
  color: #0f9d58;
  margin-bottom: 25px;
  display: block;
}

.card h3 {
  color: #000000;
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.card p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
  .about-info-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .about-image {
    flex: 0 0 360px;
  }

  .grid.expertise-grid,
  .grid.why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-page {
    padding: 120px 6% 80px;
  }

  .profile-img {
    height: 480px;          /* responsive height */
  }

  .about-main-heading {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about-buttons {
    flex-direction: column;
    gap: 18px;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }

  .profile-img {
    width: 320px;
    height: 480px;
  }

  .grid.expertise-grid,
  .grid.why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .profile-img {
    width: 280px;
    height: 480px;
  }
}
/* ================= PROJECTS MAIN SECTION ================= */
.projects-section {
  padding: 100px 5% 120px;
  background: #ffffff;
}

.projects-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* Main Title */
.projects-main-title {
  text-align: center;
  color: #0f9d58;
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 20px;
}

/* Intro Paragraph */
.projects-intro {
  text-align: center;
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Cards Grid */
.projects-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);        /* 4 columns on desktop */
  gap: 30px;
}

.project-card {
  background: #e6f3ff;                          /* light blue background */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-40px);
}

.project-card.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effect */
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.18);
}

/* Project Image – Bigger than home cards */
.project-img {
  width: 100%;
  height: 260px;                               /* 30-35% bigger than normal cards */
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.08);
}

/* Card Content */
.project-card h3 {
  color: #000000;
  font-size: 1.6rem;
  margin: 20px 25px 12px;
  font-weight: 700;
}

.project-card p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 25px 20px;
  min-height: 80px;
}

/* Tech Tags (small green buttons) */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 25px 25px;
}

.tech-tags span {
  background: #0f9d58;
  color: white;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Features List */
.features {
  margin: 0 25px 30px;
}

.features h4 {
  color: #0f9d58;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #333;
  font-size: 1.02rem;
}

.features li::before {
  content: "✔";
  color: #0f9d58;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  line-height: 1.4;
}

/* Final Button */
.project-final-btn {
  display: block;
  margin: 0 25px 30px;
  padding: 14px 32px;
  background: #0f9d58;
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-final-btn:hover {
  background: #0b6e3f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15,157,88,0.35);
}

/* Scroll Animation */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.project-card {
  animation: slideInFromLeft 0.8s forwards;
  animation-delay: calc(var(--order) * 150ms);
}

/* Responsive */
@media (max-width: 1200px) {
  .projects-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .projects-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .projects-cards {
    grid-template-columns: 1fr;
  }
  
  .project-img {
    height: 220px;
  }
  
  .projects-main-title {
    font-size: 2.3rem;
  }
  
  .projects-intro {
    font-size: 1.1rem;
  }
}
/* ================= PRICING SECTION ================= */
.pricing-section {
  padding: 100px 5% 120px;
  background: #ffffff;
}

.pricing-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Main Heading */
.pricing-main-title {
  text-align: center;
  color: #000000;
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 20px;
}

/* Intro Paragraph */
.pricing-intro {
  text-align: center;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Green Sub Heading */
.pricing-sub-title {
  text-align: center;
  color: #0f9d58;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 60px;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background: #e6f3ff;                    /* light blue */
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-40px);
}

.price-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(15, 157, 88, 0.2);
}

/* Plan Name */
.plan-name {
  color: #0f9d58;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px;
}

/* Delivery Info */
.plan-delivery {
  color: #333;
  font-size: 1.1rem;
  margin: 0 0 20px;
}

/* Price */
.plan-price {
  color: #0f9d58;
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 30px;
}

/* Features List */
.features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  text-align: left;
}

.features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #333;
  font-size: 1.05rem;
}

.features li i {
  color: #0f9d58;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Contact Button */
.price-contact-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 40px;
  background: #0f9d58;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(15,157,88,0.3);
}

.price-contact-btn:hover {
  background: #0b6e3f;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(15,157,88,0.45);
}

/* Scroll Animation */
@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.price-card {
  animation: slideInFromLeft 0.8s forwards;
  animation-delay: calc(var(--order) * 200ms);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-main-title {
    font-size: 2.2rem;
  }

  .pricing-sub-title {
    font-size: 1.9rem;
  }

  .plan-price {
    font-size: 2.4rem;
  }
}
/* CONTACT SECTION */
.contact {
  padding: 120px 5% 100px;
  background: #f8fffb; /* light green-white */
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left - Contact Info */
.contact-info h2 {
  color: #0f9d58;
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-info ul {
  list-style: none;
}

.contact-info ul li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
}

.contact-info ul li strong {
  color: #0f9d58;
}

/* Right - Contact Card */
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 10px 40px rgba(15, 157, 88, 0.12);
  border: 1px solid #e8f5e9;
  text-align: center;
  transition: all 0.4s ease;
  height: fit-content; /* height auto rahegi content ke mutabiq */
  max-width: 480px;    /* width ko control kiya */
  margin: 0 auto;      /* center mein rakha */
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(15, 157, 88, 0.25);
}

.contact-card h3 {
  font-size: 2.1rem;
  color: #0f9d58;
  margin-bottom: 18px;
}

.contact-card p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* WhatsApp Button inside Card */
.contact-btn {
  display: inline-block;
  padding: 14px 42px;
  background: #0f9d58;
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(15, 157, 88, 0.4);
  transition: all 0.35s ease;
}

.contact-btn:hover {
  background: #0b6e3f;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(15, 157, 88, 0.55);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .contact-card {
    max-width: 100%;
    padding: 40px 30px;
  }

  .contact-info h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 80px 6% 60px;
  }

  .contact-card {
    padding: 35px 25px;
  }

  .contact-btn {
    padding: 12px 35px;
    font-size: 1.05rem;
  }
}

/* WHATSAPP FLOAT */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
  background: #20b358;
}

.whatsapp-float img {
  width: 38px;
  height: 38px;
  transition: all 0.3s ease;
}

.whatsapp-float:hover img {
  transform: rotate(12deg);
}

/* Pulse Animation */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: whatsappPulse 2s infinite;
}

/* FOOTER */
/* FOOTER - DARK GREEN BACKGROUND */
.footer {
  background: #0a3d1f;              /* dark green */
  color: #e8fff0;
  padding: 80px 8% 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, transparent, #0f9d58, transparent);
  transform: translateX(-50%);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-brand h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-brand h2 span {
  color: #0f9d58;
}

.footer-brand p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #0f9d58;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  color: #d0f0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-links ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-contact .contact-details {
  list-style: none;
}

.footer-contact .contact-details li {
  margin-bottom: 18px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact .contact-details .icon {
  font-size: 1.4rem;
  color: #0f9d58;
  min-width: 28px;
}

.footer-contact .contact-details a {
  color: #d0f0e0;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-contact .contact-details a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(15,157,88,0.25);
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #a0d0b8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 60px 6% 30px;
  }
  .footer-brand h2 {
    font-size: 1.8rem;
  }
}