.header-logo {
    display: inline-flex;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;
    box-shadow: 0 0 25px 5px rgba(0, 123, 255, 0.35);


    transition: all 0.35s ease;
}

.header-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;

    border-radius: 50%;
    transition: all 0.35s ease;

}


/* 🔥 Hover → Green */

.header-logo:hover {
    background: #e9fdf1;
    /* light green bg */

    box-shadow: 0 0 25px 5px rgba(40, 167, 69, 0.45);
    transform: translateY(1px) scale(1.05);
}

.header-logo:hover img {
    transform: scale(1.1);
}


.footer-widget-wrapper-3 .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* sab sections ke beech equal spacing */
}

.head-logo {
    display: inline-flex;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;
    box-shadow: 0 0 25px 5px rgba(0, 123, 255, 0.35);


    transition: all 0.35s ease;
}

.head-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    /* logo distort nahi hoga */
    border-radius: 50%;
    transition: all 0.35s ease;

}


/* 🔥 Hover → Green */

.head-logo:hover {
    background: #e9fdf1;
    /* light green bg */

    box-shadow: 0 0 25px 5px rgba(40, 167, 69, 0.45);
    transform: translateY(1px) scale(1.05);
}

.head-logo:hover img {
    transform: scale(1.1);
}


.footer-bottom-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom-wrapper p {
    margin: 0;
}

.footer-bottom-wrapper a {
    color: #eddd5e;
    /* yellow color */
    font-weight: 500;
    transition: color 0.3s ease;


    body {
        text-align: justify;
        text-justify: inter-word;
    }


    .main-menu nav ul,
    .main-menu nav ul li a {
        text-align: left;
    }
}

.footer-bottom-wrapper a:hover {
    color: #eddd5e;
    /* light yellow on hover */
}

@media (max-width: 768px) {
    .footer-bottom-wrapper {
        padding: 10px 0;
    }
}

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

.footer-bottom-wrapper p {
    text-align: center;
    margin: 0 auto;
}

.header__hamburger {
    display: none;
}

@media (max-width: 991px) {
    .header__hamburger {
        display: block;
    }
}

@media (max-width: 575px) {
    .header__hamburger {
        display: block;
    }
}

.choose-left-img img {
    height: 500px;

    width: 100%;
    object-fit: cover;

}

/* Card same height */
.service-box-items-3 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Content ko stretch karo */
.service-box-items-3 .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Button hamesha bottom me rahe */
.service-box-items-3 .link-btn {
    margin-top: auto;
}


/* ===============================
   BENEFITS SECTION
================================ */
.benefits {
    position: relative;
    overflow: hidden;
}

/* Section title */
.benefits .section-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3a7d44;
    font-weight: 600;
}

.benefits .section-title h2 {
    font-weight: 700;
    color: #1b4332;
    margin-top: 10px;
}

/* ===============================
   BENEFIT CARD
================================ */
.benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    height: 100%;
}

/* Hover effect */
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ===============================
   ICON
================================ */
.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6fbf8f, #2e7d32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Different colors per card */
.col-md-4:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #6fbf8f, #40916c);
}

.col-md-4:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #74c0fc, #228be6);
}

.col-md-4:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #ffd43b, #f59f00);
}

.col-md-4:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #69db7c, #37b24d);
}

.col-md-4:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #4dabf7, #1864ab);
}

.col-md-4:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #ff8787, #c92a2a);
}

/* ===============================
   TEXT
================================ */
.benefit-title {
    font-weight: 600;
    color: #1b4332;
}

.benefit-desc {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
}

/* ===============================
   ANIMATION
================================ */
.benefit-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.col-md-4:nth-child(1) .benefit-card {
    animation-delay: 0.1s;
}

.col-md-4:nth-child(2) .benefit-card {
    animation-delay: 0.2s;
}

.col-md-4:nth-child(3) .benefit-card {
    animation-delay: 0.3s;
}

.col-md-4:nth-child(4) .benefit-card {
    animation-delay: 0.4s;
}

.col-md-4:nth-child(5) .benefit-card {
    animation-delay: 0.5s;
}

