/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#333;
}

h1,h2,h3,h4{
    font-family:'Montserrat',sans-serif;
}

/* ================= NAVIGATION ================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 8%;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    z-index:1000;
}

.logo{
    width: 140px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin:0 25px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#F7931E;
}

/* ================= BUTTON ================= */

.btn{
    background:#F7931E;
    color:white;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}
.btn2{
    margin-left:20px;
    padding:12px 30px;
    border:2px solid white;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.btn2:hover{
    background:white;
    color:#0B3D91;
}

.btn:hover{
    background:#0B3D91;
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    padding-top:120px;
    background:url("images/hero.jpg");
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    color:white;
    width:60%;
    margin-left:8%;
}
.hero-content small{
    color: #F7931E;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.hero-content hr{
    width:120px;
    border:2px solid #F7931E;
    margin:25px 0;
}

.hero h1{
    font-size:65px;
    line-height:80px;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    line-height:35px;
    margin-bottom:40px;
}
/* ================= ABOUT ================= */

.about{

    padding:100px 8%;

    background:#ffffff;

}

.about-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.about-content{

    flex:1;

}

.about-content small{

    color:#F7931E;

    font-size:18px;

    font-weight:600;

    letter-spacing:2px;

}

.about-content h2{

    font-size:42px;

    margin:20px 0;

    color:#0B3D91;

}

.about-content p{

    font-size:18px;

    line-height:32px;

    margin-bottom:20px;

    color:#555;

}

.about-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin:35px 0;

}

.about-list div{

    font-size:17px;

    font-weight:500;

}
/*================ SERVICES =================*/

.services{

    padding:100px 8%;

    background:#f7f9fc;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-image{

    position:relative;

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:270px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-icon{

    position:absolute;

    bottom:-28px;

    right:30px;

    width:70px;

    height:70px;

    background:#F7931E;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

.service-content{

    padding:45px 35px 35px;

}

.service-content h3{

    color:#0B3D91;

    font-size:28px;

    margin-bottom:18px;

}

.service-content p{

    line-height:30px;

    color:#666;

    margin-bottom:25px;

}

.service-content a{

    color:#F7931E;

    text-decoration:none;

    font-weight:bold;

}

.service-content a:hover{

    color:#0B3D91;

}
/*================ PROJECTS ================*/

.projects{

    padding:100px 8%;

    background:white;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.project-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:30px;

    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.15));

    color:white;

}

.project-overlay span{

    background:#F7931E;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:bold;

}

.project-overlay h3{

    margin-top:20px;

    font-size:28px;

}

.project-overlay p{

    margin-top:8px;

    color:#ddd;

}

.project-card:hover img{

    transform:scale(1.12);

}

.projects-btn{

    text-align:center;

    margin-top:70px;

}
/*================ WHY US ================*/

.why-us{

    padding:100px 8%;

    display:flex;

    align-items:center;

    gap:70px;

    background:#f8f9fb;

}

.why-image{

    flex:1;

}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.why-content{

    flex:1;

}

.why-content small{

    color:#F7931E;

    font-size:18px;

    font-weight:600;

    letter-spacing:3px;

}

.why-content h2{

    font-size:45px;

    color:#0B3D91;

    margin:20px 0;

}

.why-content p{

    line-height:32px;

    color:#666;

    margin-bottom:35px;

}

.why-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.why-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.why-item i{

    color:#F7931E;

}
/*================ STATS ================*/

.stats{

    background:#0B3D91;

    color:white;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;

    padding:80px 8%;

}

.stat i{

    font-size:50px;

    color:#F7931E;

    margin-bottom:20px;

}

.stat h2{

    font-size:50px;

    margin-bottom:10px;

}

.stat p{

    font-size:18px;

}
/*================ FOOTER ================*/

