body{
    font-family:'Poppins', sans-serif;
    background:#f8f9fa;
}

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}


/* ================= GLOBAL MAIN HEADING ================= */

.main-page-heading{
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );
}

.main-page-heading-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    text-align: center;
}

.main-page-heading h1{
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 200;
    line-height: 1.15;

    margin: 0;

    letter-spacing: -.5px;

    background: linear-gradient(
        90deg,
        #1b5e20,
        #2e7d32,
        #1976d2
    );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    text-transform: capitalize;
}

.heading-mini-line{
    width: 90px;
    height: 4px;
    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #4CAF50,
        #1976d2
    );

    position: relative;
}

.heading-mini-line::before{
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #fff;
    border: 3px solid #f4b400;

    transform: translate(-50%, -50%);
}


/* subtle floating glow */

.main-page-heading::before{
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(76,175,80,.06);

    top: -120px;
    left: -80px;

    filter: blur(10px);
}

.main-page-heading::after{
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(25,118,210,.06);

    bottom: -120px;
    right: -80px;

    filter: blur(10px);
}


/* ================= MOBILE ================= */

@media(max-width:768px){

    .main-page-heading{
        padding: 30px 0 15px;
    }

    .main-page-heading-inner{
        gap: 14px;
    }

    .heading-mini-line{
        width: 55px;
    }

    .main-page-heading h1{
        line-height: 1.25;
    }
}


/* =========================================================
   GLOBAL SECTION SPACING
========================================================= */

.hero-section{
    padding:0;
}

.service-section{
    padding: 75px 0;
    background: linear-gradient(135deg, #f0faf2 0%, #e8f5e9 100%);
}

/* Service section heading overrides */
.service-section .section-heading h2 {
    color: #1b5e20;
}

.service-section .section-heading h2::after {
    background: #2e7d32;
}

.service-section .section-subtitle {
    color: #2e7d32;
}

.service-section .section-subtitle::before,
.service-section .section-subtitle::after {
    background: linear-gradient(90deg, transparent, #2e7d32);
}

.service-content h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #111;
}

h3.project-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 8px 0;
}

.projects-section {
    padding: 60px 0 0;
}

/* Project card layout fix */
.project-box {
    position: relative !important;
    padding-top: 55px !important;
}

.project-number {
    position: absolute !important;
    top: 12px !important;
    left: 16px !important;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
}

h3.project-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    padding-left: 0;
}

.testimonial-section {
    padding: 10px 0 30px !important;
}

.about-dual-content h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}


.about-content h2{
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-content h2::after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #f4b400;
    border-radius: 50px;
    margin-top: 12px;
}

.about-description{
    text-align: justify;
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-top: 18px;
}

.about-description p{
    margin-bottom: 12px;
    text-align: justify;
}

.about-description h3,
.about-description h4,
.about-description h5{
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-top: 14px;
    margin-bottom: 6px;
}

.about-image-wrapper{
    border-radius: 16px;
    overflow: hidden;
}

