﻿/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
   ROOT
========================================= */

:root{

    --primary:#ff8c00;
    --primary2:#ffb000;
    --dark:#0f172a;
    --dark2:#111827;
    --light:#f8fafc;
    --text:#64748b;
    --white:#ffffff;

}

/* =========================================
   RESET
========================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

    background:#f5f7fb;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

html{

    scroll-behavior:smooth;

}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
    #ffb000,
    #ff8c00);

    border-radius:20px;

}

/* =========================================
   HERO SECTION
========================================= */

.projects-hero{

    position:relative;

    padding:160px 0 130px;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #111827);

    overflow:hidden;

}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    rgba(255,176,0,0.15),
    transparent);

}

/* CONTENT */

.projects-hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    color:white;

}

/* BADGE */

.hero-badge{

    display:inline-block;

    padding:12px 30px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.10);

    color:#ffb000;

    font-size:14px;
    font-weight:700;

    margin-bottom:28px;

    letter-spacing:1px;

    backdrop-filter:blur(10px);

}

/* TITLE */

.projects-hero-content h1{

    font-size:82px;

    font-weight:900;

    line-height:1.2;

    margin-bottom:25px;

    font-family:'Montserrat',sans-serif;

}

.projects-hero-content h1 span{

    color:#ffb000;

}

/* TEXT */

.projects-hero-content p{

    max-width:850px;

    margin:auto;

    color:#e2e8f0;

    font-size:20px;

    line-height:2;

}

/* =========================================
   OVERVIEW SECTION
========================================= */

.project-overview{

    padding:120px 0;

}

/* BOX */

.overview-box{

    background:white;

    border-radius:40px;

    overflow:hidden;

    padding:50px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

}

/* IMAGE */

.overview-img{

    overflow:hidden;

    border-radius:30px;

}

.overview-img img{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:0.7s;

}

.overview-box:hover .overview-img img{

    transform:scale(1.08);

}

/* CONTENT */

.overview-content span{

    display:inline-block;

    color:#ff8c00;

    font-size:14px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:18px;

}

.overview-content h2{

    font-size:58px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:22px;

    color:#111827;

    font-family:'Montserrat',sans-serif;

}

.overview-content p{

    color:#64748b;

    line-height:2;

    font-size:16px;

    margin-bottom:30px;

}

/* GRID */

.overview-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

/* ITEM */

.overview-item{

    background:#f8fafc;

    border-radius:22px;

    padding:25px;

    text-align:center;

    transition:0.4s;

}

/* HOVER */

.overview-item:hover{

    transform:translateY(-6px);

    background:white;

    box-shadow:
    0 12px 30px rgba(255,176,0,0.12);

}

/* NUMBER */

.overview-item h4{

    font-size:42px;

    font-weight:900;

    color:#ff8c00;

    margin-bottom:10px;

    font-family:'Montserrat',sans-serif;

}

/* TEXT */

.overview-item p{

    margin:0;

    color:#334155;

    font-size:14px;

    font-weight:600;

}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-size:62px;

    font-weight:900;

    color:#111827;

    margin-bottom:18px;

    font-family:'Montserrat',sans-serif;

}

.section-heading p{

    max-width:850px;

    margin:auto;

    color:#64748b;

    font-size:18px;

    line-height:2;

}

/* =========================================
   PROJECT GALLERY
========================================= */

.project-gallery-section{

    padding:40px 0 120px;

}

/* CARD */

.project-card{

    background:white;

    border-radius:35px;

    overflow:hidden;

    transition:0.5s;

    height:100%;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.08);

}

/* HOVER */

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(255,176,0,0.18);

}

/* IMAGE */

.project-img{

    overflow:hidden;

}

.project-img img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:0.7s;

}

.project-card:hover .project-img img{

    transform:scale(1.08);

}

/* CONTENT */

.project-content{

    padding:30px 25px;

}

.project-content span{

    display:inline-block;

    color:#ff8c00;

    font-size:13px;

    font-weight:800;

    margin-bottom:12px;

    letter-spacing:1px;

}

.project-content h3{

    font-size:30px;

    font-weight:800;

    line-height:1.4;

    margin-bottom:15px;

    color:#111827;

    font-family:'Montserrat',sans-serif;

}

.project-content p{

    color:#64748b;

    line-height:1.9;

    font-size:15px;

}

/* =========================================
   PROCESS SECTION
========================================= */

.construction-process-section{

    padding:120px 0;

    background:white;

}

/* BOX */

.process-box{

    margin-bottom:120px;

}

/* IMAGE */

.process-img{

    overflow:hidden;

    border-radius:35px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.10);

}