footer{

    background:#111827;

    color:white;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-container h3{

    margin-bottom:25px;

}

.footer-container a{

    display:block;

    color:#ddd;

    text-decoration:none;

    margin-bottom:15px;

    transition:.3s;

}

.footer-container a:hover{

    color:#F7931E;

}

.footer-container p{

    color:#ccc;

    line-height:28px;

}

footer hr{

    margin:50px 0 20px;

    border:1px solid #333;

}

.copyright{

    text-align:center;

    color:#999;

}
/*================ ABOUT HERO ================*/

.about-hero{

    height:60vh;

    background:url("images/about-banner.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

}

.about-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.60);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.about-overlay h1{

    font-size:60px;

    margin-bottom:20px;

}

.about-overlay p{

    font-size:22px;

    width:700px;

}
.company-story{

    padding:100px 8%;

    display:flex;

    gap:70px;

    align-items:center;

}

.story-image{

    flex:1;

}

.story-image img{

    width:100%;

    border-radius:20px;

}

.story-content{

    flex:1;

}

.story-content small{

    color:#F7931E;

    letter-spacing:3px;

    font-weight:600;

}

.story-content h2{

    color:#0B3D91;

    font-size:45px;

    margin:20px 0;

}

.story-content p{

    line-height:32px;

    color:#555;

    margin-bottom:20px;

}
.mission{

    padding:100px 8%;

    background:#f8f9fb;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.mission-card{

    background:white;

    text-align:center;

    padding:50px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.mission-card:hover{

    transform:translateY(-10px);

}

.mission-card i{

    font-size:55px;

    color:#F7931E;

    margin-bottom:25px;

}

.mission-card h3{

    color:#0B3D91;

    margin-bottom:20px;

}

.mission-card p{

    line-height:30px;

    color:#666;

}
/*================ WHY COMPANY ================*/

.why-company{

    padding:100px 8%;

    display:flex;

    align-items:center;

    gap:70px;

    background:#f8f9fb;

}

.why-company-image{

    flex:1;

}

.why-company-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.why-company-content{

    flex:1;

}

.why-company-content small{

    color:#F7931E;

    font-size:18px;

    letter-spacing:3px;

    font-weight:600;

}

.why-company-content h2{

    color:#0B3D91;

    font-size:48px;

    margin:20px 0;

}

.why-company-content p{

    color:#666;

    line-height:32px;

    margin-bottom:35px;

    font-size:18px;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:40px;

}

.why-box{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#333;

}

.why-box i{

    color:#F7931E;

    font-size:22px;

}
/*================ ABOUT CTA ================*/

.about-cta{

    padding:120px 8%;

    background:linear-gradient(rgba(11,61,145,.92), rgba(11,61,145,.92)),
               url("images/cta-bg.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

    color:white;

}

.cta-content{

    max-width:900px;

    margin:auto;

}

.about-cta small{

    color:#F7931E;

    letter-spacing:3px;

    font-weight:600;

    font-size:18px;

}

.about-cta h2{

    font-size:52px;

    margin:25px 0;

}

.about-cta p{

    font-size:20px;

    line-height:34px;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

}

.btn-outline{

    padding:15px 35px;

    border:2px solid white;

    border-radius:40px;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.btn-outline:hover{

    background:white;

    color:#0B3D91;

}
/*================ SERVICES HERO ================*/

.services-hero{

    height:65vh;

    background:url("images/services-banner.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

}

.services-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.60);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    padding:20px;

}

.services-overlay small{

    color:#F7931E;

    letter-spacing:3px;

    font-weight:600;

    font-size:18px;

    margin-bottom:20px;

}

.services-overlay h1{

    font-size:65px;

    margin-bottom:20px;

}

.services-overlay p{

    width:750px;

    max-width:90%;

    font-size:22px;

    line-height:36px;

}
/*================ SERVICES INTRO ================*/

.services-intro{

    padding:90px 8% 50px;

    text-align:center;

}

.services-intro small{

    color:#F7931E;

    font-size:18px;

    letter-spacing:3px;

    font-weight:600;

}

.services-intro h2{

    font-size:50px;

    color:#0B3D91;

    margin:20px 0;

}

.services-intro p{

    max-width:900px;

    margin:auto;

    color:#666;

    line-height:34px;

    font-size:20px;

}
/*================ SERVICE SECTION ================*/

.service-section{

    padding:100px 8%;

    display:flex;

    align-items:center;

    gap:70px;

}

.service-image{

    flex:1;

}

.service-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    transition:.4s;

}

.service-image img:hover{

    transform:scale(1.03);

}

.service-content{

    flex:1;

}

.service-content small{

    color:#F7931E;

    font-size:18px;

    letter-spacing:3px;

    font-weight:600;

}

.service-content h2{

    color:#0B3D91;

    font-size:48px;

    margin:20px 0;

}

.service-content p{

    color:#666;

    line-height:34px;

    font-size:18px;

    margin-bottom:30px;

}

.service-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.service-list div{

    font-weight:600;

    color:#333;

}

.service-list i{

    color:#F7931E;

    margin-right:10px;

}
/*================ REVERSE LAYOUT ================*/

.reverse{

    flex-direction:row-reverse;

    background:#f8f9fb;

}
/*================ PROCESS SECTION ================*/

.process{

    padding:110px 8%;

    background:#f8f9fb;

}

.process-title{

    text-align:center;

    margin-bottom:70px;

}

.process-title small{

    color:#F7931E;

    letter-spacing:4px;

    font-size:18px;

    font-weight:600;

}

.process-title h2{

    font-size:55px;

    color:#0B3D91;

    margin:15px 0;

}

.process-title p{

    width:700px;

    max-width:100%;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:32px;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.process-card{

    background:#fff;

    padding:45px 30px;

    border-radius:18px;

    text-align:center;

    position:relative;

    transition:.4s;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.process-card:hover{

    transform:translateY(-10px);

}

.process-card .number{

    position:absolute;

    top:20px;

    right:20px;

    color:#F7931E;

    font-size:32px;

    font-weight:bold;

    opacity:.2;

}

.process-card i{

    font-size:55px;

    color:#F7931E;

    margin-bottom:25px;

}

.process-card h3{

    color:#0B3D91;

    margin-bottom:20px;

}

.process-card p{

    color:#666;

    line-height:30px;

}
/*================ FAQ ================*/

.faq{

    padding:110px 8%;

}

.faq-title{

    text-align:center;

    margin-bottom:60px;

}

.faq-title small{

    color:#F7931E;

    letter-spacing:4px;

    font-weight:600;

}

.faq-title h2{

    font-size:52px;

    color:#0B3D91;

    margin:15px 0;

}

.faq-title p{

    width:700px;

    max-width:100%;

    margin:auto;

    color:#666;

    line-height:32px;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-container details{

    background:#fff;

    margin-bottom:20px;

    padding:25px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    cursor:pointer;

}

.faq-container summary{

    font-size:20px;

    font-weight:600;

    color:#0B3D91;

    list-style:none;

}

.faq-container summary::-webkit-details-marker{

    display:none;

}

.faq-container p{

    margin-top:20px;

    color:#666;

    line-height:30px;

}
/*================ SERVICES CTA ================*/

.services-cta{

    background:#0B3D91;

    padding:120px 8%;

    text-align:center;

    color:#fff;

}

.services-cta small{

    color:#F7931E;

    letter-spacing:4px;

    font-size:18px;

    font-weight:600;

}

.services-cta h2{

    font-size:62px;

    margin:20px auto;

    max-width:900px;

    line-height:1.2;

}

.services-cta p{

    max-width:800px;

    margin:0 auto 45px;

    font-size:22px;

    line-height:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.btn-outline{

    display:inline-block;

    padding:18px 40px;

    border:2px solid #fff;

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:#fff;

    color:#0B3D91;

}
/*==========================
    PROJECTS HERO
==========================*/

.projects-hero{

    position:relative;
    height:85vh;

    background:url(images/projects-banner.jpg) center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.projects-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.60);

}

.projects-content{

    position:relative;
    z-index:2;

    color:#fff;

    width:90%;
    max-width:900px;

}

.projects-content .section-subtitle{

    color:#ff9518;

    font-size:18px;
    font-weight:700;

    letter-spacing:5px;

    margin-bottom:20px;

}

.projects-content h1{

    font-size:68px;
    font-weight:800;

    line-height:1.15;

    margin-bottom:30px;

}

.projects-content p{

    font-size:26px;

    line-height:1.8;

}
.projects-content{
    position: relative;
    z-index: 2;
    color: #fff;
    width: 90%;
    max-width: 900px;

    padding-top: 140px;   /* Adjust between 120px–150px if needed */
}
.projects-content h1{
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
}
/*==========================
    FEATURED PROJECTS
==========================*/

.featured-projects{

    padding:100px 8%;
    background:#fff;

}

.featured-projects .section-subtitle{

    text-align:center;
    color:#ff9518;
    font-size:18px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:15px;

}

.featured-projects h2{

    text-align:center;
    font-size:56px;
    color:#0f3f96;
    margin-bottom:20px;

}

.section-description{

    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
    font-size:22px;
    line-height:1.8;
    color:#666;

}

.projects-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.project-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 20px 40px rgba(15,63,150,.15);

    transition:.4s ease;
    display:flex;
    flex-direction:column;
    border:1px solid #eeeeee;

}

.project-card:hover{

    transform:translateY(-12px) scale(1.02);

}

.project-image{

    position:relative;
    overflow:hidden;

}

.project-image img{

    width:100%;
    height:280px;
    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-tag{

    position:absolute;
    top:20px;
    left:20px;

    background:#ff9518;
    color:#fff;

    padding:8px 18px;
    border-radius:30px;

    font-size:14px;
    font-weight:600;

}

.project-info{

    padding:35px;
    flex:1;

    display:flex;
    flex-direction:column;

}

.project-info h3{

    color:#0f3f96;
    font-size:30px;
    margin-bottom:12px;

}

.location{

    color:#ff9518;
    font-weight:600;
    margin-bottom:15px;

}

.project-info p{

    color:#666;
    line-height:1.8;

}

.project-btn{

    display:inline-block;
    margin-top:20px;

    color:#ff9518;
    font-weight:600;
    text-decoration:none;

    transition:.3s;
    margin-top:auto;

}

.project-btn:hover{

    letter-spacing:1px;

}
.project-tag{

    transition:.3s;

}

.project-card:hover .project-tag{

    transform:scale(1.05);

}
.project-btn{

    transition:.3s;

}

.project-btn:hover{

    color:#0f3f96;

    padding-left:6px;

}
.project-image{

    position:relative;

}

.project-image::after{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        rgba(0,0,0,0),
        rgba(0,0,0,.12)
    );

}
/*==================================
        MORE PROJECTS
==================================*/

.more-projects{

    padding:110px 8%;

    background:#f7f8fb;

}

.more-projects .section-title{

    text-align:center;

    margin-bottom:70px;

}

.more-projects span{

    color:#ff9800;

    letter-spacing:6px;

    font-weight:700;

    font-size:15px;

}

.more-projects h2{

    font-size:58px;

    color:#15439a;

    margin:18px 0;

}

.more-projects p{

    color:#666;

    font-size:20px;

    max-width:800px;

    margin:auto;

    line-height:1.8;

}

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    height:320px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-card:hover img{

    transform:scale(1.12);

}

.gallery-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:28px;

    color:white;

    background:linear-gradient(to top,
    rgba(0,0,0,.88),
    rgba(0,0,0,.45),
    transparent);

    transition:.4s;

}

.gallery-card:hover .gallery-content{

    padding-bottom:38px;

}

.gallery-content h3{

    font-size:28px;

    margin-bottom:10px;

}

.gallery-content p{

    color:#ffffff;

    font-size:17px;

}

.gallery-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(21,67,154,.18);

    opacity:0;

    transition:.4s;

}

.gallery-card:hover::before{

    opacity:1;

}
/*================ PROJECT STATS ================*/

.project-stats{

    background:#15439a;

    padding:90px 8%;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    color:#fff;

}

.stat-box i{

    font-size:48px;

    color:#ff9800;

    margin-bottom:20px;

}

.stat-box h2{

    font-size:55px;

    margin-bottom:10px;

    font-weight:700;

}

.stat-box p{

    font-size:20px;

    opacity:.9;

}

@media(max-width:991px){

.stats-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.stats-grid{

    grid-template-columns:1fr;

}

}
.stats-heading{

    text-align:center;

    margin-bottom:40px;

}

.stats-heading span{

    color:#ff9800;

    letter-spacing:6px;

    font-size:15px;

    font-weight:700;

}

.stats-heading h2{

    color:#15439a;      /* Blue instead of white */

    font-size:58px;

    margin:18px 0;

    font-weight:700;

}

.stats-heading p{

    color:#666;         /* Dark grey instead of light blue */

    font-size:20px;

    max-width:750px;

    margin:auto;

    line-height:1.8;

}
.stat-card{
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card:hover h3{
    color:#ff9800;
}

.stat-card:hover i{
    transform:scale(1.15);
}
.stats-divider{
    width:90px;
    height:4px;
    background:#ff9800;
    margin:0 auto 40px;
    border-radius:50px;
}
/*=========================
      TESTIMONIALS
=========================*/

.testimonials{

    padding:120px 8%;
    background:#f8f9fc;
}

.testimonials .container{

    max-width:1300px;
    margin:auto;
}

.section-subtitle{

    display:block;
    text-align:center;
    color:#ff9800;
    letter-spacing:6px;
    font-weight:700;
    font-size:15px;
    margin-bottom:20px;
}

.testimonials h2{

    text-align:center;
    font-size:60px;
    color:#17479E;
    margin-bottom:25px;
    font-weight:800;
}

.section-description{

    max-width:760px;
    margin:auto;
    text-align:center;
    color:#666;
    font-size:22px;
    line-height:1.8;
    margin-bottom:70px;
}


/*=========================
      GRID
=========================*/

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}


/*=========================
      CARD
=========================*/

.testimonial-card{

    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);
}


/*=========================
      STARS
=========================*/

.stars{

    color:#ff9800;
    font-size:28px;
    margin-bottom:25px;
}


/*=========================
      REVIEW
=========================*/

.testimonial-text{

    font-size:17px;
    color:#555;
    line-height:1.9;
    font-style:italic;
    margin-bottom:35px;
}


/*=========================
      CLIENT
=========================*/

.client-info h4{

    color:#17479E;
    font-size:24px;
    margin-bottom:8px;
}

.client-info span{

    display:block;
    color:#888;
    font-weight:600;
    margin-bottom:12px;
}

.client-info p{

    color:#ff9800;
    font-weight:600;
}


/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:1fr;
}