.about-main-image{
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

.programs-section{
    padding:75px 0;
}

.impact-section{
    padding:60px 0;
}

.testimonial-section{
    padding:70px 0;
}

.gallery-section{
    padding:70px 0;
}


/* ================= COMMON SECTION HEADINGS ================= */

.section-heading {
    margin-bottom: 30px;
}

.testimonial-section {
    padding: 0 0 30px !important;
}


/* ================= FOUNDATION INTRO PREMIUM ================= */

.foundation-intro{
    position:fixed;
    inset:0;
    background:#ffffff;
    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

/* HIDE */

.foundation-intro.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

/* SOFT WHITE GLOW */

.foundation-intro::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;

    background:rgba(244,180,0,0.08);

    filter:blur(120px);

    animation:introGlow 2s ease forwards;
}

/* CONTENT */

.foundation-intro-content{
    text-align:center;
    position:relative;
    z-index:2;
}

/* LOGO */

.foundation-intro-content img{
    width: 145px;
    height: 145px;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;

    display: block;
    margin: 0 auto 20px auto;

    padding: 0;
    background: transparent;

    /* crop extra transparent area */
    clip-path: circle(50% at 50% 50%);

    opacity: 0;
    transform: scale(0.75);

    animation: introLogo 0.7s ease forwards;
}

/* LINE */

.foundation-intro-line{
    width:0;
    height:2px;

    margin:0 auto 26px auto;

    border-radius:50px;

    background:linear-gradient(
        to right,
        transparent 0%,
        rgba(244,180,0,0.25) 12%,
        #f4b400 50%,
        rgba(244,180,0,0.25) 88%,
        transparent 100%
    );

    box-shadow:
        0 0 8px rgba(244,180,0,0.28);

    animation:introLine 0.65s ease forwards;
    animation-delay:0.35s;
}

/* TITLE */

.foundation-intro-content h1{
    color:#111;
    font-size:56px;
    font-weight:800;
    line-height:1.08;
    letter-spacing:-2px;

    margin-bottom:16px;

    opacity:0;
    transform:translateY(30px);

    animation:introTitle 0.7s ease forwards;
    animation-delay:0.55s;
}

/* TAGLINE */

.foundation-intro-content p{
    color:#666;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;

    opacity:0;

    animation:introTag 0.7s ease forwards;
    animation-delay:0.9s;
}

/* ANIMATIONS */

@keyframes introGlow{
    from{
        transform:scale(0.6);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes introLogo{
    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes introLine{
    from{
        width:0;
        opacity:0;
    }

    to{
        width:105px;
        opacity:1;
    }
}

@keyframes introTitle{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes introTag{
    to{
        opacity:1;
    }
}


/* ================= NAVBAR ================= */

.custom-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;

    padding-left: 18px;
    padding-right: 18px;

    background: rgba(255,255,255,0.97);

    backdrop-filter: blur(10px);

    transition: all 0.35s ease;
}

.custom-navbar.scrolled{

    background: rgba(255,255,255,0.97);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    padding: 10px 0;
}

.custom-navbar.scrolled{

    background:rgba(255,255,255,0.97);

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    padding:10px 0;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand{

    color:#000 !important;
}

.custom-navbar .nav-link:hover{

    color:#fac32b !important;
}

/* BRAND WRAPPER */

.brand-wrapper{

    display:flex;

    align-items:center;

    margin-right:18px;
    margin-left:-28px; 
}

/* LOGO */

.brand-logo img{

    width:58px;
    height:58px;

    object-fit:contain;

    margin-right:8px;
}

/* TEXT BLOCK */

.brand-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

    line-height:1;
}

/* MAIN TITLE */

.brand-title{

    display:block;

    font-size:22px;

    font-weight:800;

    color:#0c0101;

    margin-bottom:0px;

    letter-spacing:-0.3px;
    
    white-space:nowrap;
    margin:0;
}

.custom-navbar .nav-link{

    color:#111;

    font-weight:600;

    margin:0 14px;

    font-size:15px;

    transition:0.3s;

    white-space:nowrap;
}

.donate-btn{

    background:#f4b400;

    color:#111;

    padding:12px 28px;

    border-radius:50px;

    font-weight:700;

    transition:0.3s;
}

.donate-btn:hover{

    background:#fff;

    transform:translateY(-2px);
}

.brand-logo img{
    width:58px;
    height:58px;
    transition:all 0.35s ease;
}

.custom-navbar.scrolled .brand-logo img{
    width:48px;
    height:48px;
}

.brand-title{
    font-size:24px;
    transition:all 0.35s ease;
}

.custom-navbar.scrolled .brand-title{
    font-size:21px;
}


/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    margin-top: 80px; /* push below fixed navbar */
}

@media (max-width: 991px) {
    .hero-section {
        margin-top: 70px;
    }
}

.heroSwiper {
    width: 100%;
}

.hero-slide {
    width: 100%;
    line-height: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-banner-img {
        width: 100%;
        height: auto;
    }
}

.hero-btn-primary{

    background:#f4b400;

    color:#000;

    padding:16px 38px;

    border-radius:60px;

    font-weight:700;

    border:none;

    transition:0.3s ease;
}

.hero-btn-primary:hover{

    transform:translateY(-3px);

    background:#ffcb31;
}

.hero-prev,
.hero-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    z-index:20;

    width:58px;
    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,0.15);

    backdrop-filter:blur(10px);

    display:flex;

    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    transition:0.3s ease;
}

.hero-prev:hover,
.hero-next:hover{

    background:#f4b400;

    color:#000;
}

.hero-prev{
    left:28px;
}

.hero-next{
    right:28px;
}

/* ================= HERO CINEMATIC ANIMATION ================= */

.hero-animate{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

/* ACTIVE SLIDE REVEAL */

.swiper-slide-active .hero-animate{
    opacity:1;
    transform:translateY(0);
}

/* STAGGER DELAYS */

.hero-content h1{
    transition-delay:0.2s;
}

.hero-content p{
    transition-delay:0.5s;
}

.hero-delay-2{
    transition-delay:0.8s;
}

.hero-delay-3{
    transition-delay:1.1s;
}


/* ================= VISION / MISSION SECTION ================= */

.about-section-space{
    padding: 120px 0 110px;
    margin-top: 30px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9ff 50%,
            #f8fcf7 100%
        );

    position: relative;
    overflow: visible;
}

/* subtle separation feel */
.about-section-space::before{
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    top: 60px;
    bottom: 40px;

    background:
        linear-gradient(
            90deg,
            rgba(76,175,80,.035),
            rgba(25,118,210,.035)
        );

    z-index: 0;
}

/* keep cards above background */
.about-section-space .container{
    position: relative;
    z-index: 2;
}


/* ================= CARD BASE ================= */

.about-premium-card.about-dual-card{
    min-height: 230px !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    gap: 24px !important;

    padding: 34px !important;

    border-radius: 26px !important;

    transition:
        transform .35s ease,
        box-shadow .35s ease !important;

    box-shadow:
        0 10px 26px rgba(0,0,0,.06) !important;

    background-image: none !important;

    position: relative;
    overflow: visible !important;
}


/* ================= REMOVE OLD FLOATING EFFECTS ================= */

.about-premium-card.about-dual-card::before,
.about-premium-card.about-dual-card::after,
.about-dual-icon::before,
.about-dual-icon::after{
    display:none !important;
    content:none !important;
}


/* ================= ICON ================= */

.about-premium-card.about-dual-card .about-dual-icon{
    width: 95px !important;
    height: 95px !important;

    flex-shrink: 0 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.about-dual-icon img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
}


/* ================= CONTENT ================= */

.about-dual-content{
    flex: 1;
}

.about-dual-content h3{
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.about-dual-content p{
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}


/* ================= VISION CARD ================= */

.vision-card{
    background: #eefbe7 !important;
    border: 2px solid #4CAF50 !important;
}

.vision-card h3{
    color: #1b5e20 !important;
}


/* ================= MISSION CARD ================= */

.mission-card{
    background: #edf5ff !important;
    border: 2px solid #1976d2 !important;
}

.mission-card h3{
    color: #0d47a1 !important;
}


/* ================= HOVER ================= */

.about-premium-card.about-dual-card:hover{
    transform: translateY(-10px) !important;

    box-shadow:
        0 18px 40px rgba(0,0,0,.12) !important;
}


/* ================= MOBILE ================= */

@media (max-width:768px){

    .about-section-space{
        padding: 85px 0 85px;
        margin-top: 10px;
    }

    .about-section-space::before{
        top: 30px;
        bottom: 30px;
    }

    .about-premium-card.about-dual-card{
        flex-direction: column !important;
        text-align: center;
        padding: 28px !important;
        min-height: auto !important;
    }

    .about-dual-content h3{
        font-size: 1.7rem;
    }
}



/* ================= SERVICE SECTION ================= */

.service-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* SECTION HEADER */
.service-section .section-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:0 0 18px rgba(244,180,0,.12);
    color: #faf604;;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 15px;
}

.service-top-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

/* IMAGE GRID WRAPPER */
.service-images-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* IMAGE BOX */
.service-image-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #fff;
    transition: all 0.3s ease;
}

/* IMAGE */
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.service-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-image-box:hover .service-image {
    transform: scale(1.08);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .service-section h2 {
        font-size: 26px;
    }

    .service-image-box {
        height: 150px;
    }
}

