/* =========================
BRAND COLORS
========================= */

:root{

    --primary-orange:#f7931e;
    --dark-orange:#e76f00;

    --primary-green:#4caf50;
    --dark-green:#1f7a3d;

    --gold-yellow:#ffcc00;

    --light-bg:#fffdf7;

    --text-dark:#222;
    --text-light:#666;

    --white:#fff;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
}
a{text-decoration:none; color:#000;}

/* =========================
HEADER
========================= */

.header{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 5%;
    background:#fff;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(247,147,30,0.15);
}

.logo img{
    width:190px;
    display:block;
}

/* NAV */

.nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav a{
    text-decoration:none;
    color:var(--text-dark);
    font-weight:600;
    transition:0.3s;
}

.nav a:hover{
     color:var(--primary-orange);
}

/* BUTTON */


.btn{
    background:linear-gradient(
    135deg,
    var(--primary-orange),
    var(--gold-yellow));

    color:#fff !important;
    padding:12px 24px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
     box-shadow:0 10px 25px rgba(247,147,30,0.25);
}

.btn:hover{
    transform:translateY(-3px);

    background:linear-gradient(
    135deg,
    var(--dark-orange),
    var(--primary-orange));
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#111;
}

/* MOBILE BUTTON HIDE */

.mobile-btn{
    display:none;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .desktop-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .nav{
        position:fixed;
        top:80px;
        right:-100%;
        width:280px;
        height:calc(100vh - 80px);
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:40px 25px;
        gap:25px;
        transition:0.4s ease;
        box-shadow:-5px 0 20px rgba(0,0,0,0.08);
    }

    .nav.active{
        right:0;
    }

    .nav a{
        width:100%;
        font-size:17px;
    }

    .mobile-btn{
        display:flex;
        width:100%;
        margin-top:10px;
        text-align:center;
    }

    .logo img{
        width:140px;
    }

}

/* EXTRA SMALL */

@media(max-width:576px){

    .header{
        padding:12px 20px;
    }

    .logo img{
        width:120px;
    }

    .menu-toggle{
        font-size:24px;
    }

}

/* HERO SLIDER */

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slider{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:1s ease-in-out;
    overflow:hidden;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.1);
    animation:zoomEffect 8s linear infinite;
}