.testimonials h2{

font-size:42px;
}

.section-description{

font-size:18px;
}

}
/*======================================
        PROJECT CTA
=======================================*/

.projects-cta{

    background:#17479E;
    padding:140px 8%;
    text-align:center;
    transition:.4s ease;
}

.projects-cta .container{

    max-width:900px;
    margin:auto;
}

.cta-subtitle{

    display:block;
    color:#ff9800;
    letter-spacing:6px;
    font-size:15px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:7px;
}

.projects-cta h2{

    color:#fff;
    font-size:64px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:30px;
}

.projects-cta p{

    color:rgba(255,255,255,.90);
    font-size:22px;
    line-height:1.8;
    margin-bottom:50px;
    max-width: 760px;
    margin: 0 auto 55px;
}


/*========================
      BUTTONS
=========================*/

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.btn-primary{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#ff9800;
    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    transition:.35s;
}

.btn-primary:hover{
    background:#ffffff;
    color:#17479E;
    box-shadow:0 15px 35px rgba(0,0,0,.20);
    transform:translateY(-5px);
}

.btn-secondary{

    display:inline-flex;
    align-items:center;
    gap:10px;

    border:2px solid #fff;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    transition:.35s;
}

.btn-secondary:hover{
    background:#ffffff;
    color:#17479E;
    box-shadow:0 15px 35px rgba(0,0,0,.20);
    transform:translateY(-5px);
}