.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.service-content {
    padding: 16px;
    text-align: center;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.service-read-more {
    color: #f4b400;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-read-more:hover {
    color: #3a48e9;
    letter-spacing: 0.5px;
}



/* ================= ABOUT ================= */

.about-main-image{

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.about-description h1,
.about-description h2,
.about-description h3,
.about-description p,
.about-description div {
    color: #333 !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin: 0 0 15px;
}

.about-description u {
    text-decoration: none;
    font-weight: 700;
}

.feature-item{

    margin-bottom:15px;

    font-weight:600;
}

.about-btn{

    background:#2E8B57;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    margin-top:20px;
}

/* ABOUT IMAGE CINEMATIC */

.about-image-wrapper{
    overflow:hidden;
    border-radius:25px;
}

.about-main-image{
    transition:transform 1.2s ease;
}

.about-image-wrapper:hover .about-main-image{
    transform:scale(1.05);
}



/* ================= PROJECTS SECTION ================= */

.projects-section {
    padding: 70px 0;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.project-box {
    border-radius: 18px;
    padding: 20px 16px 16px;
    position: relative;
    overflow: hidden;

    height: 310px; /* increased height */

    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;

    transition: all .45s ease;

    /* animation */
    opacity: 0;
    transform: translateY(45px);
}

.project-box.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover */
.project-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 35px rgba(0,0,0,0.14);
}

/* Number */
.project-number {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Title */
.project-title {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 46px;
    margin-bottom: 14px;
    line-height: 1.3;
    min-height: 54px;
}

/* Image */
.project-image-wrap {
    text-align: center;
    margin: -7px 0 14px;
}

.project-image-wrap img {
    max-width: 100px;
    width: 100%;
    height: 78px;
    object-fit: contain;
    transition: transform .4s ease;
}

.project-box:hover .project-image-wrap img {
    transform: scale(1.08);
}

/* Description */
.project-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #333;
    margin-top: auto;
}

/* Layout */
.project-box:nth-child(1) { grid-column: 1 / span 2; }
.project-box:nth-child(2) { grid-column: 3 / span 2; }
.project-box:nth-child(3) { grid-column: 5 / span 2; }
.project-box:nth-child(4) { grid-column: 7 / span 2; }

.project-box:nth-child(5) { grid-column: 2 / span 2; }
.project-box:nth-child(6) { grid-column: 4 / span 2; }
.project-box:nth-child(7) { grid-column: 6 / span 2; }

/* Sequential animation delays */
.project-box:nth-child(1){ transition-delay:.1s; }
.project-box:nth-child(2){ transition-delay:.25s; }
.project-box:nth-child(3){ transition-delay:.4s; }
.project-box:nth-child(4){ transition-delay:.55s; }
.project-box:nth-child(5){ transition-delay:.7s; }
.project-box:nth-child(6){ transition-delay:.85s; }
.project-box:nth-child(7){ transition-delay:1s; }

/* Colors */
.green-card { background:#eefbe7; border-color:#4CAF50; }
.green-card .project-number { background:#2e7d32; }

.blue-card { background:#eaf4ff; border-color:#1976d2; }
.blue-card .project-number { background:#1565c0; }

.orange-card { background:#fff4e6; border-color:#fb8c00; }
.orange-card .project-number { background:#ef6c00; }

.purple-card { background:#f3ebff; border-color:#7b1fa2; }
.purple-card .project-number { background:#6a1b9a; }

.pink-card { background:#fff0f5; border-color:#e91e63; }
.pink-card .project-number { background:#d81b60; }

.violet-card { background:#f4edff; border-color:#673ab7; }
.violet-card .project-number { background:#512da8; }

.cyan-card { background:#e8fbff; border-color:#00acc1; }
.cyan-card .project-number { background:#00838f; }

/* Tablet */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-box:nth-child(n) {
        grid-column: auto;
    }

    .project-box {
        height: auto;
        min-height: 270px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
    padding:120px 0 170px;
    background:linear-gradient(180deg,#f8fafc 0%, #ffffff 100%);
    overflow:hidden;
    position:relative;
}

.testimonial-slider{
    overflow:hidden;
}

.testimonial-slider .owl-stage-outer{
    overflow:hidden;
    padding:20px 0 35px;
    will-change: transform;
}

.testimonial-slider .owl-stage{
    display:flex;
    align-items:stretch;
}

.testimonial-slider .owl-item{
    display:flex;
    transition: transform .6s ease;
}

.testimonial-card{
    position:relative;
    background:#fff;

    border-radius:28px;
    padding:55px 42px 40px;

    box-shadow:0 18px 55px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height:150px;
    height:100%;

    margin:0 12px;

    transition:.45s cubic-bezier(.16,1,.3,1);
    overflow:hidden;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 75px rgba(0,0,0,.12);
}

.testimonial-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,
        transparent,
        rgba(244,180,0,.45),
        transparent);
}

/* LARGE QUOTE SYMBOL */

.quote-symbol{
    font-size:110px;
    line-height:1;
    color:rgba(244,180,0,.18);
    font-family:Georgia, serif;

    position:absolute;
    top:20px;
    left:25px;
}


/* QUOTE TEXT */

.testimonial-text{
    position:relative;
    z-index:2;

    font-size:22px;
    line-height:1.85;
    color:#222;
    font-style:italic;
    font-weight:500;

    margin-top:45px;
    margin-bottom:50px;

    text-align:left;
}


/* AUTHOR */

.testimonial-author{
    margin-top:auto;
    text-align:left;
    border-top:1px solid rgba(0,0,0,.06);
    padding-top:18px;
}

.testimonial-author h5{
    margin:0;
    font-size:17px;
    font-weight:800;
    color:#111;
}

.testimonial-author span{
    display:block;
    margin-top:5px;

    font-size:14px;
    color:#777;
    letter-spacing:.5px;
}


/* FLOAT ANIMATION */

.testimonial-card{
    animation:testimonialFloat 6s ease-in-out infinite;
}

.testimonial-card:nth-child(2){
    animation-delay:1.8s;
}

.testimonial-card:nth-child(3){
    animation-delay:3.2s;
}

@keyframes testimonialFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-6px);
    }
}


/* MOBILE */

@media(max-width:991px){

    .testimonial-card{
        min-height:320px;
        padding:45px 28px 35px;
    }

    .testimonial-text{
        font-size:18px;
    }

    .quote-symbol{
        font-size:85px;
    }
}



/* ================= HOME BLOG FEATURED ================= */

.home-blog-section{
    padding:120px 0;
    background:linear-gradient(180deg,#fcfcfc 0%,#f8fafc 100%);
    position:relative;
}

.home-blog-section .container{
    max-width:1550px;
}

/* CARD */

.featured-blog-card{    
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 22px 65px rgba(0,0,0,.08);

    display:flex;
    height:560px;
}


/* IMAGE */

.featured-blog-image{
    width:52%;
    height:560px;
    overflow:hidden;
    flex-shrink:0;
}

.featured-blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform 1s ease;
    display:block;
}

.featured-blog-card:hover .featured-blog-image img{
    transform:scale(1.06);
}


/* CONTENT */

.featured-blog-content{
    width:48%;
    padding:42px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.blog-meta{
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    color:#f4b400;
    margin-bottom:18px;
}

.featured-blog-content h3{
    font-size:34px;
    font-weight:800;
    line-height:1.28;
    margin-bottom:24px;
    color:#111;
}

.featured-blog-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;

    min-height:130px;
    max-height:130px;

    overflow:hidden;
    margin-bottom:18px;
}


/* READ MORE */

.blog-read-more{
    display:inline-block;
    font-weight:700;
    font-size:16px;
    color:#111;
    text-decoration:none;
    transition:.35s ease;
}

.blog-read-more:hover{
    color:#f4b400;
    padding-left:8px;
}


/* NAVIGATION */

.blog-nav-prev,
.blog-nav-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:56px;
    height:56px;
    border-radius:50%;
    background:#fff;

    box-shadow:0 14px 35px rgba(0,0,0,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    z-index:10;

    transition:.35s ease;
}

.blog-nav-prev:hover,
.blog-nav-next:hover{
    transform:translateY(-50%) scale(1.08);
}

.blog-nav-prev{
    left:12px;
}

.blog-nav-next{
    right:12px;
}


/* SWIPER FIX */

.blogSwiper{
    overflow:hidden;
    border-radius:30px;
}


/* MOBILE */

@media(max-width:991px){

    .featured-blog-card{
        flex-direction:column;
        min-height:auto;
    }

    .featured-blog-image{
        width:100%;
        min-height:280px;
    }

    .featured-blog-content{
        width:100%;
        padding:36px;
    }

    .featured-blog-content h3{
        font-size:28px;
    }

    .featured-blog-content p{
        min-height:auto;
        max-height:none;
    }

    .blog-nav-prev,
    .blog-nav-next{
        display:none;
    }
}


/* ================= QUICK ENQUIRY ================= */

.form-control{
    transition:
        all 0.35s ease,
        box-shadow 0.35s ease;
}

.form-control:focus{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.btn-success{
    transition:all 0.35s ease;
}

.btn-success:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,0.16);
}


/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .hero-content h1{
        font-size:48px;
    }

    .about-content{
        margin-top:40px;
    }

    .impact-box::after{
        display:none;
    }
}

@media(max-width:767px){

    .hero-slide{
        height:85vh;
    }

    .hero-content{

        padding-left:30px;

        padding-right:20px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .hero-prev,
    .hero-next{

        width:45px;
        height:45px;

        font-size:16px;
    }
}


/* ================= ABOUT PAGE PREMIUM ================= */

.about-section-space{
    padding:50px 0;
}

/* ================= HERO ================= */

.about-hero{
    padding:150px 0 110px;
    background:linear-gradient(135deg,#f8fafc 0%,#eef3f8 100%);
}

.about-hero-content h1{
    font-size:64px;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
    line-height:1.15;
}

.about-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    text-align:justify;
    text-justify:inter-word;

    hyphens:auto;
}

.about-hero-image{
    height:520px;
    border-radius:28px;
    overflow:hidden;
    background:#e8edf2;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.about-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ================= COMMON CARD ================= */

.about-premium-card{
    background:#fff;
    border-radius:26px;
    padding:45px;
    box-shadow:0 18px 50px rgba(0,0,0,.07);
    transition:.4s ease;
    height:100%;
    border:1px solid rgba(0,0,0,.04);
}

.about-premium-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 65px rgba(0,0,0,.12);
}


/* ================= STAGGER LOOP ANIMATION ================= */

.stagger-item{
    opacity:0;
    transform:translateY(35px);
    transition:
        opacity .85s ease,
        transform 1s cubic-bezier(.16,1,.3,1);
    will-change:transform, opacity;
}

.stagger-item.show{
    opacity:1;
    transform:translateY(0);
}

.stagger-delay-1{ transition-delay:.08s; }
.stagger-delay-2{ transition-delay:.16s; }
.stagger-delay-3{ transition-delay:.24s; }
.stagger-delay-4{ transition-delay:.32s; }


/* VALUES SEQUENTIAL REVEAL */

.values-left,
.values-center,
.values-right{
    opacity:0;
    transition:
        opacity .8s ease,
        transform .95s cubic-bezier(.22,1,.36,1);
    will-change:transform, opacity;
}

/* Center comes first */
.values-center{
    transform:translateY(35px);
    transition-delay:0s;
}

/* Side cards wait slightly */
.values-left{
    transform:translateX(-55px);
    transition-delay:.28s;
}

.values-right{
    transform:translateX(55px);
    transition-delay:.28s;
}

.values-left.show,
.values-center.show,
.values-right.show{
    opacity:1;
    transform:translate(0,0);
}


/* ================= MISSION + VISION ================= */

.about-dual-card{
    display:flex;
    align-items:center;
    gap:32px;

    padding:42px 38px;

    border-radius:30px;

    min-height:250px;

    background:#fff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

/* push cards more towards both sides */

.about-section-space .container{
    max-width: 1450px;
}

/* hover */

.about-dual-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}


/* ================= ICON ================= */

.about-dual-icon{
    width:95px;
    height:95px;

    min-width:95px;

    border-radius:24px;

    background:#fff7db;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
        0 12px 30px rgba(244,180,0,.18);

    animation:dualFloat 4s ease-in-out infinite;
}

.about-dual-icon i{
    font-size:40px;
    color:#f4b400;
    line-height:1;
}


/* ================= CONTENT ================= */

.about-dual-content{
    flex:1;
}

.about-dual-content h3{
    font-size:42px;
    font-weight:800;
    line-height:1.1;

    margin-bottom:16px;

    color:#111;
}

.about-dual-content p{
    margin:0;

    color:#666;

    font-size:18px;
    line-height:1.9;

    max-width:95%;
}

/* stagger float */

.stagger-delay-1 .about-dual-icon{
    animation-delay:1s;
}


/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .about-hero-content h1{
        font-size:50px;
    }

    .about-hero-image{
        height:420px;
        margin-top:40px;
    }
}

@media(max-width:767px){

    .about-hero{
        text-align:center;
        padding:120px 0 80px;
    }

    .about-hero-content h1{
        font-size:38px;
    }

    .about-hero-image{
        height:280px;
    }
}

@keyframes dualFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@media(max-width:768px){

    .about-dual-card{
        flex-direction:column;
        text-align:center;

        padding:34px 26px;

        gap:24px;
    }

    .about-dual-content p{
        max-width:100%;
    }

    .about-dual-content h3{
        font-size:34px;
    }
}



/* ================= SERVICE PAGE ================= */

/* HERO */

.services-hero{
    padding:90px 0 20px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f8fafc 0%,#eef3f8 100%);
}

.services-hero h1{
    font-family:'Playfair Display', serif;
    font-size:68px;
    font-weight:800;
    line-height:1.12;
    letter-spacing:-1px;

    color:#111827;

    margin:22px 0 24px;
}

.services-hero p{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* HERO GUIDE */

.services-hero-guide{
    margin-top:48px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:14px;
}

.services-hero-guide span{
    font-size:13px;
    font-weight:800;
    letter-spacing:2.8px;
    text-transform:uppercase;
    color:#1a2233;
}

.hero-scroll-indicator{
    width:52px;
    height:52px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(244,180,0,.28);
    background:rgba(255,255,255,.65);

    backdrop-filter:blur(10px);

    color:#f4b400;
    font-size:18px;

    animation:heroBounce 2.4s ease-in-out infinite;
}

.service-readmore-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:22px;

    padding:14px 26px;

    border-radius:60px;

    background:#f4b400;
    color:#111;

    font-weight:700;
    text-decoration:none;

    transition:.35s ease;
}

.service-readmore-btn:hover{
    transform:translateY(-4px);
    background:#111;
    color:#fff;
}


@keyframes heroBounce{
    0%,100%{
        transform:translateY(0);
        opacity:.85;
    }
    50%{
        transform:translateY(10px);
        opacity:1;
    }
}

@media(max-width:767px){
    .services-hero h1{
        font-size:42px;
        line-height:1.18;
    }
}


/* Floating icon wrapper */

.services-floating-icons{
    position:absolute;
    inset:0;
    pointer-events:none;
}

/* Base icon */

.floating-service-icon{
    position:absolute;
    font-size:85px;
    color:rgba(244,180,0,.08);
    animation:serviceFloat 8s ease-in-out infinite;
    filter:blur(.2px);
}

/* Positions */

.icon-1{
    top:12%;
    left:8%;
    animation-delay:0s;
}

.icon-2{
    top:22%;
    right:12%;
    animation-delay:1.5s;
}

.icon-3{
    bottom:18%;
    left:18%;
    animation-delay:3s;
}

.icon-4{
    bottom:14%;
    right:16%;
    animation-delay:4.5s;
}

.icon-5{
    top:48%;
    right:38%;
    animation-delay:2.5s;
}

/* Float animation */

@keyframes serviceFloat{
    0%,100%{
        transform:translateY(0) rotate(0deg);
    }
    25%{
        transform:translateY(-18px) rotate(4deg);
    }
    50%{
        transform:translateY(10px) rotate(-4deg);
    }
    75%{
        transform:translateY(-10px) rotate(2deg);
    }
}


/* SERVICE SECTION */

.services-page-section{
    padding:115px 0 70px;
    position:relative;
    overflow:hidden;
}

.services-page-section:nth-child(odd){
    background:#ffffff;
}

.services-page-section:nth-child(even){
    background:linear-gradient(135deg,#f8fafc 0%,#eef3f8 100%);
}

.services-page-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.services-page-section.reverse .services-page-image-box{
    order:2;
}

.services-page-section.reverse .services-page-content-box{
    order:1;
}

.services-page-section::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:180px;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(244,180,0,.5),
        transparent
    );
}


/* IMAGE */

.services-page-image-box{
    height:500px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    box-shadow:0 28px 65px rgba(0,0,0,.10);
}

.services-page-image-box::before{
    content:"";
    position:absolute;
    inset:14px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:22px;
    z-index:2;
    pointer-events:none;
}

.services-page-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;

    transform:scale(1.08);
    transition:
        transform 1.8s cubic-bezier(.16,1,.3,1),
        filter 1.4s ease;

    filter:brightness(.94);
}

.services-page-image-box.reveal img{
    transform:scale(1);
    filter:brightness(1);
}

/* CONTENT */

.services-page-content-box h2{
    font-size:42px;
    font-weight:800;
    margin:18px 0 24px;
}

.services-page-content-box p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
    text-align:justify;
    text-justify:inter-word;

    hyphens:auto;
    max-width:95%;
}


/* RESPONSIVE */

@media(max-width:991px){

    .services-page-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .services-page-image-box{
        height:380px;
    }

    .services-page-section.reverse .services-page-image-box,
    .services-page-section.reverse .services-page-content-box{
        order:unset;
    }
}



/* ================= PROJECT PAGE ================= */

.projects-hero{
    padding:130px 0 90px;

    background:linear-gradient(
        135deg,
        #f7fafc 0%,
        #edf3f8 100%
    );

    position:relative;
}

.projects-hero h1{
    font-size:clamp(2.5rem,5vw,4.5rem);

    font-weight:900;

    margin:14px 0 18px;

    line-height:1.1;

.text-blue {
    color: #003366; /* Your choice of dark blue */
    }

.text-green {
    color: #2e7d32; /* Your choice of green */
  }
}

.projects-hero p{
    max-width:850px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.9;
}

.projects-hero .section-subtitle{
    margin-bottom:10px;
    display:inline-block;
}


/* ================= PROJECT GRID SECTION ================= */

.projects-page-grid-section{
    padding:80px 0 110px;
    background:#fff;
}


/* GRID */

.projects-grid{
    display:grid;

    grid-template-columns:repeat(8,1fr);

    gap:22px;

    margin-top:30px;
}


/* CARD */

.project-box{
    border-radius:24px;

    padding:20px;

    position:relative;

    overflow:hidden;

    transition:all .4s ease;

    min-height:380px;   /* increased */

    border:2px solid transparent;

    box-shadow:0 10px 26px rgba(0,0,0,.07);

    display:flex;

    flex-direction:column;

    justify-content:space-between; /* keeps alignment equal */
}


/* HOVER */

.project-box:hover{
    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,0,0,.13);
}


/* NUMBER */

.project-number{
    position:absolute;

    top:16px;
    left:16px;

    width:34px;
    height:34px;

    border-radius:50%;

    color:#fff;

    font-weight:800;

    font-size:14px;

    display:flex;
    align-items:center;
    justify-content:center;
}


/* TITLE */

.project-title{
    font-size:1rem;

    font-weight:800;

    margin-top:40px;
    margin-bottom:16px;

    line-height:1.4;
}


/* IMAGE */

.project-image-wrap{
    text-align:center;

    margin:10px 0 18px;
}

.project-image-wrap img{
    max-width: 100px;
    width:100%;

    max-height:110px;

    object-fit:cover;

    border-radius:16px;
}


/* DESC */

.project-desc{
    font-size:13px;

    line-height:1.8;

    color:#444;

    text-align:justify;

    flex:1;
}


/* READ MORE */

.project-read-more{
    margin-top:auto;

    font-weight:700;

    text-decoration:none;

    color:#111;

    transition:.3s ease;

    display:inline-block;
}

.project-read-more:hover{
    color:#f4b400;

    padding-left:6px;
}


/* GRID LAYOUT */

/* Row 1 */

.project-box:nth-child(1){ grid-column:1 / span 2; }
.project-box:nth-child(2){ grid-column:3 / span 2; }
.project-box:nth-child(3){ grid-column:5 / span 2; }
.project-box:nth-child(4){ grid-column:7 / span 2; }

/* Row 2 */

.project-box:nth-child(5){ grid-column:2 / span 2; }
.project-box:nth-child(6){ grid-column:4 / span 2; }
.project-box:nth-child(7){ grid-column:6 / span 2; }


/* COLORS */

.green-card{
    background:#eefbe7;
    border-color:#4CAF50;
}
.green-card .project-number{
    background:#2e7d32;
}

.blue-card{
    background:#eaf4ff;
    border-color:#1976d2;
}
.blue-card .project-number{
    background:#1565c0;
}

.orange-card{
    background:#fff4e6;
    border-color:#fb8c00;
}
.orange-card .project-number{
    background:#ef6c00;
}

.purple-card{
    background:#f3ebff;
    border-color:#7b1fa2;
}
.purple-card .project-number{
    background:#6a1b9a;
}

.pink-card{
    background:#fff0f5;
    border-color:#e91e63;
}
.pink-card .project-number{
    background:#d81b60;
}

.violet-card{
    background:#f4edff;
    border-color:#673ab7;
}
.violet-card .project-number{
    background:#512da8;
}

.cyan-card{
    background:#e8fbff;
    border-color:#00acc1;
}
.cyan-card .project-number{
    background:#00838f;
}


/* MOBILE */

@media(max-width:991px){

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .project-box:nth-child(n){
        grid-column:auto;
    }
}

@media(max-width:576px){

    .projects-grid{
        grid-template-columns:1fr;
    }

    .projects-hero{
        padding:120px 0 70px;
    }

    .project-box{
        min-height:auto;
    }
}



/* ================= CONTACT HERO ================= */

.contact-hero{
    padding:120px 0 90px;

    background:linear-gradient(
        135deg,
        #f8fbff 0%,
        #edf4ff 100%
    );
}

.contact-hero h1{
    font-size:64px;
    font-weight:900;

    margin:14px 0 20px;
}

.contact-hero p{
    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#666;
}


/* ================= CONTACT SECTION ================= */

.contact-main-section{
    padding:90px 0 120px;

    background:#fff;
}


/* CARD */

.contact-main-card{
    display:grid;

    grid-template-columns:1fr 1fr;

    overflow:hidden;

    border-radius:34px;

    background:#fff;

    box-shadow:0 24px 70px rgba(0,0,0,.08);

    transition:all .4s ease;
}

.contact-main-card:hover{
    transform:translateY(-8px);

    box-shadow:0 30px 80px rgba(0,0,0,.12);
}


/* ================= IMAGE SIDE ================= */

.contact-image-side{
    position:relative;

    min-height:620px;

    overflow:hidden;
}

.contact-image-side img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform 1.2s ease;
}

.contact-main-card:hover .contact-image-side img{
    transform:scale(1.05);
}


/* ================= CONTENT SIDE ================= */

.contact-content-side{
    padding:70px 60px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}


/* MINI TITLE */

.contact-mini-title{
    display:inline-block;

    margin-bottom:14px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#f4b400;
}


/* TITLE */

.contact-content-side h2{
    font-size:42px;

    font-weight:900;

    line-height:1.2;

    margin-bottom:40px;

    color:#111;
}


/* BADGES */

.contact-badges{
    display:flex;
    flex-direction:column;

    gap:20px;
}


/* SINGLE BADGE */

.contact-badge{
    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px 24px;

    border-radius:20px;

    background:#f8fbff;

    border:1px solid #edf2f7;

    transition:all .35s ease;
}

.contact-badge:hover{
    transform:translateX(8px);

    border-color:#dbe8ff;

    background:#ffffff;
}


/* ICON */

.contact-badge i{
    width:52px;
    height:52px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff4d9;

    color:#f4b400;

    font-size:20px;
}


/* TEXT */

.contact-badge strong{
    display:block;

    font-size:16px;

    font-weight:800;

    color:#111;

    margin-bottom:6px;
}

.contact-badge span{
    display:block;

    color:#666;

    line-height:1.7;

    font-size:15px;
}


/* ================= MAP SECTION ================= */

.contact-map-section{
    padding:0 0 120px;
    background:#fff;
}

.contact-map-wrapper{
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 24px 70px rgba(0,0,0,.08);
}

/* Heading */

.map-heading{
    padding:60px 40px 35px;
}

.map-heading h2{
    font-size:42px;
    font-weight:900;
    margin:14px 0 18px;
    color:#111;
}

.map-heading p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* MAP */

.contact-map-frame{
    width:100%;
    height:500px;
    position:relative;
    overflow:hidden;
}

.contact-map-frame iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .contact-main-card{
        grid-template-columns:1fr;
    }

    .contact-image-side{
        min-height:340px;
    }

    .contact-content-side{
        padding:50px 30px;
    }

    .contact-content-side h2{
        font-size:34px;
    }

    .contact-hero h1{
        font-size:42px;
    }
}


@media(max-width:768px){

    .contact-hero{
        padding:100px 0 70px;
    }

    .contact-content-side{
        padding:42px 24px;
    }

    .contact-badge{
        padding:18px;
    }
}

@media(max-width:768px){

    .map-heading{
        padding:45px 22px 28px;
    }

    .map-heading h2{
        font-size:32px;
    }

    .contact-map-frame{
        height:340px;
    }
}




.album-page-section{
    padding:140px 0 100px;
    background:#f8fafc;
}

.album-photo-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    height:320px;
}

.album-photo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

.album-photo-card:hover img{
    transform:scale(1.08);
}

.album-photo-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.65), transparent);
    display:flex;
    align-items:flex-end;
    padding:22px;
}