.process-img img{

    width:100%;

    height:480px;

    object-fit:cover;

    transition:0.7s;

}

.process-box:hover .process-img img{

    transform:scale(1.08);

}

/* CONTENT */

.process-content{

    padding:10px;

}

.process-content span{

    display:inline-block;

    color:#ff8c00;

    font-size:14px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:18px;

}

.process-content h3{

    font-size:52px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:22px;

    color:#111827;

    font-family:'Montserrat',sans-serif;

}

.process-content p{

    color:#64748b;

    line-height:2;

    font-size:16px;

    margin-bottom:28px;

}

/* LIST */

.process-content ul{

    padding:0;

}

.process-content ul li{

    list-style:none;

    position:relative;

    padding-left:28px;

    margin-bottom:16px;

    color:#334155;

    font-size:15px;

    font-weight:600;

}

/* ICON */

.process-content ul li::before{

    content:'✔';

    position:absolute;

    left:0;

    color:#ff8c00;

    font-size:15px;

    font-weight:900;

}

/* =========================================
   CTA SECTION
========================================= */

.projects-cta{

    padding:130px 0;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #111827);

    overflow:hidden;

}

/* BOX */

.cta-box{

    background:
    rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:80px 50px;

    border-radius:40px;

    backdrop-filter:blur(12px);

}

/* SMALL */

.cta-box span{

    display:inline-block;

    color:#ffb000;

    font-size:14px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:18px;

}

/* TITLE */

.cta-box h2{

    font-size:64px;

    font-weight:900;

    line-height:1.3;

    margin-bottom:22px;

    color:white;

    font-family:'Montserrat',sans-serif;

}

/* TEXT */

.cta-box p{

    max-width:850px;

    margin:auto;

    color:#e2e8f0;

    font-size:18px;

    line-height:2;

}

/* BUTTONS */

.cta-btns{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* =========================================
   BUTTONS
========================================= */

.main-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #ff8c00,
    #ffb000);

    color:white;

    font-size:16px;

    font-weight:700;

    transition:0.5s;

    border:none;

    box-shadow:
    0 15px 35px rgba(255,176,0,0.25);

}

.main-btn:hover{

    transform:translateY(-5px);

    color:white;

    box-shadow:
    0 20px 45px rgba(255,176,0,0.35);

}

/* OUTLINE */

.outline-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,0.18);

    color:white;

    font-size:16px;

    font-weight:700;

    transition:0.5s;

    background:
    rgba(255,255,255,0.04);

}

.outline-btn:hover{

    background:white;

    color:#111827;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .projects-hero-content h1{

        font-size:54px;

    }

    .overview-content h2,
    .process-content h3{

        font-size:40px;

    }

    .section-heading h2,
    .cta-box h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .projects-hero{

        padding:110px 0 80px;

    }

    .projects-hero-content h1{

        font-size:34px;

        line-height:1.4;

    }

    .projects-hero-content p{

        font-size:14px;

        line-height:1.9;

    }

    .hero-badge{

        font-size:11px;

        padding:10px 18px;

    }

    .project-overview,
    .project-gallery-section,
    .construction-process-section,
    .projects-cta{

        padding:70px 0;

    }

    .overview-box{

        padding:22px;

        border-radius:25px;

    }

    .overview-img img{

        height:280px;

    }

    .overview-content h2,
    .process-content h3{

        font-size:32px;

        line-height:1.4;

    }

    .section-heading{

        margin-bottom:45px;

    }

    .section-heading h2{

        font-size:32px;

        line-height:1.4;

    }

    .section-heading p{

        font-size:14px;

        line-height:1.9;

    }

    .overview-grid{

        grid-template-columns:1fr;

    }

    .project-card{

        border-radius:25px;

    }

    .project-img img{

        height:240px;

    }

    .project-content{

        padding:24px 20px;

    }

    .project-content h3{

        font-size:24px;

    }

    .process-box{

        margin-bottom:70px;

    }

    .process-img{

        border-radius:25px;

    }

    .process-img img{

        height:260px;

    }

    .process-content p{

        font-size:14px;

        line-height:1.9;

    }

    .process-content ul li{

        font-size:13px;

        line-height:1.8;

    }

    .cta-box{

        padding:45px 22px;

        border-radius:28px;

    }

    .cta-box h2{

        font-size:32px;

        line-height:1.5;

    }

    .cta-box p{

        font-size:14px;

        line-height:1.9;

    }

    .cta-btns{

        flex-direction:column;

    }

    .main-btn,
    .outline-btn{

        width:100%;

        font-size:14px;

        padding:15px 20px;

    }

}