/*========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.projects-cta h2{

    font-size:46px;
}

.projects-cta p{

    font-size:18px;
}

.cta-buttons{

    flex-direction:column;
    align-items:center;
}

.btn-primary,
.btn-secondary{

    width:260px;
    justify-content:center;
}

}
/*==================== CONTACT HERO ====================*/

.contact-hero{

    position: relative;
    width: 100%;
    height: 80vh;

    background:
        linear-gradient(rgba(23,71,158,.82),
        rgba(23,71,158,.82)),
        url("../images/hero.jpg") center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    overflow:hidden;
    padding-bottom: 150px;
    min-height: calc(100vh - 90px);
    padding: 120px 20px 100px;
    margin-top: 90px;
    


}

.hero-content{

    position:relative;
    z-index:2;

    width:90%;
    max-width:900px;

    animation:fadeUp 1s ease;
}

.hero-subtitle{
    display:block;
    color:#F7941D;
    text-transform:uppercase;
    letter-spacing:8px;
    font-size:17px;
    font-weight:700;
    margin-bottom:25px;
}

.contact-hero h1{

    color:#fff;

    font-size:5rem;

    line-height:1.1;

    font-weight:800;

    margin-bottom:35px;
    margin-top: -40px;
}

.contact-hero p{

    color:#fff;

    font-size:24px;

    line-height:1.9;

    max-width:900px;

    margin:0 auto;
    margin-bottom: 60px;
}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;
    margin-top: 55px;
}