.album-photo-overlay h5{
    color:#fff;
    margin:0;
}



/* ================= BLOG PAGE HERO ================= */

.blogs-page-hero{
    padding:130px 0 90px;

    background:linear-gradient(
        135deg,
        #f7fafc 0%,
        #edf3f8 100%
    );
}

.blogs-page-hero h1{
    font-size:clamp(2.5rem,5vw,4.5rem);

    font-weight:900;

    margin:14px 0 18px;

    line-height:1.1;
}

.blogs-page-hero p{
    max-width:760px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.9;
}


/* ================= BLOG GRID SECTION ================= */

.blogs-grid-section{
    padding:80px 0 110px;

    background:#fff;
}


/* GRID */

.blogs-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:38px;
}


/* CARD */

.blog-grid-card{
    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 18px 50px rgba(0,0,0,.07);

    transition:all .4s ease;

    display:flex;

    flex-direction:column;

    height:100%;
}

.blog-grid-card:hover{
    transform:translateY(-10px);

    box-shadow:0 28px 65px rgba(0,0,0,.12);
}


/* IMAGE */

.blog-grid-image{
    height:300px;

    overflow:hidden;
}

.blog-grid-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform 1.2s ease;
}

.blog-grid-card:hover .blog-grid-image img{
    transform:scale(1.08);
}