.hero-overlay{
 
     position:absolute;
    inset:0;

    background:linear-gradient(
    to right,
    rgba(0,0,0,0.72),
    rgba(31,122,61,0.25)
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:5;
    max-width:700px;
    color:#fff;
}

.hero-content h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
    animation:fadeUp 1s ease;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
    animation:fadeUp 1.4s ease;
}
.text-white{color:#fff!important;}
.text-black{color:#000!important;}
.btn{
    display:inline-block;
    padding:14px 25px;
    
    color:#fff;
    text-decoration:none;
    border-radius:15px;
    transition:.4s;
}

.btn:hover{
    background:#24d366;
}

/* BRICK BREAK EFFECT */

.brick-layer{
    position:absolute;
    inset:0;
    z-index:4;
    display:grid;
    grid-template-columns:repeat(12,1fr);
    grid-template-rows:repeat(6,1fr);
    pointer-events:none;
}

.brick-layer span{
    background:#fff;
    animation:brickBreak 1.5s forwards;
    transform-origin:center;
}

/* ANIMATIONS */

@keyframes brickBreak{

    0%{
        opacity:1;
        transform:scale(1);
    }

    100%{
        opacity:0;
        transform:
        translateY(120px)
        rotate(25deg)
        scale(0);
    }
}

@keyframes zoomEffect{

    0%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

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

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content{
        left:5%;
        right:5%;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }
}


.section{
    padding:50px 8%;
}



.about,
.vastu{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about img,
.vastu img{
    width:100%;
    border-radius:20px;
}
.subtitle,
.section-title span{
    color:var(--primary-orange);
    font-weight:700;
    letter-spacing:2px;
}


h2{
    font-size:42px;
    margin:15px 0;
}

.about-points{
    margin-top:20px;
}

.about-points div{
    margin-bottom:10px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}



.service-grid,
.project-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.project-grid{
    grid-template-columns:repeat(3,1fr);
}

.service-card,
.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.service-card:hover,
.project-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(247,147,30,0.18);
}

.service-card img,
.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
}

.service-card p{
    padding:0 20px 20px;
}

/* CONTACT MODERN */

.contact-modern{
    
    background:
    linear-gradient(
    rgba(31,122,61,0.88),
    rgba(247,147,30,0.75)
    ),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    
    background-attachment:fixed;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-info,
.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-info h3{
    font-size:32px;
    margin-bottom:20px;
}

.contact-info p{
    color:#555;
    line-height:1.8;
}

.info-box{
    margin-top:25px;
}

.info-box h4{
    margin-bottom:8px;
    color:#ff6b00;
}

.map-box{
    margin-top:30px;
    overflow:hidden;
    border-radius:15px;
}

.contact-form-box form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:16px;
    border:none;
    background:#f3f3f3;
    border-radius:12px;
    outline:none;
    font-size:15px;
}

/* FOOTER */

.footer{
    background:linear-gradient(to bottom right, #000000, #1f7a3d);

    color:#fff;
    padding:80px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3,
.footer-col h4{
    margin-bottom:20px;
}

.footer-col p{
    color:#ccc;
    line-height:1.8;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
     color:var(--gold-yellow);
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,0.12);

    backdrop-filter:blur(10px);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.social-links a:hover{
    background:var(--primary-orange);

    transform:translateY(-5px);
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    color:#aaa;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
   background:linear-gradient(
    135deg,
    #25d366,
    #128c7e);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .contact-info,
    .contact-form-box{
        padding:25px;
    }

}

@media(max-width:991px){

    .hero h1{
        font-size:48px;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .project-grid{
        grid-template-columns:1fr 1fr;
    }

    .about,
    .vastu{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    nav{
        position:absolute;
        top:80px;
        right:-100%;
        width:250px;
        background:#fff;
        flex-direction:column;
        padding:30px;
        transition:.4s;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
    }

    nav.active{
        right:20px;
    }

    .menu-toggle{
        display:block;
    }

    .hero h1{
        font-size:38px;
    }

    .service-grid,
    .project-grid{
        grid-template-columns:1fr;
    }

    h2{
        font-size:32px;
    }
}
/* BUILDING STEP SECTION */
/* BUILDING STEP SECTION */

.building-steps{
   background:linear-gradient(to bottom right, #0f7832, #ffc651);
    overflow:hidden;
    position:relative;
}

/* LIGHT OVERLAY */

.building-steps::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.08);
    z-index:1;
}

.building-steps .section-title{
    text-align:center;
    margin-bottom:55px;
    position:relative;
    z-index:2;
}

.building-steps .section-title span{
    color:#fff;
    font-weight:600;
    letter-spacing:2px;
}

.building-steps .section-title h2{
    font-size:46px;
    margin-top:10px;
    color:#fff;
    line-height:1.3;
}

.building-steps .section-title p{
    max-width:720px;
    margin:auto;
    margin-top:18px;
    line-height:1.9;
    color:rgba(255,255,255,0.9);
}

/* SLIDER */

.step-carousel{
    width:100%;
    overflow:hidden;
    position:relative;
    z-index:2;
}

.step-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollSlider 35s linear infinite;
}

/* CARDS */

.step-card{
    width:290px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
    transition:.4s;
    flex-shrink:0;
    position:relative;
}

.step-card:hover{
    transform:translateY(-12px);
}

.step-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

/* CARD CONTENT */

.step-card h3{
    text-align:center;
    padding:22px;
    font-size:20px;
    color:#222;
    position:relative;
}

/* ORANGE LINE */

.step-card h3::after{
    content:'';
    width:60px;
    height:4px;
    background:#ff6b00;
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
    border-radius:10px;
}

/* SLIDER ANIMATION */

@keyframes scrollSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* RESPONSIVE */

@media(max-width:768px){

    .building-steps .section-title h2{
        font-size:32px;
    }

    .building-steps .section-title p{
        font-size:15px;
    }

    .step-card{
        width:240px;
    }

    .step-card img{
        height:200px;
    }

}
/* WORK PROCESS SECTION */

.work-process{
     background:linear-gradient(to bottom right, #0f7832, #ffc651);
    
    overflow:hidden;
}

.work-process .section-title{
    text-align:center;
    margin-bottom:60px;
}

.work-process .section-title span{
    color:#fff;
    font-weight:600;
    letter-spacing:2px;
}

.work-process .section-title h2{
    color:#fff;
    margin-top:10px;
    font-size:44px;
}

.work-process .section-title p{
    max-width:700px;
    margin:auto;
    margin-top:15px;
    color:rgba(255,255,255,0.9);
    line-height:1.8;
}

/* GRID */

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* COLUMN */

.process-column{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* ITEM */

.process-item{
    background:#fff;
    border-radius:18px;
    padding:22px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:.4s;
}

.process-item:hover{
    transform:translateY(-8px);
}

/* NUMBER */

.process-number{
    min-width:65px;
    height:65px;
    border-radius:50%;
   
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
   
    background:linear-gradient(
    135deg,
    var(--primary-orange),
    var(--gold-yellow));

    color:#fff;

    box-shadow:0 10px 20px rgba(247,147,30,0.3);
}

/* CONTENT */

.process-content h3{
    font-size:22px;
    margin-bottom:10px;
    color:#222;
}

.process-content p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .process-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .work-process .section-title h2{
        font-size:32px;
    }

    .process-item{
        padding:18px;
    }

    .process-content h3{
        font-size:18px;
    }

    .process-number{
        min-width:55px;
        height:55px;
        font-size:20px;
    }

}
/* TEAM SECTION */


.team-section{
    background:linear-gradient(to bottom right, #0f7832, #ffc651);
    
    overflow:hidden;
}

/* TITLE */

.team-section .section-title{
    text-align:center;
    margin-bottom:60px;
}

.team-section .section-title span{
    color:#ff6b00;
    font-weight:600;
    letter-spacing:2px;
}

.team-section .section-title h2{
    color:#fff;
    font-size:44px;
    margin-top:12px;
}

.team-section .section-title p{
    max-width:700px;
    margin:auto;
    margin-top:18px;
    color:#fff;
    line-height:1.8;
}

/* GRID */

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.team-card{
     background:#0f3806;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1);
    
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    transition:.4s;
   
}

.team-card:hover{
    transform:translateY(-10px);
    
    border-color:var(--gold-yellow);
}

/* ROUND IMAGE */

.team-image{
    width:220px;
    height:220px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #fff;
    margin-bottom:25px;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TEXT */

.team-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:8px;
}

.team-card span{
    color:#fff;
    font-weight:600;
    display:block;
    margin-bottom:18px;
}

.team-card p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .team-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .team-grid{
        grid-template-columns:1fr;
    }

    .team-section .section-title h2{
        font-size:32px;
    }

    .team-image{
        width:180px;
        height:180px;
    }

}
/* INNER PAGE BANNER */

.inner-banner{
    position:relative;
    height:50vh;
    min-height:380px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    overflow:hidden;

    margin-top:90px;
}

/* IMAGE */

.inner-banner img{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

/* OVERLAY */

.inner-banner-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
    135deg,
    rgba(0,0,0,0.72),
    rgba(31,122,61,0.45)
    );

    z-index:1;
}

/* CONTENT */

.inner-banner-content{
    position:relative;
    z-index:2;

    max-width:800px;
    padding:20px;

    color:#fff;
}

.inner-banner-content h1{
    font-size:64px;
    font-weight:700;
    margin-bottom:15px;

    color:#fff;
    text-shadow:0 5px 20px rgba(0,0,0,0.35);
}

.inner-banner-content p{
    font-size:20px;
    line-height:1.8;

    color:#f3f3f3;
}

/* RESPONSIVE */

@media(max-width:768px){

    .inner-banner{
        height:38vh;
        min-height:300px;
        margin-top:75px;
    }

    .inner-banner-content h1{
        font-size:38px;
    }

    .inner-banner-content p{
        font-size:16px;
    }

}
/* WHY CHOOSE US */

.why-choose{
    background:#f8f8f8;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.choose-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.choose-card:hover{
    transform:translateY(-10px);
    background:#02340c;
}

.choose-card:hover h3,
.choose-card:hover p,
.choose-card:hover i{
    color:#fff;
}

.choose-card i{
    font-size:50px;
    color:#24d366;
    margin-bottom:25px;
    transition:.4s;
}

.choose-card h3{
    margin-bottom:15px;
    font-size:24px;
    transition:.4s;
}

.choose-card p{
    line-height:1.8;
    color:#666;
    transition:.4s;
}

/* ACHIEVEMENT SECTION */

.achievement-section{
   
    padding:100px 8%;
    background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}



.achievement-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.achievement-box{
    text-align:center;
    background:rgba(255,255,255,0.08);
    padding:45px 20px;
    border-radius:24px;
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.1);
}

.achievement-box h2{
    color:#24d366;
    font-size:56px;
    margin-bottom:10px;
}

.achievement-box p{
    color:#fff;
    font-size:18px;
    letter-spacing:1px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .choose-grid,
    .achievement-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .choose-grid,
    .achievement-grid{
        grid-template-columns:1fr;
    }

    .achievement-box h2{
        font-size:42px;
    }

}
/* TIMELINE SECTION */

.timeline-section{
    background:#f8f8f8;
}

.timeline-wrapper{
    max-width:1000px;
    margin:auto;
    position:relative;
}

.timeline-wrapper::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#24d366;
    transform:translateX(-50%);
}

.timeline-item{
    width:50%;
    padding:30px;
    position:relative;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-number{
    width:70px;
    height:70px;
    background:#02340c;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    position:absolute;
    top:35px;
    right:-35px;
    z-index:2;
}

.timeline-item:nth-child(even) .timeline-number{
    left:-35px;
}

.timeline-content{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.timeline-content h3{
    margin-bottom:15px;
    font-size:24px;
}

.timeline-content p{
    color:#666;
    line-height:1.8;
}

/* TESTIMONIAL SECTION */

.testimonial-section{
    background:#02340c;
}

.testimonial-section .section-title h2{
    color:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#0f3806;
    padding:40px 30px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.08);
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.quote-icon{
    font-size:50px;
    color:#24d366;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#d6d6d6;
    line-height:1.9;
    margin-bottom:30px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #24d366;
}

.client-info h4{
    color:#fff;
    margin-bottom:5px;
}

.client-info span{
    color:#ccc;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .timeline-wrapper::before{
        left:30px;
    }

    .timeline-item{
        width:100%;
        padding-left:90px;
        padding-right:20px;
        left:0!important;
        text-align:left!important;
    }

    .timeline-number{
        left:0!important;
        right:auto;
    }

}

@media(max-width:768px){

    .timeline-content{
        padding:25px;
    }

    .timeline-content h3{
        font-size:20px;
    }

}
/* SERVICE PROCESS */

.service-process{
    background:linear-gradient(to bottom right, #0f7832, #ffc651);
}

.service-process .section-title h2{
    color:#fff;
}

.service-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-box{
    background:#0f3806;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    transition:.4s;
}

.process-box:hover{
    transform:translateY(-10px);
    background:#24d366;
}

.process-box:hover h3,
.process-box:hover p,
.process-box:hover i{
    color:#fff;
}

.process-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.process-icon i{
    font-size:38px;
    color:#24d366;
    transition:.4s;
}

.process-box h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
    transition:.4s;
}

.process-box p{
    color:#cfcfcf;
    line-height:1.8;
    transition:.4s;
}

/* FEATURED SERVICE */

.featured-service{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    background:#f8f8f8;
}

.featured-image img{
    width:100%;
    border-radius:30px;
    height:100%;
    object-fit:cover;
}

.featured-content span{
    color:#24d366;
    font-weight:600;
    letter-spacing:2px;
}

.featured-content h2{
    font-size:46px;
    margin:20px 0;
}

.featured-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.featured-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:35px;
}

.featured-points div{
    background:#fff;
    padding:18px;
    border-radius:14px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    font-weight:500;
}

.featured-points i{
    color:#24d366;
    margin-right:8px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .service-process-grid{
        grid-template-columns:1fr 1fr;
    }

    .featured-service{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .service-process-grid{
        grid-template-columns:1fr;
    }

    .featured-points{
        grid-template-columns:1fr;
    }

    .featured-content h2{
        font-size:34px;
    }

}
/* VASTU BENEFITS */

.vastu-benefits{
    background:#f8f8f8;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.benefit-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.benefit-card:hover{
    transform:translateY(-10px);
    background:#02340c;
}

.benefit-card:hover h3,
.benefit-card:hover p,
.benefit-card:hover i{
    color:#fff;
}

.benefit-card i{
    font-size:55px;
    color:#24d366;
    margin-bottom:25px;
    transition:.4s;
}

.benefit-card h3{
    font-size:24px;
    margin-bottom:15px;
    transition:.4s;
}

.benefit-card p{
    color:#666;
    line-height:1.8;
    transition:.4s;
}

/* VASTU CONSULTATION */

.vastu-consultation{
    position:relative;
    background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1800&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    text-align:center;
    overflow:hidden;
}

.consult-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
}

.consult-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.consult-content span{
    color:#24d366;
    font-weight:600;
    letter-spacing:2px;
}

.consult-content h2{
    color:#fff;
    font-size:52px;
    margin:20px 0;
}

.consult-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;
}

.consult-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.consult-points div{
    background:rgba(255,255,255,0.08);
    padding:18px;
    border-radius:14px;
    color:#fff;
    backdrop-filter:blur(5px);
}

.consult-points i{
    color:#24d366;
    margin-right:8px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .benefit-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .benefit-grid,
    .consult-points{
        grid-template-columns:1fr;
    }

    .consult-content h2{
        font-size:34px;
    }

}
p{padding-bottom:10px;}
.project-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin:40px 0;
}

.tab-btn{
    padding:12px 25px;
    border:none;
    background:#f3f3f3;
    cursor:pointer;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.tab-btn.active,
.tab-btn:hover{
    background:#0f172a;
    color:#fff;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

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

.project-info{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,.8));
    color:#fff;
}

.project-info h3{
    margin-bottom:5px;
}

.hide{
    display:none;
}