/* Primary Button */

.btn-primary{

    background:#F7941D;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.35s ease;
}

.btn-primary i{

    margin-right:10px;
}

.btn-primary:hover{

    background:#fff;

    color:#17479E;

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);
    transform:translateX(5px);
}

/* Secondary Button */

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.35s ease;
}

.btn-secondary i{

    margin-right:10px;
}

.btn-secondary:hover{

    background:#fff;

    color:#17479E;

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);
    .btn-secondary:hover i{

    transform:rotate(-15deg);

}
}

/* Animation */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
.contact-hero{
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 8% 80px; /* Top padding accounts for the fixed navbar */
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.contact-hero .section-tag{
    display: inline-block;
    letter-spacing: 8px;
    margin-bottom: 35px;
    transform: translateY(-15px);
    margin-top: -10px;
}
/*==================== CONTACT INFORMATION ====================*/

.contact-info{
    padding:120px 8%;
    background:#f8f9fc;
}

.contact-info .section-header{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.contact-info .section-tag{
    display:inline-block;
    color:#ff9800;
    text-transform:uppercase;
    letter-spacing:8px;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
}

.contact-info h2{
    font-size:3.2rem;
    font-weight:800;
    color:#17479e;
    margin:20px 0;
}

.contact-info .section-header p{
    max-width:700px;
    margin:0 auto;
    font-size:1.15rem;
    line-height:1.8;
    color:#555;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.contact-card{

    background:#fff;
    border-radius:25px;
    padding:45px 35px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.contact-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}
.contact-icon{

    width:90px;
    height:90px;

    margin:0 auto 30px;

    background:#ff9800;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:36px;
    color:#fff;

}
@media(max-width:1100px){

    .contact-cards{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-cards{

        grid-template-columns:1fr;

    }

    .contact-info h2{

        font-size:40px;

    }

}
.contact-card hr{
    width:60px;
    border:none;
    height:2px;
    background:#ff9800;
    margin:20px auto;
}
/* CONTACT FORM */

.contact-form-section{

     padding:70px 8% 100px;

    background:#f8f9fc;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:stretch;
    margin-top:80px;

}

/* FORM */

.contact-form-box{

    background:#fff;
    padding:38px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;

    display:flex;
    flex-direction:column;
}
.contact-form-box form{

    display:flex;
    flex-direction:column;
    height:100%;
}

.form-row{

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.form-row input{

    width:100%;

}

.contact-form-box textarea{
    width:100%;
    min-height:160px;
    padding:20px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size:16px;
    font-family:inherit;
    resize:none;
    outline:none;
    transition:.3s;
}

.contact-form-box input:focus,

.contact-form-box textarea:focus{

    border-color:#ff9800;

    box-shadow:0 0 0 3px rgba(255,152,0,.15);

}


.contact-form-box button{

    background:#ff9800;

    color:#fff;

    border:none;

    padding:20px 42px;

    border-radius:50px;

    font-size:19px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;
    width:320px;

    justify-content:center;
    margin: top 34;
    margin-bottom:8px;
    align-self:flex-start;
    

}

.contact-form-box button:hover{

    background:#17479e;

    transform:translateY(-3px);
    transform:translateY(-8px);

}

.contact-form-box button i{

    margin-right:10px;

}

/* MAP */

.map-box{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    height:740px;

    transition:.35s;

}

.map-box iframe{

    width:100%;

    height:100%;

    border:0;

}

/* RESPONSIVE */

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

.form-row{

flex-direction:column;

}

.map-box iframe{

min-height:450px;

}

}
.contact-form-box input:hover,
.contact-form-box textarea:hover{

    border-color:#ff9800;

}
.map-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}
.contact-form-box,
.map-box{

    height:755px;

}
.contact-form-box input,
.contact-form-box select{
    width:100%;
    height:60px;
    padding:0 20px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size:16px;
    font-family:inherit;
    outline:none;
    transition:.3s;
}
.contact-form-box select:hover,
.contact-form-box select:focus{

    border-color:#ff9800;

    box-shadow:0 0 0 3px rgba(255,152,0,.15);

}
.select-wrapper{

    position:relative;

    width:100%;

}

.select-wrapper::after{
    content:"⌄";
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    font-size:18px;
    color:#777;
    pointer-events:none;
}

.contact-form-box textarea{
    min-height:135px;
}
.submit-btn{
    margin-top:30px;
}
/*==================== FAQ ====================*/

.faq-section .section-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}



.faq-container{

    max-width:780px;

    margin:70px auto 0;
    display:flex;
    flex-direction:column;
    gap:20px;

}

.faq-item{

    background:#fff;

    border-radius:25px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

}
.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.14);

}
.faq-item:hover .faq-question h3{

    color:#ff9800;

    transition:.3s;

}