/* CONTENT */

.blog-grid-content{
    padding:34px;
}


/* META */

.blog-grid-meta{
    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    color:#f4b400;

    margin-bottom:16px;

    text-transform:uppercase;
}


/* TITLE */

.blog-grid-content h2{
    font-size:30px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:18px;

    color:#111;
}


/* TEXT */

.blog-grid-content p{
    font-size:16px;

    line-height:1.9;

    color:#555;

    text-align:justify;

    margin-bottom:24px;
}


/* READ MORE */

.blog-read-more{
    display:inline-flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    font-weight:700;

    color:#111;

    transition:.3s ease;
}

.blog-read-more:hover{
    color:#f4b400;

    transform:translateX(6px);
}


/* ================= MOBILE ================= */

@media(max-width:991px){

    .blogs-grid{
        grid-template-columns:1fr;
    }

    .blog-grid-image{
        height:260px;
    }

    .blog-grid-content h2{
        font-size:26px;
    }
}


@media(max-width:576px){

    .blogs-page-hero{
        padding:120px 0 70px;
    }

    .blog-grid-content{
        padding:26px;
    }

    .blog-grid-content h2{
        font-size:24px;
    }
}



/* ================= GALLERY PAGE ================= */

.gallery-section{
    padding:100px 0;
    background:#f8fafc;
}

