/*=====================================
FLY EXPO WEBSITE
Author : Fly Expo
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:#222;

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*========================
TOP BAR
=========================*/

.top-bar{

    background:#0f172a;

    color:#fff;

    padding:10px 0;

    font-size:14px;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left span{

    margin-right:30px;

}

.top-left i,

.top-right i{

    color:#0ea5e9;

    margin-right:8px;

}

/*=========================
HEADER
=========================*/

.header{

    position:absolute;

    top:45px;

    left:0;

    width:100%;

    z-index:999;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo img{

    width:180px;

}

.nav-menu ul{

    display:flex;

    gap:35px;

}

.nav-menu a{

    color:#fff;

    font-weight:500;

    transition:.3s;

}

.nav-menu a:hover,

.nav-menu a.active{

    color:#0ea5e9;

}

.bms-btn{

    background:#0ea5e9;

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.bms-btn:hover{

    background:#fff;

    color:#111;

}

/*=====================
HERO
======================*/

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.heroSlider{

    height:100%;

}

.swiper-slide{

    position:relative;

}

.swiper-slide img{

    width:100%;

    height:100vh;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    color:#fff;

    width:90%;

    z-index:100;

}

.hero-content .welcome{

    letter-spacing:8px;

    font-size:20px;

    display:block;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:90px;

    font-weight:800;

    margin-bottom:15px;

}

.hero-content h2{

    font-size:42px;

    margin-bottom:25px;

}

.hero-content p{

    font-size:22px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-primary{

    background:#0ea5e9;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.btn-primary:hover{

    background:#fff;

    color:#111;

}

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    transition:.3s;

    font-weight:600;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

}

.swiper-pagination-bullet{

    background:#fff;

}

.swiper-pagination-bullet-active{

    background:#0ea5e9;

}
/*========================================
PAGE BANNER
=========================================*/

.page-banner{

    position:relative;

    height:420px;

    overflow:hidden;

}

.page-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.banner-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    color:#fff;

    z-index:5;

}

.banner-content h1{

    font-size:65px;

    font-weight:800;

    margin-bottom:15px;

}

.banner-content p{

    font-size:22px;

    letter-spacing:1px;

}

/*========================================
SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#0ea5e9;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:46px;

    margin:15px 0;

    color:#111;

}

.section-title p{

    color:#666;

    max-width:750px;

    margin:auto;

    line-height:1.8;

}

/*========================================
ABOUT SECTION
=========================================*/

.about-section{

    padding:120px 0;

    background:#fff;

}

.about-section .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.about-left{

    flex:1;

}

.about-left img{

    width:100%;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.about-right{

    flex:1;

}

.section-subtitle{

    color:#0ea5e9;

    letter-spacing:3px;

    font-size:15px;

    font-weight:700;

}

.about-right h2{

    font-size:46px;

    line-height:1.3;

    margin:20px 0;

}

.about-right p{

    color:#666;

    margin-bottom:20px;

    line-height:1.9;

}

.about-btn{

    display:inline-block;

    margin-top:20px;

    padding:15px 38px;

    background:#0ea5e9;

    color:#fff;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

}

.about-btn:hover{

    background:#111;

}

/*========================================
OUR JOURNEY
=========================================*/

.journey{

    padding:120px 0;

    background:#f7f9fc;

}

.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.timeline-item{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.timeline-item:hover{

    transform:translateY(-10px);

}

.timeline-item h3{

    color:#0ea5e9;

    font-size:42px;

    margin-bottom:10px;

}

.timeline-item h4{

    margin-bottom:15px;

    font-size:22px;

}

.timeline-item p{

    color:#666;

}

/*========================================
MISSION
=========================================*/

.mission-vision{

    padding:120px 0;

    background:#111827;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.mission-card{

    background:#1f2937;

    color:#fff;

    padding:50px;

    border-radius:20px;

    text-align:center;

}

.mission-card i{

    font-size:55px;

    color:#0ea5e9;

    margin-bottom:25px;

}

.mission-card h2{

    margin-bottom:20px;

    font-size:34px;

}

.mission-card p{

    line-height:1.9;

    color:#d1d5db;

}
/*========================================
WHY CHOOSE US
=========================================*/

.why-us{

    padding:120px 0;

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:45px 35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.why-card i{

    font-size:55px;

    color:#0ea5e9;

    margin-bottom:25px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#111827;

}

.why-card p{

    color:#6b7280;

    line-height:1.8;

}

/*========================================
COMPANY STATS
=========================================*/

.company-stats{

    background:#0f172a;

    padding:110px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.stat-card{

    text-align:center;

    background:rgba(255,255,255,.05);

    padding:45px 25px;

    border-radius:20px;

    transition:.3s;

}

.stat-card:hover{

    background:#0ea5e9;

    transform:translateY(-8px);

}

.stat-card h2{

    font-size:60px;

    color:#fff;

    margin-bottom:15px;

}

.stat-card h4{

    color:#fff;

    margin-bottom:15px;

}

.stat-card p{

    color:#d1d5db;

    font-size:15px;

}

/*========================================
CORE VALUES
=========================================*/

.core-values{

    padding:120px 0;

    background:#f8fafc;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.value-box{

    background:#fff;

    padding:45px 30px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.value-box:hover{

    transform:translateY(-10px);

}

.value-box i{

    font-size:55px;

    color:#0ea5e9;

    margin-bottom:25px;

}

.value-box h3{

    margin-bottom:15px;

    font-size:24px;

}

.value-box p{

    color:#666;

    line-height:1.8;

}

/*========================================
CALL TO ACTION
=========================================*/

.about-cta{

    background:url("../images/hero/hero6.jpg") center center/cover;

    position:relative;

    padding:140px 0;

    text-align:center;

}

.about-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.about-cta .container{

    position:relative;

    z-index:2;

}

.about-cta h2{

    color:#fff;

    font-size:55px;

    margin-bottom:20px;

}

.about-cta p{

    color:#e5e7eb;

    font-size:20px;

    max-width:850px;

    margin:auto;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

/*========================================
FOOTER
=========================================*/

.footer{

    background:#020617;

    color:#fff;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer img{

    width:170px;

    margin-bottom:25px;

}

.footer p{

    color:#94a3b8;

    line-height:1.9;

}

.footer h3{

    margin-bottom:25px;

    font-size:24px;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li a{

    color:#cbd5e1;

    transition:.3s;

}

.footer ul li a:hover{

    color:#0ea5e9;

}

.copyright{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    color:#94a3b8;

}
/*========================================
STICKY HEADER
=========================================*/

.header.sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#0f172a;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    transition:.35s;

}

/*========================================
SECTION SPACING
=========================================*/

section{

    position:relative;

}

.section-padding{

    padding:120px 0;

}

/*========================================
HOVER EFFECTS
=========================================*/

img{

    transition:.4s;

}

.about-left:hover img{

    transform:scale(1.03);

}

.timeline-item:hover h3,

.value-box:hover h3,

.why-card:hover h3{

    color:#0ea5e9;

}

/*========================================
BUTTON ANIMATION
=========================================*/

.btn-primary,
.btn-secondary,
.about-btn,
.bms-btn{

    transition:all .35s ease;

}

.btn-primary:hover,
.about-btn:hover{

    transform:translateY(-4px);

}

.btn-secondary:hover{

    transform:translateY(-4px);

}

/*========================================
CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:#0ea5e9;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0284c7;

}

/*========================================
TEXT SELECTION
=========================================*/

::selection{

    background:#0ea5e9;

    color:#fff;

}

/*========================================
SMOOTH IMAGE SHADOW
=========================================*/

img{

    box-shadow:none;

}

.about-left img{

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

/*========================================
TABLET
=========================================*/

@media(max-width:992px){

.hero-content h1{

font-size:65px;

}

.hero-content h2{

font-size:30px;

}

.hero-content p{

font-size:18px;

}

.about-section .container{

flex-direction:column;

}

.timeline{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

.values-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

}

.mission-grid{

grid-template-columns:1fr;

}

}

/*========================================
MOBILE
=========================================*/

@media(max-width:768px){

.top-bar{

display:none;

}

.header{

top:0;

background:#0f172a;

}

.navbar{

flex-direction:column;

padding:20px;

}

.logo img{

width:150px;

margin-bottom:20px;

}

.nav-menu ul{

flex-direction:column;

gap:18px;

text-align:center;

}

.bms-btn{

margin-top:20px;

}

.hero{

height:90vh;

}

.hero-content{

width:92%;

}

.hero-content .welcome{

font-size:15px;

letter-spacing:4px;

}

.hero-content h1{

font-size:42px;

}

.hero-content h2{

font-size:24px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

.banner-content h1{

font-size:42px;

}

.banner-content p{

font-size:18px;

}

.section-title h2{

font-size:34px;

}

.about-right h2{

font-size:34px;

}

.timeline{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.values-grid{

grid-template-columns:1fr;

}

}

/*========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

.hero-content h1{

font-size:34px;

}

.hero-content h2{

font-size:20px;

}

.banner-content h1{

font-size:34px;

}

.section-title h2{

font-size:28px;

}

.about-right h2{

font-size:28px;

}

}

/*========================================
END OF STYLE.CSS
=========================================*/
/*=================================================
SERVICES PAGE
=================================================*/

.services-page{
    padding:100px 0;
    background:#f8fafc;
}

.services-page .container{
    max-width:1400px;
    margin:auto;
    width:90%;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-title span{
    color:#0ea5e9;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    margin:20px 0;
    color:#111827;
}

.section-title p{
    font-size:18px;
    color:#6b7280;
    line-height:1.9;
}

/*=================================================
SERVICES GRID
=================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(280px,1fr));

    justify-content:center;

    align-items:stretch;

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.service-card i{

    font-size:60px;

    color:#0ea5e9;

    margin-bottom:25px;

}

.service-card h3{

    font-size:25px;

    margin-bottom:18px;

}

.service-card p{

    line-height:1.9;

    color:#6b7280;

}

/*=================================================
PROCESS
=================================================*/

.process{

    padding:120px 0;

    background:#fff;

}

.process .container{

    width:90%;

    max-width:1500px;

    margin:auto;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:70px;

}

.process-card{

    background:#f8fafc;

    border-radius:22px;

    padding:55px 30px;

    text-align:center;

    position:relative;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    min-height:360px;

}

.process-card:hover{

    background:#0f172a;

    transform:translateY(-10px);

}

.process-card:hover h3{

    color:#fff;

}

.process-card:hover p{

    color:#d1d5db;

}

.number{

    width:55px;

    height:55px;

    background:#0ea5e9;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    position:absolute;

    top:-25px;

    left:50%;

    transform:translateX(-50%);

    font-weight:700;

    font-size:18px;

}

.process-card i{

    font-size:60px;

    color:#0ea5e9;

    margin-top:15px;

    margin-bottom:25px;

}

.process-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.process-card p{

    color:#6b7280;

    line-height:1.8;

}

/*=================================================
RESPONSIVE
=================================================*/

@media(max-width:1400px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

.process-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:36px;

}

}
/*=================================================
WHY FLY EXPO
=================================================*/

.service-benefits{

    padding:120px 0;

    background:#0f172a;

}

.service-benefits .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.service-benefits .section-title{

    margin-bottom:70px;

}

.service-benefits .section-title span{

    color:#38bdf8;

}

.service-benefits .section-title h2{

    color:#ffffff;

}

.service-benefits .section-title p{

    color:#cbd5e1;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    justify-content:center;

    align-items:stretch;

}

.benefit-box{

    background:rgba(255,255,255,.05);

    border-radius:20px;

    padding:50px 35px;

    text-align:center;

    transition:.35s;

    min-height:320px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

}

.benefit-box:hover{

    background:#0ea5e9;

    transform:translateY(-10px);

}

.benefit-box i{

    font-size:60px;

    color:#ffffff;

    margin-bottom:25px;

}

.benefit-box h3{

    color:#ffffff;

    font-size:24px;

    margin-bottom:18px;

}

.benefit-box p{

    color:#e2e8f0;

    line-height:1.9;

}

/*=================================================
CTA
=================================================*/

.service-cta{

    position:relative;

    padding:140px 0;

    background:url("../images/hero/hero5.jpg") center center/cover no-repeat;

    text-align:center;

}

.service-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

}

.service-cta .container{

    position:relative;

    z-index:2;

    width:90%;

    max-width:900px;

    margin:auto;

}

.service-cta h2{

    color:#ffffff;

    font-size:52px;

    margin-bottom:20px;

}

.service-cta p{

    color:#e5e7eb;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

.service-cta .btn-primary{

    display:inline-block;

    background:#0ea5e9;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.service-cta .btn-primary:hover{

    background:#0284c7;

    transform:translateY(-4px);

}

/*=================================================
LANDSCAPE RESPONSIVE
=================================================*/

@media(max-width:1400px){

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.service-cta h2{

font-size:40px;

}

.service-cta p{

font-size:18px;

}

}

@media(max-width:768px){

.benefits-grid{

grid-template-columns:1fr;

}

.service-cta{

padding:100px 20px;

}

.service-cta h2{

font-size:32px;

}

.service-cta p{

font-size:16px;

}

}
/*=================================================
PROJECTS PAGE
=================================================*/

.projects-section{

    padding:120px 0;

    background:#f8fafc;

}

.projects-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*=========================================
FILTER BUTTONS
=========================================*/

.project-filter{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin:50px 0 70px;

}

.project-filter button{

    border:none;

    outline:none;

    padding:14px 28px;

    border-radius:40px;

    background:#fff;

    color:#111827;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.project-filter button:hover,

.project-filter .active{

    background:#0ea5e9;

    color:#fff;

}

/*=========================================
PROJECT GRID
=========================================*/

.projects-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover img{

    transform:scale(1.12);

}

/*=========================================
OVERLAY
=========================================*/

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.90),

        rgba(0,0,0,.20)

    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    opacity:0;

    transition:.4s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay h3{

    color:#fff;

    font-size:26px;

    margin-bottom:8px;

}

.project-overlay p{

    color:#38bdf8;

    font-weight:600;

}

/*=========================================
PROJECT STATS
=========================================*/

.project-stats{

    background:#0f172a;

    padding:100px 0;

}

.project-stats .container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.stat{

    text-align:center;

    background:rgba(255,255,255,.05);

    padding:45px;

    border-radius:20px;

    transition:.35s;

}

.stat:hover{

    background:#0ea5e9;

    transform:translateY(-10px);

}

.stat h2{

    color:#fff;

    font-size:60px;

    margin-bottom:10px;

}

.stat p{

    color:#e2e8f0;

}
/*=================================================
CASE STUDY
=================================================*/

.case-study{

    padding:120px 0;

    background:#ffffff;

}

.case-study .container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.case-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.case-image img{

    width:100%;

    transition:.5s;

}

.case-image:hover img{

    transform:scale(1.08);

}

.case-content span{

    color:#0ea5e9;

    letter-spacing:3px;

    font-weight:700;

    text-transform:uppercase;

}

.case-content h2{

    font-size:46px;

    margin:20px 0;

    color:#111827;

    line-height:1.3;

}

.case-content p{

    color:#6b7280;

    line-height:1.9;

    margin-bottom:25px;

}

.case-content ul{

    margin-bottom:35px;

}

.case-content ul li{

    margin-bottom:15px;

    color:#374151;

    font-size:17px;

}

/*=================================================
PROJECT CTA
=================================================*/

.project-cta{

    position:relative;

    background:url("../images/hero/hero6.jpg") center center/cover;

    padding:150px 0;

    text-align:center;

}

.project-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

}

.project-cta .container{

    position:relative;

    z-index:2;

    width:90%;

    max-width:900px;

    margin:auto;

}

.project-cta h2{

    color:#fff;

    font-size:54px;

    margin-bottom:20px;

}

.project-cta p{

    color:#e5e7eb;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

/*=================================================
PROJECT HOVER EFFECT
=================================================*/

.project-card{

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-12px);

}

.case-image{

    transition:.35s;

}

.case-image:hover{

    transform:translateY(-8px);

}

/*=================================================
RESPONSIVE
=================================================*/

@media(max-width:1200px){

.projects-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.projects-grid{

grid-template-columns:repeat(2,1fr);

}

.project-stats .container{

grid-template-columns:repeat(2,1fr);

}

.case-study .container{

grid-template-columns:1fr;

}

.case-content{

text-align:center;

}

.case-content ul{

display:inline-block;

text-align:left;

}

}

@media(max-width:768px){

.projects-grid{

grid-template-columns:1fr;

}

.project-filter{

flex-direction:column;

}

.project-stats .container{

grid-template-columns:1fr;

}

.project-cta{

padding:100px 20px;

}

.project-cta h2{

font-size:34px;

}

.project-cta p{

font-size:16px;

}

.case-content h2{

font-size:34px;

}

}
/*==================================================
PROJECTS PAGE
==================================================*/

.projects-section{
    padding:100px 0;
    background:#f8fafc;
}

.projects-section .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*==============================
FILTER
==============================*/

.project-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin:50px 0;
}

.project-filter button{
    padding:14px 30px;
    border:none;
    border-radius:40px;
    background:#fff;
    color:#111;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.project-filter button:hover,
.project-filter .active{
    background:#00AEEF;
    color:#fff;
}

/*==============================
PROJECT GRID
==============================*/

.projects-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    transition:.4s;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.9),rgba(0,0,0,.15));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:25px;

    opacity:0;

    transition:.4s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay span{

    color:#00AEEF;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.project-overlay h3{

    color:#fff;

    font-size:26px;

    margin-top:8px;

}

/*==============================
PROJECT STATS
==============================*/

.project-stats{

    background:#0f172a;

    padding:100px 0;

}

.project-stats .container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    background:rgba(255,255,255,.05);

    padding:45px;

    border-radius:20px;

    transition:.3s;

}

.stat-box:hover{

    background:#00AEEF;

    transform:translateY(-8px);

}

.stat-box h2{

    color:#fff;

    font-size:60px;

    margin-bottom:10px;

}

.stat-box p{

    color:#dbeafe;

}

/*==============================
FEATURED PROJECT
==============================*/

.featured-project{

    padding:120px 0;

    background:#fff;

}

.featured-project .container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.featured-image{

    overflow:hidden;

    border-radius:20px;

}

.featured-image img{

    width:100%;

    transition:.5s;

}

.featured-image:hover img{

    transform:scale(1.06);

}

.featured-content span{

    color:#00AEEF;

    font-weight:700;

    letter-spacing:3px;

}

.featured-content h2{

    font-size:46px;

    margin:20px 0;

    color:#111827;

}

.featured-content p{

    line-height:1.9;

    color:#666;

    margin-bottom:30px;

}

.project-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;

}

.project-highlights div{

    font-size:16px;

    color:#374151;

}

.project-highlights i{

    color:#00AEEF;

    margin-right:10px;

}

/*==============================
TESTIMONIAL
==============================*/

.testimonial{

    padding:100px 0;

    background:#f8fafc;

}

.testimonial-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:#fff;

    padding:60px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.testimonial-box i{

    font-size:50px;

    color:#00AEEF;

    margin-bottom:20px;

}

.testimonial-box p{

    font-size:20px;

    line-height:2;

    color:#555;

}

.testimonial-box h4{

    margin-top:25px;

    font-size:22px;

}

.testimonial-box span{

    color:#888;

}

/*==============================
CTA
==============================*/

.project-cta{

    position:relative;

    padding:140px 0;

    text-align:center;

    background:url("../images/hero/hero6.jpg") center center/cover;

}

.project-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.70);

}

.project-cta .container{

    position:relative;

    z-index:2;

    width:90%;

    max-width:900px;

    margin:auto;

}

.project-cta h2{

    color:#fff;

    font-size:52px;

    margin-bottom:20px;

}

.project-cta p{

    color:#e5e7eb;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1200px){

.projects-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.projects-grid{

grid-template-columns:repeat(2,1fr);

}

.project-stats .container{

grid-template-columns:repeat(2,1fr);

}

.featured-project .container{

grid-template-columns:1fr;

}

.project-highlights{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.projects-grid{

grid-template-columns:1fr;

}

.project-filter{

flex-direction:column;

}

.project-stats .container{

grid-template-columns:1fr;

}

.project-cta{

padding:100px 20px;

}

.project-cta h2{

font-size:34px;

}

.project-cta p{

font-size:16px;

}

.featured-content{

text-align:center;

}

.featured-content h2{

font-size:34px;

}

.testimonial-box{

padding:35px;

}

.testimonial-box p{

font-size:17px;

}

}
/*================ HOME ABOUT ================*/

.home-about{

padding:100px 0;

background:#fff;

}

.home-about .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.home-about-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.home-about-content span{

color:#00AEEF;

font-weight:700;

letter-spacing:3px;

}

.home-about-content h2{

font-size:45px;

margin:20px 0;

}

.home-about-content p{

line-height:1.9;

color:#666;

margin-bottom:20px;

}

.about-home-stats{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin:40px 0;

}

.about-home-stats div{

background:#f8fafc;

padding:25px;

border-radius:15px;

text-align:center;

}

.about-home-stats h3{

font-size:34px;

color:#00AEEF;

margin-bottom:10px;

}
/*=================================================
HOME PROCESS
=================================================*/

.home-process{

    padding:100px 0;

    background:#f8fafc;

}

.home-process .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.home-process .process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;

}

.home-process .process-card{

    background:#ffffff;

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.home-process .process-card:hover{

    transform:translateY(-10px);

    background:#0f172a;

}

.home-process .process-card:hover h3,

.home-process .process-card:hover p{

    color:#ffffff;

}

.process-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#00AEEF;

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-icon i{

    font-size:34px;

    color:#ffffff;

}

.home-process h3{

    font-size:22px;

    margin-bottom:15px;

    color:#111827;

}

.home-process p{

    color:#6b7280;

    line-height:1.8;

}

/* Responsive */

@media(max-width:1200px){

.home-process .process-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.home-process .process-grid{

grid-template-columns:1fr;

}

}
/*=================================================
CONTACT PAGE
=================================================*/

.contact-page{
    padding:100px 0;
    background:#f8fafc;
}

.contact-page .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    margin-top:60px;
}

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form h3{
    font-size:30px;
    margin-bottom:25px;
    color:#111827;
}

.contact-form .form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #dbe4ee;
    border-radius:10px;
    font-size:15px;
    font-family:Poppins,sans-serif;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0ea5e9;
}

.contact-form textarea{
    resize:none;
    height:160px;
}

.contact-form button{
    background:#0ea5e9;
    color:#fff;
    border:none;
    padding:16px 35px;
    border-radius:40px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#0284c7;
}

.contact-details{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-box:hover{
    transform:translateY(-8px);
}

.contact-box i{
    width:70px;
    height:70px;
    line-height:70px;
    background:#0ea5e9;
    color:#fff;
    border-radius:50%;
    font-size:28px;
    margin-bottom:20px;
}

.contact-box h3{
    font-size:22px;
    margin-bottom:12px;
    color:#111827;
}

.contact-box p{
    color:#6b7280;
    line-height:1.8;
}

/*=================================================
TEAM
=================================================*/

.contact-team{
    padding:100px 0;
    background:#ffffff;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.team-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:#0ea5e9;
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.team-card h3{
    font-size:24px;
    color:#111827;
    margin-bottom:8px;
}

.team-card h4{
    color:#0ea5e9;
    font-size:17px;
    margin-bottom:18px;
}

.team-card p{
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
    word-break:break-word;
}

/*=================================================
CONTACT INFO
=================================================*/

.contact-info{
    padding:100px 0;
    background:#f8fafc;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.info-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-8px);
}

.info-box i{
    font-size:40px;
    color:#0ea5e9;
    margin-bottom:20px;
}

.info-box h3{
    margin-bottom:15px;
    color:#111827;
}

.info-box p{
    color:#6b7280;
    line-height:1.8;
}

/*=================================================
GOOGLE MAP
=================================================*/

.map-section{
    padding:0 0 100px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/*=================================================
RESPONSIVE
=================================================*/

@media(max-width:992px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.team-grid{
    grid-template-columns:repeat(2,1fr);
}

.info-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.contact-page,
.contact-team,
.contact-info{
    padding:70px 0;
}

.contact-form{
    padding:30px;
}

.team-grid{
    grid-template-columns:1fr;
}

.contact-form h3{
    font-size:26px;
}

.section-title h2{
    font-size:34px;
}

.map-section iframe{
    height:300px;
}

}