.faq-question{

    width:100%;

    background:#fff;

    border:none;

    outline:none;

    padding:28px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:20px;

    font-weight:600;

    color:#17479e;

    cursor:pointer;

    transition:.3s;

}

.faq-question span{

    font-size:34px;

    font-weight:600;

    color:#ff9800;

    transition:.35s ease;

    display:inline-block;

}



.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 35px 30px;

    color:#666;

    line-height:1.8;

    font-size:17px;

}
/*==================== FOOTER ====================*/

footer{

    background:#17479e;

    color:#fff;

    padding:70px 8% 35px;


}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:80px;
    align-items:flex-start;

}

.footer-about img{

    margin-bottom:22px;

}

.footer-about p{

    color:#d8e2ff;

    line-height:1.8;

    margin-bottom:30px;

    max-width:340px;

}

footer h3{

    margin-bottom:28px;

    font-size:24px;

    font-weight:700;

    color:#fff;

}

footer a{

    display:block;

    color:#d8e2ff;

    text-decoration:none;

    margin-bottom:14px;

    transition:.35s;

}

footer a:hover{

    color:#ff9800;

    transform:translateX(6px);

    padding-left:8px;

}

footer p{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#d8e2ff;

    line-height:1.8;

    margin-bottom:12px;

}

footer p i{

    color:#ff9800;

    width:22px;

    margin-top:4px;

    flex-shrink:0;

}

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.social-icons a:hover{

    background:#ff9800;

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(255,152,0,.4);

    padding-left:0;

}

footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:55px 0 30px;

}

.copyright{

    text-align:center;
    color:#d8e2ff;
    font-size:16px;

}

/*==================== FOOTER RESPONSIVE ====================*/

@media(max-width:991px){

    .footer-container{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-about p{

        margin:auto auto 30px;

    }

    .social-icons{

        justify-content:center;

    }

}
/*================ THANK YOU PAGE ================*/

.thankyou-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(rgba(23,71,158,.92),rgba(23,71,158,.92)),
               url(images/construction-bg.jpg);
    background-size:cover;
    background-position:center;
    padding:40px 20px;
}

.thankyou-card{
    max-width:700px;
    width:100%;
    background:#fff;
    border-radius:20px;
    padding:60px 50px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.2);
}

.success-icon{
    font-size:80px;
    color:#28a745;
    margin-bottom:25px;
}

.thankyou-card h1{
    font-size:48px;
    color:#17479e;
    margin-bottom:15px;
}

.thankyou-card h3{
    font-size:24px;
    color:#f28c28;
    margin-bottom:25px;
}

.thankyou-card p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
}

.thankyou-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.thankyou-buttons a{
    text-decoration:none;
}