.gallery-wrapper{
    background:#ffffff;
    border-radius:34px;
    padding:60px 55px;
    box-shadow:0 28px 80px rgba(0,0,0,.07);
}

.gallery-wrapper .row{
    row-gap:32px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:360px;
    margin-bottom:0;
    display:block;
}   

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:360px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.gallery-image{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:
        transform 1.2s ease,
        filter .9s ease;

    filter:grayscale(10%);
}

.gallery-card:hover .gallery-image{
    transform:scale(1.08);
    filter:grayscale(0%) brightness(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.72),
        rgba(0,0,0,.15),
        transparent
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:32px;
}

.gallery-overlay h5{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:14px;
}

.gallery-open-btn{
    display:inline-block;
    color:#f4b400;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
}

.gallery-open-btn:hover{
    color:#fff;
    padding-left:8px;
}


/* ================= GALLERY PAGE LAYOUT ================= */

.gallery-section{
    padding:70px 0 110px;
    background:#f8fafc;   /* adjusted after h1 */
}


/* ================= 2 x 2 GRID ================= */

.gallery-grid{
    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:32px;
}


/* REMOVE BOOTSTRAP ROW EFFECT */

.gallery-wrapper .row{
    row-gap:0;
}


/* GRID ITEM */

.gallery-grid-item{
    width:100%;
}