.col-md-4:nth-child(6) .benefit-card {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 767px) {
    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* Initial hidden state */
.benefit-card {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    animation: benefitFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Stagger effect */
.col-md-4:nth-child(1) .benefit-card {
    animation-delay: 0.1s;
}

.col-md-4:nth-child(2) .benefit-card {
    animation-delay: 0.2s;
}

.col-md-4:nth-child(3) .benefit-card {
    animation-delay: 0.3s;
}

.col-md-4:nth-child(4) .benefit-card {
    animation-delay: 0.4s;
}

.col-md-4:nth-child(5) .benefit-card {
    animation-delay: 0.5s;
}

.col-md-4:nth-child(6) .benefit-card {
    animation-delay: 0.6s;
}

@keyframes benefitFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.benefit-card h5,
.benefit-card p {
    transition: transform 0.35s ease;
}

.benefit-card:hover h5 {
    transform: translateY(-2px);
}

.benefit-card:hover p {
    transform: translateY(-1px);
}

.benefit-icon {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(6deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Background + Container */
.global-presence-section {
    position: relative;
    padding: 60px 20px;

    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
}

.global-presence-section {
    background: url('../img/home-3/gallery/photo7.jpeg')
 no-repeat center center/cover;
}


/* Dark overlay for contrast */
.global-presence-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* Heading style */
.global-presence-section h1 {
    position: relative;
    font-weight: 900;
    font-size: 4.8rem;
    max-width: 900px;
    margin: 0 auto 50px;
    z-index: 1;
    color: transparent;
    background: linear-gradient(90deg, #b6d4b7, #2c7a2c);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Stats Grid */
.global-presence-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1150px;
    margin: 0 auto;
    z-index: 1;
}

/* Card style */
.global-presence-card {
    background: rgba(255 255 255 / 0.13);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    color: white;
}

/* Hover effect */
.global-presence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

/* Number */
.global-presence-card .number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

/* Description */
.global-presence-card .description {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .global-presence-section h1 {
        font-size: 3.5rem;
    }

    .global-presence-stats {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .global-presence-stats {
        grid-template-columns: 1fr;
    }
}

.global-presence-card h5 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #28a745, #85e085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.news-card {
    min-width: 240px;
    /* width */
    max-width: 240px;

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.9rem;
    overflow: hidden;
    height: 320px;

    display: flex;
    flex-direction: column;
}

.news-thumb img {
    width: 100%;
    height: 150px;

    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.news-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.news-content h3 {
    font-size: 1rem;
    margin: 5px 0;
    line-height: 1.2em;
}

.news-content p {
    font-size: 0.85rem;
    flex-grow: 1;
    margin-bottom: 10px;
}

.news-content .link-btn {
    font-size: 0.85rem;
    text-decoration: none;
    color: #2c7a7b;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Desktop: 4 cards per row */
    gap: 35px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.news-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.news-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 {
    font-size: 1rem;
    margin: 10px 0;
    color: #2c7a7b;
}

.news-content p {
    font-size: 0.85rem;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #2c7a7b;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    text-align: center;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #1a4f51;
}

/* Responsive */
@media(max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card-item .gallery-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.gallery-card-item .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.video-grid-section {
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 10px;
}

.video-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.video-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-box:hover img {
    transform: scale(1.05);
}

/* Play Button */
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
}

.video-play:hover {
    background: #2b4eff;
    transform: translate(-50%, -50%) scale(1.1);
}




.service-details {
    padding: 50px 0;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1370px;
    margin: auto;
    padding: 0 20px;
}

/* Top Banner Image */
.service-details__img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-details__img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-details__img:hover img {
    transform: scale(1.05);
}

/* Main Content Card */
.service-details__content {
    background: #ffffff;
    padding: 60px;
    border-radius: 14px;

}

/* Title */
.service-details__title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

/* Intro */
.service-details__intro {
    font-size: 19px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 850px;
}

/* Blocks */
.service-details__block {
    margin-bottom: 45px;
}

.service-details__block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #020617;
    margin-bottom: 14px;
    position: relative;
    padding-left: 14px;
}

.service-details__block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: #2563eb;
    border-radius: 2px;
}

.service-details__block p {
    font-size: 16.5px;
    color: #475569;
    line-height: 1.75;
}

/* Lists */
.service-details__list,
.service-details__block ul {
    padding-left: 22px;
    margin-top: 12px;
}

.service-details__list li,
.service-details__block ul li {
    font-size: 16.5px;
    color: #334155;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #eef6ff, #f8fbff);
    border-left: 6px solid #5b8c51;
    padding: 30px;
    border-radius: 10px;
}

.highlight-box h3 {
    color: #5b8c51;
}

/* CTA */
.service-details__cta {
    margin-top: 55px;
}



/* Responsive */
@media (max-width: 992px) {
    .service-details__img img {
        height: 340px;
    }

    .service-details__content {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .service-details {
        padding: 50px 0;
    }

    .service-details__title {
        font-size: 30px;
    }

    .service-details__intro {
        font-size: 17px;
    }

    .service-details__content {
        padding: 28px;
    }
}






/* Project Detail Section */
.project-detail-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

/* Image */
.project-detail-image {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;

}

.project-detail-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Content */
.project-detail-content {

    padding: 60px;
    border-radius: 16px;

}

.project-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.project-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 45px;
}

/* Info Grid */
.project-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.info-box {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.info-box span {
    font-size: 14px;
    color: #64748b;
}

.info-box h4 {
    margin-top: 8px;
    font-size: 18px;
    color: #0f172a;
}

/* Blocks */
.project-block {
    margin-bottom: 40px;
}

.project-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #020617;
}

.project-block p,
.project-block ul li {
    font-size: 16.5px;
    line-height: 1.7;
    color: #475569;
}

.project-block ul {
    padding-left: 20px;
}

/* Highlight */
.highlight-project {

    border-left: 6px solid #5b8c51;
    padding: 30px;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .project-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-detail-content {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .project-info-grid {
        grid-template-columns: 1fr;
    }

    .project-title {
        font-size: 30px;
    }

    .project-detail-image img {
        height: 300px;
    }
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 80px 0;

}

/* Blog Image */
.blog-detail-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;

}

.blog-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Content */
.blog-detail-content {
    background: #fff;
    padding: 50px;
    border-radius: 16px;

}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.blog-meta {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

.blog-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 35px;
}

.blog-block {
    margin-bottom: 35px;
}

.blog-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #020617;
}

.blog-block p,
.blog-block ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.blog-block ul {
    padding-left: 20px;
}

.highlight-blog {
    background: linear-gradient(135deg, #fff7ed, #fffbf0);
    border-left: 6px solid #5b8c51;
    padding: 25px;
    border-radius: 12px;
}

/* Social Share */
.blog-share {
    margin-top: 30px;
    font-size: 16px;
    color: #475569;
}

.blog-share a {
    margin-left: 15px;
    color: #5b8c51;
    font-size: 18px;
    transition: 0.3s;
}

.blog-share a:hover {
    color: #5b8c51
}

/* Responsive */
@media (max-width: 992px) {
    .blog-detail-content {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .blog-detail-image img {
        height: 250px;
    }

    .blog-title {
        font-size: 28px;
    }
}



.service-box-items-4 .thumb {
    width: 100%;

    height: 350px;

    overflow: hidden;

}

.service-box-items-4 .thumb img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.news-right-box .news-thumb {
    width: 100%;
    height: 220px;

    overflow: hidden;
}

.news-right-box .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}

.testimonial-box-items-3 .client-image {
    width: 70px;          /* size adjust kar sakte ho */
    height: 70px;
    border-radius: 50%;   /* circle banane ke liye */
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-box-items-3 .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* face stretch nahi hoga */
    display: block;
}
   .contact-image {
  width: 100%;
  height: 100%;
  ; /* adjust as needed */
  
}

.contact-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* image distort nahi hogi */
}
 

.crops-support {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: 'Segoe UI', sans-serif;
}

.crops-support h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

/* Cards row */
.crops-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Individual Card */
.crop-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.crop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Top Image */
.card-img {
  height: 180px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-img img:hover {
  transform: scale(1.05);
}

/* Content below image */
.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
  .crops-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .crops-cards {
    grid-template-columns: 1fr;
  }
}


/* Container for all scheme cards - flex row with wrap on smaller screens */
.scheme-cards {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}

/* Individual card styling */
.scheme-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(100, 100, 150, 0.1);
  flex: 1 1 300px; /* Grow and shrink, base width 300px */
  max-width: 350px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

/* Hover effect for subtle elevation */
.scheme-card:hover {
  box-shadow: 0 12px 24px rgba(100, 100, 150, 0.2);
  transform: translateY(-6px);
}

/* Heading inside cards */
.scheme-card h3 {
  color: #4a6cf7;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Each scheme detail row: flex for label + value */
.scheme-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

/* Labels styling */
.scheme-detail span:first-child {
  font-weight: 600;
  color: #222;
}

/* Info banner styling */
.info-banner {
  background: #f0f7ff;
  border-left: 6px solid #4a6cf7;
  padding: 16px 24px;
  margin-top: 30px;
  border-radius: 12px;
  font-size: 2rem;
  color: #2b3a67;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Strong text inside info banner */
.info-banner strong {
  color: #4a6cf7;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .scheme-card {
    max-width: 100%;
  }
}
.scheme-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(100, 100, 150, 0.1);
  flex: 1 1 380px;      /* Increased base width from 300px to 380px */
  max-width: 420px;     /* Increased max width */
  min-height: 420px;    /* Added min-height to increase height */
  padding: 32px 36px;   /* Increased padding for more inner space */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.mission-vision-section {
  padding: 70px 0;
  background: #f5f9ff;
}

/* Card design */
.mv-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(80, 95, 150, 0.1);
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(80, 95, 150, 0.2);
}

/* Icon */
.mv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #5f8f3e;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heading */
.mv-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

/* Text */
.mv-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}
    .buddhist-section {
        max-width: 1200px;
        margin: auto;
        padding: 50px 20px;
    }

    .place {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 50px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .place:hover {
        transform: translateY(-5px);
    }

    .place img {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        margin-right: 20px;
        height: 280px;
    }

    .place-text {
        flex: 1;
        min-width: 300px;
    }

    .place h2 {
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .place p {
        color: #555;
        line-height: 1.6;
    }

    /* Alternate layout for even sections */
    .place.even {
        flex-direction: row-reverse;
    }

    /* Responsive */
    @media(max-width: 768px) {
        .place {
            flex-direction: column;
            text-align: center;
        }

        .place img {
            margin: 0 0 20px 0;
        }
    }
.eg{
    font-size: 35px;
}/* Overall tab section */
#tab-1 {
    padding: 40px 20px 80px;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    font-family: 'Poppins', sans-serif;
}

/* Heading */
#tab-1 h2 {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Cards wrapper */
.scheme-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Individual card */
.scheme-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient border glow */
.scheme-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* Hover effect */
.scheme-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.scheme-card:hover::before {
    opacity: 1;
}

/* Card title */
.scheme-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

/* Detail rows */
.scheme-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 15px;
}

.scheme-detail:last-child {
    border-bottom: none;
}

/* Label */
.scheme-detail span:first-child {
    color: #64748b;
    font-weight: 500;
}

/* Value */
.scheme-detail span:last-child {
    color: #0f766e;
    font-weight: 600;
    text-align: right;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    #tab-1 h2 {
        font-size: 30px;
    }

    .scheme-card {
        padding: 22px 20px;
    }
}
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}


/* Common button */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* WhatsApp */
.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
}

/* Call */
.float-btn.call {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

/* Hover */
.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Pulse animation */
.float-btn.call {
    animation: pulse 1.8s infinite;
}




@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #2563eb;
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile spacing */
@media (max-width: 600px) {
    .floating-contact {
        left: 15px;
        bottom: 15px;
    }
}
.float-btn.call {
    margin-left: auto;
}