/* MOBILE */

@media(max-width:991px){

    .gallery-wrapper{
        padding:40px 22px;
    }

    .gallery-card{
        height:280px;
    }

    .gallery-overlay h5{
        font-size:20px;
    }
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-section{
        padding:50px 0 90px;
    }
}



/* ================= SERVICE DETAILS HERO ================= */

/* HERO */

.service-details-hero{
    position: relative;
    padding-top: 83px;

    width: 100%;
    height: 72vh;

    min-height: 520px;
    max-height: 760px;

    overflow: hidden;
}

/* IMAGE */

.service-details-hero img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* CONTROL IMAGE VIEW AREA */
    object-position: center 30%;

    display: block;
}

/* SOFT OVERLAY */

.service-details-overlay{
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding-bottom: 70px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.38) 0%,
        rgba(0,0,0,.10) 45%,
        rgba(0,0,0,0) 100%
    );
}

/* CONTENT */

.service-details-overlay .container{
    position: relative;
    z-index: 2;
}

.service-mini-title{
    display: inline-block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 14px;

    text-transform: uppercase;

    animation:
        fadeSlideDown 1s ease forwards;

    opacity:0;
}

.service-details-overlay h2{
    color: #fff;

    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 800;

    line-height: 1.1;
    margin: 0;

    text-shadow: 0 4px 18px rgba(0,0,0,.25);

    opacity:0;

    transform:translateY(45px);

    animation:
        heroTitleReveal 1.1s cubic-bezier(.16,1,.3,1) forwards;

    animation-delay:.25s;
}


/* ================= GLOBAL HEADING SPACING ================= */

/* prevent overlap */

.main-page-heading{
    margin-top: 0 !important;
    position: relative;
    z-index: 5;
}


/* ================= DETAIL CONTENT SECTION ================= */

.service-detail-section{
    padding: 40px 0 110px;
    background: #f7fafc;
}

/* CONTENT CARD */

.service-detail-wrapper{
    max-width: 1080px;

    margin: auto;

    background: rgba(255,255,255,.96);

    border-radius: 36px;

    padding: 75px 70px;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.7);

    box-shadow:
        0 30px 80px rgba(0,0,0,.10),
        0 10px 25px rgba(0,0,0,.05);

    backdrop-filter: blur(8px);

    transform: translateY(-20px);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

/* CARD HOVER */

.service-detail-wrapper:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 38px 90px rgba(0,0,0,.13),
        0 18px 35px rgba(0,0,0,.07);
}

/* ICON HOVER BOOST */

.service-detail-wrapper:hover .service-detail-icon{

    transform:
        translateY(-6px)
        scale(1.05);

    box-shadow:
        0 24px 45px rgba(244,180,0,.28);
}

/* SOFT TOP ACCENT */

.service-detail-wrapper::after{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
        90deg,
        #f4b400,
        #ffcf4d,
        #f4b400
    );
}

/* LIGHT INNER GLOW */

.service-detail-wrapper::before{
    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(244,180,0,.07);

    top:-140px;
    right:-100px;

    filter:blur(10px);
}

/* ICON */

.service-detail-icon{
    width: 90px;
    height: 90px;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #fff8df,
            #ffe082
        );

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 34px;

    box-shadow:
        0 18px 35px rgba(244,180,0,.20);

    animation:
        iconFloat 4s ease-in-out infinite;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.service-detail-icon i{
    font-size: 38px;
    color: #f4b400;
}

/* TITLE */

.service-detail-wrapper h2{
    font-size: clamp(2rem, 3vw, 3rem);

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 34px;

    color: #111;
}

/* CONTENT */

.service-detail-content{
    position: relative;
    z-index: 2;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.service-detail-content p{
    font-size: 17px;

    line-height: 2;

    color: #4f4f4f;

    margin-bottom: 26px;

    font-weight: 400;

    text-align:justify;
    text-justify:inter-word;

    hyphens:auto;

    letter-spacing:.1px;

    opacity:0;

    transform:translateY(28px);

    animation:
        paragraphReveal .9s ease forwards;
}

/* STAGGER */

.service-detail-content p:nth-child(1){
    animation-delay:.15s;
}

.service-detail-content p:nth-child(2){
    animation-delay:.35s;
}

.service-detail-content p:nth-child(3){
    animation-delay:.55s;
}


/* ================= MOBILE ================= */

@media(max-width:991px){

    .service-details-overlay{
        padding-bottom: 40px;
    }

    .service-details-overlay h2{
        max-width: 100%;
    }

    .service-detail-wrapper{
        padding: 48px 30px;
        border-radius: 26px;
    }

    .service-detail-content p{
        font-size: 15px;
        line-height: 1.9;
    }

    .service-detail-icon{
        width: 76px;
        height: 76px;
        border-radius: 22px;
    }

    .service-detail-icon i{
        font-size: 30px;
    }
}

@media(max-width:768px){

    .service-details-hero{
        max-height: 58vh;
    }

    .service-details-overlay{
        padding-bottom: 3   8px;
    }

    .service-mini-title{
        font-size: 11px;
        letter-spacing: 2px;
    }

    .service-details-overlay h2{
        font-size: 2rem;
    }

    .service-detail-content p{
        text-align:left;
        hyphens:none;
        line-height:1.9;
    }
}

/* TITLE ANIMATION */

@keyframes heroTitleReveal{

    from{
        opacity:0;
        transform:translateY(45px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeSlideDown{

    from{
        opacity:0;
        transform:translateY(-20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* FLOAT */

@keyframes iconFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* PARAGRAPH ANIMATION */

@keyframes paragraphReveal{

    from{
        opacity:0;
        transform:translateY(28px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}



/* ======================= PROJECT SUBPAGE ========================= */
/* ================= HERO ================= */

.project-details-hero{
    position:relative;

    width:100%;

    height:78vh;

    min-height:620px;

    overflow:hidden;

    display:flex;
    align-items:flex-end;
}

.project-details-hero img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center center;
}


/* OVERLAY */

.project-details-overlay{
    position:relative;
    z-index:2;

    width:100%;

    padding:0 0 90px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.48) 0%,
        rgba(0,0,0,.12) 55%,
        rgba(0,0,0,0) 100%
    );
}


/* MINI TITLE */

.project-mini-title{
    display:inline-block;

    font-size:13px;

    letter-spacing:3px;

    font-weight:700;

    text-transform:uppercase;

    color:#fff;

    margin-bottom:16px;

    opacity:0;

    transform:translateY(25px);

    animation:projectFadeUp .8s ease forwards;
}


/* TITLE */

.project-details-overlay h2{
    color:#fff;

    font-size:clamp(2.5rem,5vw,5rem);

    font-weight:900;

    line-height:1.08;

    max-width:820px;

    margin:0;

    text-shadow:0 5px 20px rgba(0,0,0,.28);

    opacity:0;

    transform:translateY(35px);

    animation:projectFadeUp .9s ease forwards;

    animation-delay:.2s;
}


/* ================= CONTENT SECTION ================= */

.project-detail-section{
    padding:90px 0 120px;

    background:#f8fbff;
}


/* CONTENT CARD */

.project-detail-wrapper{
    position:relative;

    max-width:1050px;

    margin:auto;

    background:#fff;

    border-radius:34px;

    padding:70px 65px;

    box-shadow:0 24px 70px rgba(0,0,0,.08);

    overflow:hidden;

    transition:all .45s ease;
}


/* HOVER */

.project-detail-wrapper:hover{
    transform:translateY(-8px);

    box-shadow:0 34px 80px rgba(0,0,0,.12);
}


/* TOP GLOW */

.project-detail-wrapper::before{
    content:"";

    position:absolute;

    top:-140px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(76,175,80,.06);

    filter:blur(10px);
}


/* ICON */

.project-detail-icon{
    width:95px;
    height:95px;

    border-radius:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:32px;

    background:linear-gradient(
        135deg,
        #f4b400,
        #ffcc47
    );

    box-shadow:0 18px 35px rgba(244,180,0,.28);

    animation:projectFloat 4s ease-in-out infinite;
}


/* ICON INSIDE */

.project-detail-icon i{
    color:#fff;

    font-size:42px;
}


/* TITLE */

.project-detail-wrapper h2{
    font-size:clamp(2rem,3vw,3rem);

    font-weight:900;

    line-height:1.2;

    margin-bottom:34px;

    color:#111;
}


/* CONTENT */

.project-detail-content{
    display:flex;
    flex-direction:column;

    gap:6px;
}

.project-detail-content p{
    font-size:17px;

    line-height:2;

    color:#4f4f4f;

    margin-bottom:24px;

    text-align:justify;

    text-justify:inter-word;

    hyphens:auto;
}


/* ================= ANIMATIONS ================= */

@keyframes projectFadeUp{

    to{
        opacity:1;
        transform:translateY(0);
    }
}


@keyframes projectFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}


/* ================= MOBILE ================= */

@media(max-width:991px){

    .project-details-hero{
        height:70vh;
        min-height:520px;
    }

    .project-details-overlay{
        padding-bottom:70px;
    }

    .project-detail-wrapper{
        padding:50px 30px;
    }
}


@media(max-width:768px){

    .project-details-hero{
        height:62vh;
        min-height:450px;
    }

    .project-details-overlay h2{
        line-height:1.15;
    }

    .project-detail-icon{
        width:80px;
        height:80px;
    }

    .project-detail-icon i{
        font-size:34px;
    }

    .project-detail-content p{
        text-align:left;

        hyphens:none;

        line-height:1.9;
    }
}



/* ================= BLOG DETAILS HERO ================= */

.blog-details-hero{
    position:relative;

    width:100%;
    height:78vh;

    min-height:620px;

    overflow:hidden;

    display:flex;
    align-items:flex-end;
}

.blog-details-hero img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center center;
}


/* OVERLAY */

.blog-details-overlay{
    position:relative;
    z-index:2;

    width:100%;

    padding:0 0 90px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.42) 0%,
        rgba(0,0,0,.14) 45%,
        rgba(0,0,0,.04) 100%
    );
}


/* MINI TITLE */

.blog-mini-title{
    display:inline-block;

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:16px;

    opacity:0;

    transform:translateY(25px);

    animation:blogFadeUp .8s ease forwards;
}


/* HERO TITLE */

.blog-details-overlay h2{
    max-width:900px;

    color:#fff;

    font-size:clamp(2.5rem,5vw,5rem);

    font-weight:900;

    line-height:1.08;

    margin:0;

    text-shadow:0 6px 22px rgba(0,0,0,.28);

    opacity:0;

    transform:translateY(40px);

    animation:blogFadeUp .9s ease forwards;

    animation-delay:.2s;
}


/* ================= CONTENT ================= */

.blog-detail-section{
    padding:90px 0 120px;

    background:#f8fbff;
}


/* CONTENT CARD */

.blog-detail-wrapper{
    max-width:1050px;

    margin:auto;

    background:#fff;

    border-radius:34px;

    padding:70px;

    box-shadow:0 24px 70px rgba(0,0,0,.08);

    transition:all .4s ease;

    position:relative;

    overflow:hidden;
}


/* TOP BORDER */

.blog-detail-wrapper::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
        90deg,
        #4CAF50,
        #1976d2,
        #f4b400
    );
}


/* HOVER */

.blog-detail-wrapper:hover{
    transform:translateY(-8px);

    box-shadow:0 30px 80px rgba(0,0,0,.12);
}


/* META */

.blog-detail-meta{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#fff7db;

    color:#b8860b;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:28px;

    text-transform:uppercase;
}


/* TITLE */

.blog-detail-wrapper h2{
    font-size:46px;

    font-weight:900;

    line-height:1.2;

    margin-bottom:32px;

    color:#111;
}


/* CONTENT */

.blog-detail-content p{
    font-size:18px;

    line-height:2;

    color:#4f4f4f;

    text-align:justify;

    text-justify:inter-word;

    hyphens:auto;

    margin-bottom:26px;
}


/* ================= ANIMATIONS ================= */

@keyframes blogFadeUp{

    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* ================= MOBILE ================= */

@media(max-width:991px){

    .blog-details-hero{
        height:68vh;
        min-height:520px;
    }

    .blog-details-overlay{
        padding-bottom:70px;
    }

    .blog-detail-wrapper{
        padding:42px 28px;
    }

    .blog-detail-wrapper h2{
        font-size:34px;
    }
}


@media(max-width:768px){

    .blog-details-hero{
        height:62vh;
        min-height:460px;
    }

    .blog-detail-content p{
        font-size:16px;

        line-height:1.9;

        text-align:left;

        hyphens:none;
    }
}
