/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;

}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:absolute;
    top:0;
    left:0;
    z-index:1000;

    width:100%;
    height:100px;

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

    padding:0 6%;

    background:linear-gradient(
        180deg,
        rgba(5,9,16,.82),
        rgba(5,9,16,.30),
        transparent
    );

    transition:
        background-color .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.navbar-scrolled{
    position:fixed;
    background:rgba(8,12,20,.94);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 8px 30px rgba(0,0,0,.18);
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
}

.logo {
    width: 320px;
    height: 120px;

    display: flex;
    align-items: center;
}

.logo img {
    height: 230px;
    width: auto;
    object-fit: contain;

    transform: translateY(12px);
}

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

    margin:0;
    padding:0;

    list-style:none;
}

.nav-links li{
    margin:0;
}

.nav-links a{
    position:relative;

    color:#ffffff;

    font-size:14px;
    font-weight:600;
    white-space:nowrap;

    transition:.3s;
}

.nav-links > li > a:not(.nav-button)::after{
    content:"";

    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#e2b92f;

    transition:.3s;
}

.nav-links > li > a:not(.nav-button):hover::after,
.nav-links > li > a.active-link::after{
    width:100%;
}

.nav-links > li > a:not(.nav-button):hover,
.nav-links > li > a.active-link{
    color:#e2b92f;
}

.nav-button{
    min-height:46px;

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

    padding:0 22px;

    color:#101828 !important;
    background:#e2b92f;

    border-radius:8px;

    font-weight:800 !important;

    transition:.3s;
}

.nav-button:hover{
    background:#ffffff;
    transform:translateY(-2px);
}

.menu-toggle{
    position:relative;
    z-index:1004;

    width:48px;
    height:48px;

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

    padding:0;

    color:#ffffff;
    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);
    border-radius:9px;

    font:inherit;
    font-size:30px;
    line-height:1;

    cursor:pointer;
}

body.menu-active{
    overflow:hidden;
    touch-action:none;
}

/* ===========================
   HERO
=========================== */

.hero{
    position:relative;
    min-height:100vh;

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

    padding-top:88px;

    overflow:hidden;
}

.hero-video{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
    );

    z-index:-1;

}

.hero-content{
    position:relative;
    z-index:5;

    width:min(1000px, 90%);

    text-align:center;
    color:white;

    margin:0 auto;

}

.hero-content h1{


    font-size:68px;

    text-shadow:0 4px 15px rgba(0,0,0,.45);

    line-height:80px;

    margin-bottom:25px;

}

.hero-content p{

    font-size:20px;

    text-shadow:0 2px 8px rgba(0,0,0,.35);

    line-height:35px;

    color:#ececec;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-primary{

    padding:16px 35px;

    background:#d4af37;

    color:white;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    padding:16px 35px;

    border:2px solid white;

    color:white;

    border-radius:8px;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#111;

}
/* ===========================
   ABOUT
=========================== */

.about{

    padding:120px 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:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.about-content{

    flex:1;

}

.section-title{

    display:inline-block;

    color:#d4af37;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

}

.about-content h2{

    font-size:42px;

    margin-bottom:25px;

    color:#0f172a;

}

.about-content p{

    font-size:17px;

    color:#666;

    line-height:32px;

    margin-bottom:35px;

}

/* ===========================
   PROJECTS
=========================== */

.projects{

    padding:120px 8%;
    background:#f5f7fa;

}

.section-header{

    text-align:center;
    margin-bottom:60px;

}

.section-header h2{

    font-size:42px;
    color:#0f172a;
    margin-top:10px;

}

.project-grid{

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

}

.project-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.project-card img{

    width:100%;
    height:260px;
    object-fit:cover;

}

.project-content{

    padding:25px;

}

.project-content h3{

    font-size:24px;
    color:#0f172a;
    margin-bottom:15px;

}

.project-content p{

    color:#666;
    line-height:28px;

}

/* ===========================
   CONTACT
=========================== */

.contact{

    padding:120px 8%;
    background:#0f172a;
    color:white;

}

.contact-box{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.contact-box h2{

    font-size:44px;
    margin-bottom:25px;

}

.contact-box p{

    font-size:18px;
    line-height:30px;
    color:#d6d6d6;
    margin-bottom:40px;

}

/* ===========================
   FOOTER
=========================== */

.footer{

    background:#08111f;
    color:white;
    text-align:center;
    padding:50px 20px;

}

.footer img{

    width:170px;
    margin:auto;
    margin-bottom:20px;

}

.footer p{

    color:#9ca3af;
    font-size:15px;

}
/* ===========================
   ANIMATIONS
=========================== */

.project-card,
.about-image img,
.btn-primary,
.btn-secondary{

    transition:all .35s ease;

}

.about-image img:hover{

    transform:scale(1.03);

}

.btn-primary:hover{

    box-shadow:0 10px 25px rgba(212,175,55,.35);

}

.btn-secondary:hover{

    box-shadow:0 10px 25px rgba(255,255,255,.20);

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b89025;

}

/* ===========================
   SECTIONS
=========================== */

section{

    width:100%;

}

h1,h2,h3{

    font-weight:700;

}

p{

    font-weight:400;

}

/* ===========================
   SELECTION
=========================== */

::selection{

    background:#d4af37;
    color:white;

}

/* ===========================
   SHADOWS
=========================== */

.about-image img,
.project-card{

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

/* ===========================
   HOVER LINKS
=========================== */

.nav-menu li{

    position:relative;

}

.nav-menu li::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:#d4af37;

    transition:.35s;

}

.nav-menu li:hover::after{

    width:100%;

}

/* ===========================
   BUTTONS
=========================== */

.btn-primary,
.btn-secondary,
.btn-nav{

    cursor:pointer;

}

/* ===========================
   HERO EFFECT
=========================== */

.hero-content{

    animation:heroFade 1.3s ease;

}

@keyframes heroFade{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ===========================
   PROJECT IMAGE
=========================== */

.project-card{

    overflow:hidden;

}

.project-card img{

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}
/* ===========================
   SERVICES LIST
=========================== */

.services-list{

    margin-top:70px;

    text-align:center;

}

.services-list h2{

    font-size:36px;

    margin-bottom:40px;

    color:#0f172a;

}

.service-items{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.service-item{

    background:white;

    padding:22px;

    border-radius:12px;

    font-size:18px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.service-item:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}
/* ===========================
   CONTACT DETAILS
=========================== */

.contact-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.contact-details{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
}

.contact-details p{
    margin:0;
    font-size:16px;
    color:#d6d6d6;
}

.contact-details a{
    color:#d4af37;
    font-weight:600;
    transition:.3s;
}

.contact-details a:hover{
    color:#ffffff;
}
/* ===========================
   PAGE HERO
=========================== */

.page-hero{
    position:relative;
    min-height:520px;

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

    padding:140px 7% 80px;

    background-position:center;
    background-size:cover;

    overflow:hidden;
}

.about-page-hero{
    background-image:url("assets/images/photo3.jpg");
}

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

    background:
        linear-gradient(
            90deg,
            rgba(7,10,17,.94),
            rgba(7,10,17,.62),
            rgba(7,10,17,.82)
        );
}

.page-hero-content{
    position:relative;
    z-index:2;

    width:min(850px, 100%);

    text-align:center;
    color:white;
}

.page-hero-content span{
    display:inline-block;

    margin-bottom:18px;

    color:#e2b92f;

    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.page-hero-content h1{
    margin:0 0 22px;

    font-size:68px;
    line-height:1;
}

.page-hero-content p{
    max-width:680px;

    margin:0 auto;

    color:rgba(255,255,255,.82);

    font-size:19px;
    line-height:1.7;
}


/* ===========================
   ABOUT DETAIL
=========================== */

.about-detail{
    max-width:1250px;

    margin:0 auto;

    padding:110px 6%;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;

    gap:80px;
}

.about-detail-image{
    position:relative;
}

.about-detail-image::before{
    content:"";

    position:absolute;
    top:-20px;
    left:-20px;

    width:120px;
    height:120px;

    border-top:4px solid #e2b92f;
    border-left:4px solid #e2b92f;

    z-index:-1;
}

.about-detail-image img{
    width:100%;
    height:580px;

    display:block;

    object-fit:cover;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.about-detail-content h2{
    margin:18px 0 26px;

    color:#101828;

    font-size:48px;
    line-height:1.12;
}

.about-detail-content p{
    margin:0 0 18px;

    color:#5f6673;

    font-size:17px;
    line-height:1.85;
}

.about-detail-content .btn-primary{
    display:inline-block;

    margin-top:18px;
}


/* ===========================
   MISSION VISION
=========================== */

.mission-vision{
    padding:90px 7%;

    display:grid;
    grid-template-columns:repeat(3, 1fr);

    gap:28px;

    background:#0e1420;
}

.mission-card{
    position:relative;

    padding:48px 36px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    overflow:hidden;

    transition:.3s;
}

.mission-card:hover{
    transform:translateY(-8px);

    border-color:rgba(226,185,47,.55);

    background:rgba(255,255,255,.07);
}

.mission-card > span{
    position:absolute;
    top:18px;
    right:24px;

    color:rgba(226,185,47,.18);

    font-size:70px;
    font-weight:800;
}

.mission-card h3{
    position:relative;

    margin:0 0 18px;

    color:#ffffff;

    font-size:28px;
}

.mission-card p{
    position:relative;

    margin:0;

    color:rgba(255,255,255,.7);

    font-size:16px;
    line-height:1.75;
}


/* ===========================
   WHY US
=========================== */

.why-us{
    padding:110px 7%;

    background:#f5f6f8;
}

.why-us-grid{
    max-width:1250px;

    margin:60px auto 0;

    display:grid;
    grid-template-columns:repeat(4, 1fr);

    gap:24px;
}

.why-us-item{
    padding:36px 28px;

    background:#ffffff;

    border-radius:16px;

    box-shadow:0 14px 35px rgba(16,24,40,.08);

    transition:.3s;
}

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

.why-us-number{
    width:54px;
    height:54px;

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

    margin-bottom:24px;

    color:#0e1420;

    background:#e2b92f;

    border-radius:50%;

    font-weight:800;
}

.why-us-item h3{
    margin:0 0 14px;

    color:#101828;

    font-size:22px;
}

.why-us-item p{
    margin:0;

    color:#667085;

    font-size:15px;
    line-height:1.75;
}


/* ===========================
   ABOUT CTA
=========================== */

.about-cta{
    padding:75px 8%;

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

    gap:40px;

    background:
        linear-gradient(
            90deg,
            rgba(8,12,20,.96),
            rgba(17,24,39,.92)
        );
}

.about-cta span{
    color:#e2b92f;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.about-cta h2{
    max-width:760px;

    margin:14px 0 0;

    color:#ffffff;

    font-size:38px;
    line-height:1.25;
}
/* ===========================
   SERVICES PAGE
=========================== */

.services-page-hero{
    background-image:url("assets/images/photo4.jpg");
}

.services-detail{
    width:min(1280px, 90%);

    margin:0 auto;

    padding:120px 0;

    display:flex;
    flex-direction:column;

    gap:120px;
}

.service-detail-card{
    position:relative;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;

    gap:80px;
}

.service-detail-reverse .service-detail-image,
.service-detail-reverse .service-detail-visual{
    order:2;
}

.service-detail-reverse .service-detail-content{
    order:1;
}

.service-detail-image{
    position:relative;
}

.service-detail-image::before{
    content:"";

    position:absolute;
    top:-18px;
    left:-18px;

    width:110px;
    height:110px;

    border-top:4px solid #e2b92f;
    border-left:4px solid #e2b92f;

    z-index:-1;
}

.service-detail-image img{
    width:100%;
    height:500px;

    display:block;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 25px 65px rgba(15,23,42,.18);
}

.service-detail-content{
    position:relative;
}

.service-detail-number{
    position:absolute;
    top:-70px;
    right:0;

    color:rgba(15,23,42,.06);

    font-size:120px;
    font-weight:800;
    line-height:1;

    pointer-events:none;
}

.service-detail-content h2{
    position:relative;

    margin:16px 0 24px;

    color:#101828;

    font-size:48px;
    line-height:1.12;
}

.service-detail-content p{
    position:relative;

    margin:0 0 18px;

    color:#667085;

    font-size:17px;
    line-height:1.85;
}

.service-link{
    display:inline-flex;
    align-items:center;

    gap:12px;

    margin-top:18px;

    color:#101828;

    font-size:16px;
    font-weight:700;

    text-decoration:none;

    transition:.3s;
}

.service-link span{
    color:#e2b92f;

    font-size:24px;

    transition:.3s;
}

.service-link:hover{
    color:#e2b92f;
}

.service-link:hover span{
    transform:translateX(7px);
}

.service-detail-visual{
    min-height:500px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:55px;

    color:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 25px 65px rgba(15,23,42,.18);
}

.service-detail-visual > span{
    margin-bottom:auto;

    color:rgba(255,255,255,.2);

    font-size:110px;
    font-weight:800;
    line-height:1;
}

.service-detail-visual h3{
    margin:0 0 16px;

    font-size:38px;
}

.service-detail-visual p{
    max-width:420px;

    margin:0;

    color:rgba(255,255,255,.76);

    font-size:17px;
    line-height:1.7;
}

.service-consulting{
    background:
        linear-gradient(
            135deg,
            rgba(9,14,24,.95),
            rgba(28,39,59,.92)
        );
}

.service-insulation{
    background:
        linear-gradient(
            135deg,
            #c69f1f,
            #8a6a0c
        );
}


/* ===========================
   WORK PROCESS
=========================== */

.work-process{
    padding:110px 7%;

    background:#f5f6f8;
}

.process-grid{
    width:min(1250px, 100%);

    margin:60px auto 0;

    display:grid;
    grid-template-columns:repeat(4, 1fr);

    gap:24px;
}

.process-card{
    position:relative;

    min-height:280px;

    padding:38px 28px;

    background:#ffffff;

    border-radius:18px;

    box-shadow:0 14px 35px rgba(16,24,40,.08);

    overflow:hidden;

    transition:.3s;
}

.process-card::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:0;
    height:4px;

    background:#e2b92f;

    transition:.3s;
}

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

.process-card:hover::after{
    width:100%;
}

.process-card > span{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:56px;
    height:56px;

    margin-bottom:28px;

    color:#101828;

    background:#e2b92f;

    border-radius:50%;

    font-weight:800;
}

.process-card h3{
    margin:0 0 16px;

    color:#101828;

    font-size:23px;
}

.process-card p{
    margin:0;

    color:#667085;

    font-size:15px;
    line-height:1.75;
}


/* ===========================
   SERVICES CTA
=========================== */

.services-cta{
    padding:80px 8%;

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

    gap:50px;

    background:
        linear-gradient(
            90deg,
            rgba(8,12,20,.98),
            rgba(18,25,39,.94)
        );
}

.services-cta > div{
    max-width:820px;
}

.services-cta span{
    color:#e2b92f;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.services-cta h2{
    margin:14px 0 18px;

    color:#ffffff;

    font-size:42px;
    line-height:1.2;
}

.services-cta p{
    margin:0;

    color:rgba(255,255,255,.7);

    font-size:16px;
    line-height:1.75;
}
/* ===========================
   PROJECTS VIDEO HERO
=========================== */

.projects-video-hero{
    position:relative;

    min-height:100vh;

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

    padding:120px 7% 80px;

    overflow:hidden;
}

.projects-hero-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    z-index:0;
}

.projects-video-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(5,9,16,.92),
            rgba(5,9,16,.55),
            rgba(5,9,16,.82)
        );

    z-index:1;
}

.projects-video-content{
    position:relative;
    z-index:2;

    width:min(900px, 100%);

    text-align:center;
    color:#ffffff;
}

.projects-video-content > span{
    display:inline-block;

    margin-bottom:20px;

    color:#e2b92f;

    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.projects-video-content h1{
    margin:0 0 24px;

    font-size:82px;
    line-height:1;
}

.projects-video-content p{
    max-width:720px;

    margin:0 auto 34px;

    color:rgba(255,255,255,.8);

    font-size:19px;
    line-height:1.75;
}

.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:30px;

    z-index:3;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:10px;

    color:rgba(255,255,255,.62);

    font-size:12px;
    letter-spacing:1px;

    transform:translateX(-50%);
}

.scroll-indicator span{
    width:1px;
    height:38px;

    background:#e2b92f;

    animation:scrollLine 1.8s infinite;
}

@keyframes scrollLine{

    0%{
        transform:scaleY(0);
        transform-origin:top;
    }

    50%{
        transform:scaleY(1);
        transform-origin:top;
    }

    51%{
        transform-origin:bottom;
    }

    100%{
        transform:scaleY(0);
        transform-origin:bottom;
    }
}


/* ===========================
   PROJECTS INTRO
=========================== */

.projects-intro{
    width:min(1250px, 88%);

    margin:0 auto;

    padding:115px 0 90px;

    display:grid;
    grid-template-columns:1.15fr .85fr;

    gap:90px;
}

.projects-intro-title h2{
    margin:18px 0 0;

    color:#101828;

    font-size:48px;
    line-height:1.15;
}

.projects-intro-text p{
    margin:0 0 18px;

    color:#667085;

    font-size:17px;
    line-height:1.85;
}


/* ===========================
   FEATURED PROJECTS
=========================== */

.project-showcase{
    width:min(1280px, 90%);

    margin:0 auto;

    padding:30px 0 120px;

    display:flex;
    flex-direction:column;

    gap:120px;
}

.featured-project{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;

    gap:80px;
}

.featured-project-reverse .featured-project-image{
    order:2;
}

.featured-project-reverse .featured-project-content{
    order:1;
}

.featured-project-image{
    position:relative;
}

.featured-project-image img{
    width:100%;
    height:530px;

    display:block;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 25px 65px rgba(15,23,42,.17);
}

.project-category{
    position:absolute;
    left:24px;
    bottom:24px;

    padding:12px 18px;

    color:#101828;

    background:#e2b92f;

    border-radius:8px;

    font-size:13px;
    font-weight:800;
    letter-spacing:.7px;
}

.featured-project-content{
    position:relative;
}

.project-number{
    display:block;

    margin-bottom:20px;

    color:#e2b92f;

    font-size:70px;
    font-weight:800;
    line-height:1;
}

.featured-project-content h2{
    margin:0 0 24px;

    color:#101828;

    font-size:44px;
    line-height:1.15;
}

.featured-project-content p{
    margin:0 0 25px;

    color:#667085;

    font-size:17px;
    line-height:1.85;
}

.featured-project-content ul{
    margin:0;
    padding:0;

    list-style:none;
}

.featured-project-content li{
    position:relative;

    margin-bottom:13px;
    padding-left:28px;

    color:#475467;

    font-size:16px;
}

.featured-project-content li::before{
    content:"";

    position:absolute;
    top:8px;
    left:0;

    width:10px;
    height:10px;

    background:#e2b92f;

    border-radius:50%;
}


/* ===========================
   PROJECT GALLERY
=========================== */

.project-gallery-section{
    padding:110px 7%;

    background:#f5f6f8;
}

.project-gallery-grid{
    width:min(1250px, 100%);

    margin:60px auto 0;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    grid-auto-rows:310px;

    gap:24px;
}

.gallery-item{
    position:relative;

    overflow:hidden;

    border-radius:18px;
}

.gallery-large{
    grid-row:span 2;
}

.gallery-wide{
    grid-column:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:.6s;
}

.gallery-item::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(5,9,16,.88)
        );
}

.gallery-overlay{
    position:absolute;
    left:28px;
    right:28px;
    bottom:26px;

    z-index:2;

    color:#ffffff;
}

.gallery-overlay span{
    color:#e2b92f;

    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
}

.gallery-overlay h3{
    margin:8px 0 0;

    font-size:26px;
}

.gallery-item:hover img{
    transform:scale(1.07);
}


/* ===========================
   PROJECT VIDEO SECTION
=========================== */

.project-video-section{
    width:min(1280px, 90%);

    margin:0 auto;

    padding:120px 0;

    display:grid;
    grid-template-columns:1.15fr .85fr;
    align-items:center;

    gap:80px;
}

.project-video-box{
    overflow:hidden;

    border-radius:20px;

    box-shadow:0 25px 65px rgba(15,23,42,.18);
}

.project-video-box video{
    width:100%;
    height:520px;

    display:block;

    object-fit:cover;

    background:#000000;
}

.project-video-text h2{
    margin:18px 0 24px;

    color:#101828;

    font-size:45px;
    line-height:1.16;
}

.project-video-text p{
    margin:0 0 30px;

    color:#667085;

    font-size:17px;
    line-height:1.85;
}


/* ===========================
   PROJECTS CTA
=========================== */

.projects-cta{
    padding:80px 8%;

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

    gap:50px;

    background:
        linear-gradient(
            90deg,
            rgba(8,12,20,.98),
            rgba(18,25,39,.94)
        );
}

.projects-cta > div{
    max-width:820px;
}

.projects-cta span{
    color:#e2b92f;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.projects-cta h2{
    margin:14px 0 18px;

    color:#ffffff;

    font-size:42px;
    line-height:1.2;
}

.projects-cta p{
    margin:0;

    color:rgba(255,255,255,.7);

    font-size:16px;
    line-height:1.75;
}
/* ===========================
   CONTACT PAGE
=========================== */

.contact-page-hero{
    background-image:url("assets/images/photo3.jpg");
}


/* ===========================
   CONTACT INTRO
=========================== */

.contact-intro{
    width:min(1250px, 88%);

    margin:0 auto;

    padding:110px 0 80px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:90px;
}

.contact-intro-heading h2{
    margin:18px 0 0;

    color:#101828;

    font-size:50px;
    line-height:1.15;
}

.contact-intro-text p{
    margin:0 0 18px;

    color:#667085;

    font-size:17px;
    line-height:1.85;
}


/* ===========================
   CONTACT INFO CARDS
=========================== */

.contact-info-section{
    width:min(1250px, 90%);

    margin:0 auto;

    padding:20px 0 120px;

    display:grid;
    grid-template-columns:repeat(3, 1fr);

    gap:24px;
}

.contact-info-card{
    position:relative;

    min-height:340px;

    display:flex;
    flex-direction:column;

    padding:38px 32px;

    color:inherit;
    background:#ffffff;

    border:1px solid #eaecf0;
    border-radius:20px;

    text-decoration:none;

    box-shadow:0 16px 40px rgba(16,24,40,.08);

    overflow:hidden;

    transition:.35s;
}

.contact-info-card::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:5px;

    background:#e2b92f;

    transform:scaleX(0);
    transform-origin:left;

    transition:.35s;
}

.contact-info-card:hover{
    transform:translateY(-10px);

    box-shadow:0 24px 55px rgba(16,24,40,.14);
}

.contact-info-card:hover::after{
    transform:scaleX(1);
}

.contact-info-icon{
    width:66px;
    height:66px;

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

    margin-bottom:28px;

    color:#101828;
    background:#e2b92f;

    border-radius:50%;

    font-size:27px;
    font-weight:800;
}

.contact-info-card > span{
    margin-bottom:12px;

    color:#b18c14;

    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.contact-info-card h3{
    margin:0 0 17px;

    color:#101828;

    font-size:24px;
    line-height:1.3;
}

.contact-info-card p{
    margin:0 0 28px;

    color:#667085;

    font-size:15px;
    line-height:1.75;
}

.contact-card-link{
    display:flex;
    align-items:center;

    gap:12px;

    margin-top:auto;

    color:#101828;

    font-size:15px;
    font-weight:800;
}

.contact-card-link span{
    color:#e2b92f;

    font-size:22px;

    transition:.3s;
}

.contact-info-card:hover .contact-card-link span{
    transform:translateX(7px);
}


/* ===========================
   CONTACT FORM AREA
=========================== */

.contact-main-section{
    display:grid;
    grid-template-columns:1.15fr .85fr;

    background:#f5f6f8;
}

.contact-form-wrapper{
    padding:110px max(7vw, 40px);
}

.contact-form-heading{
    max-width:700px;

    margin-bottom:45px;
}

.contact-form-heading h2{
    margin:16px 0 18px;

    color:#101828;

    font-size:48px;
    line-height:1.15;
}

.contact-form-heading p{
    margin:0;

    color:#667085;

    font-size:17px;
    line-height:1.75;
}

.contact-form{
    max-width:780px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:22px;
}

.form-group{
    display:flex;
    flex-direction:column;

    margin-bottom:24px;
}

.form-group label{
    margin-bottom:10px;

    color:#344054;

    font-size:14px;
    font-weight:700;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:16px 17px;

    color:#101828;
    background:#ffffff;

    border:1px solid #d0d5dd;
    border-radius:10px;

    outline:none;

    font-family:inherit;
    font-size:15px;

    transition:.25s;
}

.form-group textarea{
    min-height:180px;

    resize:vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#98a2b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#e2b92f;

    box-shadow:0 0 0 4px rgba(226,185,47,.14);
}

.contact-submit-button{
    width:100%;

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

    gap:14px;

    padding:18px 28px;

    color:#101828;
    background:#e2b92f;

    border:none;
    border-radius:10px;

    cursor:pointer;

    font-family:inherit;
    font-size:16px;
    font-weight:800;

    transition:.3s;
}

.contact-submit-button span{
    font-size:22px;

    transition:.3s;
}

.contact-submit-button:hover{
    background:#cba521;

    transform:translateY(-2px);

    box-shadow:0 14px 30px rgba(185,143,10,.22);
}

.contact-submit-button:hover span{
    transform:translateX(6px);
}

.form-notice{
    margin:14px 0 0;

    color:#98a2b3;

    font-size:12px;
    text-align:center;
}


/* ===========================
   CONTACT SIDE PANEL
=========================== */

.contact-side-panel{
    position:relative;

    min-height:850px;

    display:flex;
    align-items:flex-end;

    padding:75px 55px;

    background:
        url("assets/images/photo4.jpg")
        center / cover no-repeat;

    overflow:hidden;
}

.contact-side-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(7,11,18,.35),
            rgba(7,11,18,.96)
        );
}

.contact-side-content{
    position:relative;
    z-index:2;

    color:#ffffff;
}

.contact-side-content > span{
    color:#e2b92f;

    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.contact-side-content h2{
    margin:18px 0 22px;

    font-size:42px;
    line-height:1.18;
}

.contact-side-content > p{
    margin:0 0 36px;

    color:rgba(255,255,255,.72);

    font-size:16px;
    line-height:1.8;
}

.contact-side-list{
    display:flex;
    flex-direction:column;

    gap:18px;
}

.contact-side-list div{
    display:flex;
    align-items:center;

    gap:16px;

    padding-bottom:18px;

    border-bottom:1px solid rgba(255,255,255,.13);
}

.contact-side-list strong{
    min-width:42px;

    color:#e2b92f;

    font-size:19px;
}

.contact-side-list span{
    color:rgba(255,255,255,.85);

    font-size:14px;
    line-height:1.5;
}


/* ===========================
   LOCATION SECTION
=========================== */

.contact-map-section{
    padding:110px 7%;
}

.contact-map-heading{
    max-width:760px;

    margin:0 auto 55px;

    text-align:center;
}

.contact-map-heading h2{
    margin:17px 0 20px;

    color:#101828;

    font-size:46px;
    line-height:1.16;
}

.contact-map-heading p{
    margin:0;

    color:#667085;

    font-size:17px;
    line-height:1.8;
}

.contact-location-box{
    position:relative;

    width:min(1250px, 100%);
    min-height:520px;

    margin:0 auto;

    display:flex;
    align-items:center;

    padding:70px;

    border-radius:22px;

    overflow:hidden;
}

.location-background{
    position:absolute;
    inset:0;

    background:
        url("assets/images/photo2.jpg")
        center / cover no-repeat;

    transform:scale(1.02);
}

.contact-location-box::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(6,10,17,.96),
            rgba(6,10,17,.76),
            rgba(6,10,17,.25)
        );
}

.location-content{
    position:relative;
    z-index:2;

    max-width:650px;

    color:#ffffff;
}

.location-content > span{
    color:#e2b92f;

    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.location-content h3{
    margin:18px 0 22px;

    font-size:44px;
    line-height:1.15;
}

.location-content p{
    margin:0 0 32px;

    color:rgba(255,255,255,.75);

    font-size:16px;
    line-height:1.8;
}

.location-buttons{
    display:flex;
    flex-wrap:wrap;

    gap:15px;
}

.btn-outline-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 25px;

    color:#ffffff;
    background:transparent;

    border:1px solid rgba(255,255,255,.45);
    border-radius:8px;

    text-decoration:none;
    font-size:15px;
    font-weight:700;

    transition:.3s;
}

.btn-outline-light:hover{
    color:#101828;
    background:#ffffff;
}


/* ===========================
   FLOATING WHATSAPP
=========================== */

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    z-index:1000;

    display:flex;
    align-items:center;

    gap:12px;

    padding:13px 18px 13px 13px;

    color:#ffffff;
    background:#1f9d55;

    border-radius:50px;

    text-decoration:none;

    box-shadow:0 12px 35px rgba(0,0,0,.25);

    transition:.3s;
}

.floating-whatsapp > span{
    width:42px;
    height:42px;

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

    background:rgba(255,255,255,.15);

    border-radius:50%;

    font-size:22px;
}

.floating-whatsapp div{
    display:flex;
    flex-direction:column;
}

.floating-whatsapp small{
    color:rgba(255,255,255,.75);

    font-size:10px;
}

.floating-whatsapp strong{
    font-size:14px;
}

.floating-whatsapp:hover{
    transform:translateY(-5px);

    box-shadow:0 17px 42px rgba(0,0,0,.3);
}
/* ===========================
   REFERENCES PAGE
=========================== */

.references-page-hero{
    background-image:url("assets/images/photo2.jpg");
}


/* ===========================
   REFERENCES INTRO
=========================== */

.references-intro{
    width:min(1250px, 88%);

    margin:0 auto;

    padding:110px 0 80px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:90px;
}

.references-intro-heading h2{
    margin:18px 0 0;

    color:#101828;

    font-size:50px;
    line-height:1.15;
}

.references-intro-text p{
    margin:0 0 18px;

    color:#667085;

    font-size:17px;
    line-height:1.85;
}


/* ===========================
   REFERENCE STATS
=========================== */

.references-stats{
    width:min(1250px, 90%);

    margin:0 auto;

    padding:20px 0 120px;

    display:grid;
    grid-template-columns:repeat(4, 1fr);

    gap:24px;
}

.reference-stat-card{
    min-height:280px;

    padding:38px 28px;

    background:#0e1420;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(15,23,42,.13);

    transition:.35s;
}

.reference-stat-card:hover{
    transform:translateY(-8px);

    background:#151d2c;
}

.reference-stat-card strong{
    display:block;

    margin-bottom:18px;

    color:#e2b92f;

    font-size:54px;
    line-height:1;
}

.reference-stat-card > span{
    display:block;

    margin-bottom:16px;

    color:#ffffff;

    font-size:20px;
    font-weight:700;
}

.reference-stat-card p{
    margin:0;

    color:rgba(255,255,255,.65);

    font-size:14px;
    line-height:1.75;
}


/* ===========================
   REFERENCE PROJECTS
=========================== */

.reference-projects{
    padding:110px 7%;

    background:#f5f6f8;
}

.reference-project-grid{
    width:min(1250px, 100%);

    margin:60px auto 0;

    display:grid;
    grid-template-columns:repeat(3, 1fr);

    gap:28px;
}

.reference-project-card{
    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 16px 40px rgba(16,24,40,.09);

    transition:.35s;
}

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

    box-shadow:0 25px 55px rgba(16,24,40,.15);
}

.reference-project-image{
    position:relative;

    height:320px;

    overflow:hidden;
}

.reference-project-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:.6s;
}

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

.reference-project-image::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5,9,16,.72)
        );
}

.reference-project-image > span{
    position:absolute;
    left:22px;
    bottom:20px;

    z-index:2;

    padding:10px 15px;

    color:#101828;
    background:#e2b92f;

    border-radius:7px;

    font-size:12px;
    font-weight:800;
}

.reference-project-content{
    padding:30px 28px 32px;
}

.reference-project-type{
    color:#b18c14;

    font-size:11px;
    font-weight:800;
    letter-spacing:1.7px;
}

.reference-project-content h3{
    margin:13px 0 17px;

    color:#101828;

    font-size:25px;
    line-height:1.3;
}

.reference-project-content > p{
    margin:0 0 28px;

    color:#667085;

    font-size:15px;
    line-height:1.75;
}

.reference-project-details{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:16px;

    padding-top:22px;

    border-top:1px solid #eaecf0;
}

.reference-project-details div{
    display:flex;
    flex-direction:column;

    gap:6px;
}

.reference-project-details span{
    color:#98a2b3;

    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

.reference-project-details strong{
    color:#344054;

    font-size:13px;
}


/* ===========================
   CUSTOMER COMMENTS
=========================== */

.customer-comments{
    padding:110px 7%;
}

.comments-grid{
    width:min(1250px, 100%);

    margin:60px auto 0;

    display:grid;
    grid-template-columns:repeat(3, 1fr);

    gap:25px;
}

.comment-card{
    position:relative;

    min-height:360px;

    display:flex;
    flex-direction:column;

    padding:38px 32px;

    background:#ffffff;

    border:1px solid #eaecf0;
    border-radius:18px;

    box-shadow:0 14px 35px rgba(16,24,40,.07);

    transition:.35s;
}

.comment-card:hover{
    transform:translateY(-8px);

    border-color:rgba(226,185,47,.65);
}

.comment-card::before{
    content:"“";

    position:absolute;
    top:10px;
    right:24px;

    color:rgba(226,185,47,.18);

    font-family:Georgia, serif;
    font-size:100px;
    line-height:1;
}

.comment-stars{
    position:relative;

    margin-bottom:25px;

    color:#e2b92f;

    font-size:18px;
    letter-spacing:4px;
}

.comment-card > p{
    position:relative;

    margin:0 0 30px;

    color:#475467;

    font-size:16px;
    line-height:1.85;
}

.comment-customer{
    display:flex;
    align-items:center;

    gap:14px;

    margin-top:auto;
}

.customer-avatar{
    width:52px;
    height:52px;

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

    color:#101828;
    background:#e2b92f;

    border-radius:50%;

    font-size:18px;
    font-weight:800;
}

.comment-customer > div:last-child{
    display:flex;
    flex-direction:column;

    gap:4px;
}

.comment-customer strong{
    color:#101828;

    font-size:14px;
}

.comment-customer span{
    color:#98a2b3;

    font-size:12px;
}


/* ===========================
   REFERENCE VIDEO BANNER
=========================== */

.reference-video-banner{
    position:relative;

    min-height:620px;

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

    padding:80px 7%;

    overflow:hidden;
}

.reference-video-banner video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.reference-video-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(5,9,16,.94),
            rgba(5,9,16,.65),
            rgba(5,9,16,.85)
        );
}

.reference-video-content{
    position:relative;
    z-index:2;

    max-width:760px;

    text-align:center;
    color:#ffffff;
}

.reference-video-content > span{
    color:#e2b92f;

    font-size:13px;
    font-weight:800;
    letter-spacing:2.5px;
}

.reference-video-content h2{
    margin:20px 0 24px;

    font-size:54px;
    line-height:1.12;
}

.reference-video-content p{
    margin:0 auto 32px;

    color:rgba(255,255,255,.76);

    font-size:17px;
    line-height:1.8;
}


/* ===========================
   REFERENCES CTA
=========================== */

.references-cta{
    padding:80px 8%;

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

    gap:50px;

    background:#0e1420;
}

.references-cta > div{
    max-width:850px;
}

.references-cta span{
    color:#e2b92f;

    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.references-cta h2{
    margin:15px 0 0;

    color:#ffffff;

    font-size:40px;
    line-height:1.25;
}
/* LOGO BOYUT DÜZELTME */

.navbar {
    overflow: visible !important;
}

.navbar .logo {
    position: relative !important;
    width: 320px !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;

    overflow: visible !important;
}

.navbar .logo img {
    position: static !important;

    width: 100% !important;
    height: auto !important;
    max-height: none !important;

    object-fit: contain !important;
    transform: none !important;

    display: block !important;
}
html {
    scrollbar-color: #d4af37 #ececec;
    scrollbar-width: auto;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #ececec;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 20px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #b89025;
}
.hero-content,
.hero-buttons,
.hero-buttons a {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.hero-video,
.overlay {
    pointer-events: none;
}
.hero-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px 28px;

    margin:28px 0 30px;

    color:#ffffff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.2px;
}

.hero-features span{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 16px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;

    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
}
/* ===========================
   PREMIUM BUTTONS
=========================== */

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:170px;
    min-height:52px;

    padding:14px 28px;

    border-radius:8px;

    font-size:15px;
    font-weight:700;
    letter-spacing:.2px;

    text-decoration:none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.btn-primary{
    color:#111111;
    background:linear-gradient(135deg, #e3c158, #c99b26);
    border:1px solid rgba(255,255,255,.18);

    box-shadow:
        0 10px 25px rgba(212,175,55,.22),
        inset 0 1px 0 rgba(255,255,255,.32);
}

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

    background:linear-gradient(135deg, #efd271, #d4af37);

    box-shadow:
        0 16px 32px rgba(212,175,55,.32),
        inset 0 1px 0 rgba(255,255,255,.4);
}

.btn-secondary{
    color:#ffffff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.42);

    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
}

.btn-secondary:hover{
    color:#111111;
    background:#ffffff;
    border-color:#ffffff;

    transform:translateY(-3px);

    box-shadow:0 16px 32px rgba(0,0,0,.22);
}

.btn-primary:active,
.btn-secondary:active{
    transform:translateY(-1px);
}
/* ===========================
   ABOUT STATS
=========================== */

.about-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin:35px 0;

}

.stat-box{

    background:#ffffff;

    border-radius:16px;

    padding:25px;

    text-align:center;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.14);

}

.stat-box h3{

    font-size:34px;

    color:#d4af37;

    margin-bottom:10px;

}

.stat-box span{

    color:#666;

    font-weight:600;

    font-size:15px;

}
/* ===========================
   PREMIUM PROJECT CARDS
=========================== */

.project-card{
    position:relative;

    overflow:hidden;

    background:#ffffff;

    border:1px solid rgba(0,0,0,.08);

    border-radius:18px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.project-card::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #b89025,
        #e3c158
    );

    transform:scaleX(0);
    transform-origin:left;

    transition:transform .35s ease;
}

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

    border-color:rgba(212,175,55,.45);

    box-shadow:0 22px 50px rgba(0,0,0,.15);
}

.project-card:hover::after{
    transform:scaleX(1);
}

.project-card img{
    width:100%;
    height:240px;

    display:block;

    object-fit:cover;

    transition:transform .55s ease;
}

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

.project-content{
    position:relative;

    padding:24px 24px 28px;

    background:#ffffff;

    z-index:2;
}

.project-content h3{
    margin-bottom:12px;

    color:#111827;

    font-size:22px;
    line-height:1.25;
}

.project-content p{
    margin:0;

    color:#667085;

    font-size:15px;
    line-height:1.75;
}
/* ===========================
   SERVICES GRID
=========================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
    margin-top:42px;
}

.service-item{
    position:relative;
    overflow:hidden;

    min-height:250px;
    padding:34px 30px;

    background:#ffffff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.service-item::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(90deg, #b89025, #e3c158);

    transform:scaleX(0);
    transform-origin:left;

    transition:transform .35s ease;
}

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

    border-color:rgba(212,175,55,.4);

    box-shadow:0 22px 48px rgba(0,0,0,.13);
}

.service-item:hover::before{
    transform:scaleX(1);
}

.service-number{
    display:block;

    margin-bottom:26px;

    color:#d4af37;

    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
}

.service-item h3{
    margin-bottom:14px;

    color:#111827;

    font-size:22px;
    line-height:1.3;
}

.service-item p{
    margin:0;

    color:#667085;

    font-size:15px;
    line-height:1.75;
}

/* ===========================
   HOME CTA
=========================== */

.container{
    width:min(1200px, calc(100% - 48px));
    margin-inline:auto;
}

.home-cta{
    position:relative;
    overflow:hidden;
    padding:80px 0;
    background:linear-gradient(135deg, #111827, #1f2937);
}

.home-cta::before,
.home-cta::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.home-cta::before{
    top:-120px;
    right:-100px;
    width:360px;
    height:360px;
    background:rgba(212,175,55,.12);
    filter:blur(10px);
}

.home-cta::after{
    bottom:-180px;
    left:-120px;
    width:420px;
    height:420px;
    border:1px solid rgba(212,175,55,.18);
}

.home-cta-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0, 1fr) 240px;
    align-items:center;
    gap:80px;
}

.home-cta-text{
    max-width:760px;
}

.home-cta .section-label{
    display:block;
    margin-bottom:18px;
    color:#d4af37;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
}

.home-cta h2{
    max-width:760px;
    margin:0 0 20px;
    color:#fff;
    font-size:clamp(38px, 4.2vw, 62px);
    line-height:1.08;
}

.home-cta p{
    max-width:700px;
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.8;
}

.home-cta-buttons{
    width:240px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.cta-phone,
.cta-contact{
    width:100%;
    min-height:54px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    border-radius:9px;
    font-size:15px;
    font-weight:700;
    text-align:center;
    transition:transform .25s ease, background .25s ease,
               color .25s ease, border-color .25s ease,
               box-shadow .25s ease;
}

.cta-phone{
    color:#111827;
    background:linear-gradient(135deg, #e5c55d, #c99b26);
    box-shadow:0 12px 30px rgba(212,175,55,.22);
}

.cta-phone:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(212,175,55,.32);
}

.cta-contact{
    color:#fff;
    background:transparent;
    border:1px solid rgba(255,255,255,.32);
}

.cta-contact:hover{
    color:#111827;
    background:#fff;
    border-color:#fff;
    transform:translateY(-3px);
}

/* ===========================
   FOOTER
=========================== */

.footer{
    margin-top:0;
    padding:76px 0 0;
    color:#fff;
    background:#111827;
    text-align:left;
}

.footer-grid{
    display:grid;
    grid-template-columns:minmax(360px, 1.75fr) .75fr .9fr;
    align-items:start;
    gap:72px;
}

.footer-col{
    min-width:0;
}

.footer-brand{
    align-self:start;
}

.footer .footer-logo{
    display:block;
    width:420px;
    max-width:100%;
    height:auto;
    margin:0 0 24px;
    padding:0;
    object-fit:contain;
}

.footer-brand p{
    max-width:560px;
    margin:0;
    color:rgba(255,255,255,.70);
    font-size:15px;
    line-height:1.9;
}

.footer h3{
    margin:4px 0 22px;
    color:#d4af37;
    font-size:20px;
}

.footer ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer li{
    margin-bottom:14px;
    color:rgba(255,255,255,.75);
}

.footer a{
    color:rgba(255,255,255,.75);
    transition:color .25s ease, transform .25s ease;
}

.footer a:hover{
    display:inline-block;
    color:#d4af37;
    transform:translateX(5px);
}

.footer-bottom{
    margin-top:70px;
    padding:25px 20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.55);
    text-align:center;
}
/* ===========================
   SECTION COLOR TRANSITIONS
=========================== */

/* Geçiş elemanlarının düzgün çalışması */
.hero,
.about,
.projects,
.home-cta,
.footer{
    position:relative;
}

/* HERO → HAKKIMIZDA
   Koyu görüntüden beyaza yumuşak geçiş */
.hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    z-index:3;

    height:110px;

    background:linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,.28) 45%,
        #ffffff 100%
    );

    pointer-events:none;
}

/* HAKKIMIZDA → PROJELER
   İnce altın geçiş çizgisi */
.about::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;

    width:min(1100px, 84%);
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,.85),
        transparent
    );

    transform:translateX(-50%);
    pointer-events:none;
}

/* PROJELER → CTA
   Açık griden koyu alana yumuşak kararma */
.projects::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    z-index:2;

    height:130px;

    background:linear-gradient(
        to bottom,
        transparent 0%,
        rgba(17,24,39,.16) 55%,
        #111827 100%
    );

    pointer-events:none;
}

/* CTA → FOOTER
   Altın ışık çizgisi */
.home-cta::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    z-index:4;

    width:min(1050px, 86%);
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,.75),
        transparent
    );

    box-shadow:0 0 18px rgba(212,175,55,.28);

    transform:translateX(-50%);
    pointer-events:none;
}

/* ===========================
   FOOTER FINAL FIX
=========================== */

.footer{
    position:relative;
    padding:70px 0 0;
    background:#111827;
    color:#ffffff;
    text-align:left;
}

.footer .container{
    width:min(1200px, calc(100% - 48px));
    margin:0 auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:minmax(0, 1.6fr) minmax(180px, .7fr) minmax(220px, .8fr);
    align-items:start;
    gap:70px;
}

.footer-col{
    min-width:0;
}

.footer-brand{
    display:block;
}

.footer .footer-logo{
    display:block;
    width:380px;
    max-width:100%;
    height:auto;
    margin:0 0 24px;
    object-fit:contain;
}

.footer-brand p{
    max-width:560px;
    margin:0;
    color:rgba(255,255,255,.68);
    font-size:15px;
    line-height:1.9;
}

.footer h3{
    margin:0 0 22px;
    color:#d4af37;
    font-size:20px;
}

.footer ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer li{
    margin-bottom:14px;
    color:rgba(255,255,255,.72);
    font-size:15px;
    line-height:1.6;
}

.footer a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
}

.footer a:hover{
    color:#d4af37;
}

.footer-bottom{
    margin-top:65px;
    padding:24px 20px;
    border-top:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.55);
    text-align:center;
}
/* ===========================
   CARD MOUSE GLOW
=========================== */

.project-card,
.service-item,
.why-us-item{
    position:relative;
    overflow:hidden;
}

.project-card::before,
.service-item::before,
.why-us-item::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;

    background:
        radial-gradient(
            380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(226,185,47,.20),
            transparent 42%
        );

    opacity:0;
    transition:opacity .25s ease;
    pointer-events:none;
}

.project-card:hover::before,
.service-item:hover::before,
.why-us-item:hover::before{
    opacity:1;
}

/* Kart içeriği ışığın üstünde kalsın */
.project-card > *,
.service-item > *,
.why-us-item > *{
    position:relative;
    z-index:2;
}
/* ===========================
   PREMIUM CARD HOVER
=========================== */

.project-card,
.service-item,
.why-us-item,
.reference-project-card,
.contact-info-card,
.mission-card,
.process-card{
    position:relative;
    overflow:hidden;

    border:1px solid transparent;

    transition:
        transform .38s cubic-bezier(.2,.8,.2,1),
        box-shadow .38s ease,
        border-color .38s ease,
        background-color .38s ease;
}

/* Üstte beliren altın çizgi */
.project-card::after,
.service-item::after,
.why-us-item::after,
.reference-project-card::after,
.contact-info-card::after,
.mission-card::after,
.process-card::after{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:3px;

    background:linear-gradient(
        90deg,
        transparent,
        #e2b92f,
        transparent
    );

    transform:scaleX(0);
    transform-origin:center;

    transition:transform .38s ease;

    pointer-events:none;
}

/* Hover hareketi */
.project-card:hover,
.service-item:hover,
.why-us-item:hover,
.reference-project-card:hover,
.contact-info-card:hover,
.mission-card:hover,
.process-card:hover{
    transform:
        translateY(-12px)
        scale(1.015);

    border-color:rgba(226,185,47,.65);

    box-shadow:
        0 28px 60px rgba(0,0,0,.18),
        0 0 30px rgba(226,185,47,.10);
}

.project-card:hover::after,
.service-item:hover::after,
.why-us-item:hover::after,
.reference-project-card:hover::after,
.contact-info-card:hover::after,
.mission-card:hover::after,
.process-card:hover::after{
    transform:scaleX(1);
}

/* Kart içindeki görseller */
.project-card img,
.service-item img,
.reference-project-card img{
    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        filter .4s ease;
}

.project-card:hover img,
.service-item:hover img,
.reference-project-card:hover img{
    transform:scale(1.06);
    filter:saturate(1.08) contrast(1.03);
}

/* Kart içindeki ikon */
.service-item i,
.why-us-item i,
.contact-info-card i,
.mission-card i,
.process-card i{
    transition:
        transform .35s ease,
        color .35s ease;
}

.service-item:hover i,
.why-us-item:hover i,
.contact-info-card:hover i,
.mission-card:hover i,
.process-card:hover i{
    transform:
        translateY(-4px)
        scale(1.08);

    color:#e2b92f;
}

/* Başlık hareketi */
.project-card h3,
.service-item h3,
.why-us-item h3,
.reference-project-card h3,
.contact-info-card h3,
.mission-card h3,
.process-card h3{
    transition:
        color .3s ease,
        transform .3s ease;
}

.project-card:hover h3,
.service-item:hover h3,
.why-us-item:hover h3,
.reference-project-card:hover h3,
.contact-info-card:hover h3,
.mission-card:hover h3,
.process-card:hover h3{
    color:#e2b92f;
    transform:translateX(4px);
}
/* ===========================
   HERO GOLD PARTICLES
=========================== */

.hero{
    position:relative;
    overflow:hidden;
}

.hero-particles{
    position:absolute;
    inset:0;
    z-index:2;

    pointer-events:none;
    overflow:hidden;
}

.hero-particles span{
    position:absolute;

    width:7px;
    height:7px;

    border-radius:50%;

    background:#e2b92f;

    box-shadow:
        0 0 12px rgba(226,185,47,.75),
        0 0 28px rgba(226,185,47,.35);

    opacity:.55;

    animation:
        particleFloat 8s ease-in-out infinite,
        particlePulse 3s ease-in-out infinite;
}

.hero-particles span:nth-child(1){
    left:8%;
    top:22%;
    animation-delay:0s;
}

.hero-particles span:nth-child(2){
    left:18%;
    top:72%;
    width:4px;
    height:4px;
    animation-delay:1.2s;
}

.hero-particles span:nth-child(3){
    left:31%;
    top:36%;
    width:5px;
    height:5px;
    animation-delay:2.1s;
}

.hero-particles span:nth-child(4){
    left:52%;
    top:18%;
    width:4px;
    height:4px;
    animation-delay:.6s;
}

.hero-particles span:nth-child(5){
    left:67%;
    top:63%;
    width:6px;
    height:6px;
    animation-delay:1.7s;
}

.hero-particles span:nth-child(6){
    left:78%;
    top:28%;
    width:5px;
    height:5px;
    animation-delay:2.7s;
}

.hero-particles span:nth-child(7){
    left:89%;
    top:70%;
    width:4px;
    height:4px;
    animation-delay:.9s;
}

.hero-particles span:nth-child(8){
    left:44%;
    top:82%;
    width:3px;
    height:3px;
    animation-delay:3.2s;
}

@keyframes particleFloat{

    0%,
    100%{
        transform:
            translate3d(0,0,0)
            scale(1);
    }

    25%{
        transform:
            translate3d(18px,-24px,0)
            scale(1.12);
    }

    50%{
        transform:
            translate3d(-10px,-42px,0)
            scale(.92);
    }

    75%{
        transform:
            translate3d(14px,-20px,0)
            scale(1.05);
    }
}

@keyframes particlePulse{

    0%,
    100%{
        opacity:.25;
    }

    50%{
        opacity:.75;
    }
}
/* ===========================
   PREMIUM BUTTON GLOW
=========================== */

.btn-primary,
.nav-button,
.hero-buttons a,
.cta-button,
button[type="submit"]{
    position:relative;
    isolation:isolate;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background-color .3s ease;
}

.btn-primary::after,
.nav-button::after,
.cta-button::after,
button[type="submit"]::after{
    content:"";

    position:absolute;
    inset:-8px;
    z-index:-1;

    border-radius:inherit;

    background:rgba(226,185,47,.30);

    filter:blur(18px);

    opacity:0;
    transform:scale(.8);

    transition:
        opacity .3s ease,
        transform .3s ease;

    pointer-events:none;
}

.btn-primary:hover,
.nav-button:hover,
.cta-button:hover,
button[type="submit"]:hover{
    transform:translateY(-3px);

    box-shadow:
        0 16px 34px rgba(0,0,0,.18),
        0 0 22px rgba(226,185,47,.20);
}

.btn-primary:hover::after,
.nav-button:hover::after,
.cta-button:hover::after,
button[type="submit"]:hover::after{
    opacity:1;
    transform:scale(1);
}

.btn-primary:active,
.nav-button:active,
.cta-button:active,
button[type="submit"]:active{
    transform:translateY(-1px) scale(.98);
}
/* ===========================
   LOGO MICRO INTERACTION
=========================== */

.navbar .logo img,
.footer-logo{
    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        filter .35s ease;
}

.navbar .logo:hover img{
    transform:
        translateY(5px)
        scale(1.035)
        rotate(.6deg);

    filter:
        brightness(1.08)
        drop-shadow(0 8px 16px rgba(226,185,47,.16));
}

.footer-logo:hover{
    transform:
        scale(1.035)
        rotate(-.5deg);

    filter:
        brightness(1.08)
        drop-shadow(0 8px 16px rgba(226,185,47,.16));
}
/* ===========================
   PAGE VISIBILITY — STABLE
=========================== */

body{
    opacity:1 !important;
    filter:none !important;
    transform:none !important;
}
/* YATAY TAŞMA DÜZELTME */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

img,
video,
svg{
    max-width:100%;
    height:auto;
}
/* ==================================================
   PROJECT GALLERY — EDITORIAL DESIGN
================================================== */

.project-gallery-section{
    position:relative;

    padding:120px 7% 130px;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f7f4 10%,
            #f3f2ee 48%,
            #f7f6f3 90%,
            #ffffff 100%
        );
}


/* Hafif dekoratif ışık */

.project-gallery-section::before{
    content:"";

    position:absolute;

    width:520px;
    height:520px;

    top:140px;
    right:-260px;

    border-radius:50%;

    background:
        rgba(226,185,47,.07);

    filter:blur(30px);

    pointer-events:none;
}


/* ===========================
   BAŞLIK
=========================== */

.gallery-section-heading{
    position:relative;
    z-index:2;

    width:min(760px, 100%);

    margin:0 auto 70px;

    text-align:center;
}

.gallery-section-heading h2{
    margin:15px 0 18px;

    color:#101828;

    font-size:48px;
    line-height:1.14;
}

.gallery-section-heading p{
    max-width:620px;

    margin:0 auto;

    color:#667085;

    font-size:17px;
    line-height:1.8;
}


/* ==================================================
   ANA GALERİ
================================================== */

.editorial-gallery{
    position:relative;
    z-index:2;

    width:min(1280px, 100%);

    margin:0 auto;

    display:grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(0, .82fr);

    grid-template-rows:
        315px
        315px;

    gap:34px;
}


/* ===========================
   KART
=========================== */

.editorial-card{
    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:#101828;

    box-shadow:
        0 24px 65px rgba(15,23,42,.11);

    isolation:isolate;

    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        box-shadow .55s ease;
}


/* Büyük fotoğraf */

.editorial-main{
    grid-row:1 / 3;
}


/* Görseller */

.editorial-card img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1),
        filter .6s ease;
}


/* Gradient */

.editorial-card::after{
    content:"";

    position:absolute;
    inset:0;

    z-index:1;

    background:
        linear-gradient(
            to top,
            rgba(5,9,16,.88) 0%,
            rgba(5,9,16,.30) 34%,
            transparent 68%
        );

    transition:
        opacity .5s ease;

    pointer-events:none;
}


/* Hafif altın hover ışığı */

.editorial-card::before{
    content:"";

    position:absolute;

    inset:0;

    z-index:2;

    border:1px solid rgba(226,185,47,0);

    border-radius:inherit;

    transition:
        border-color .45s ease,
        box-shadow .45s ease;

    pointer-events:none;
}


/* ===========================
   OVERLAY
=========================== */

.editorial-overlay{
    position:absolute;

    left:30px;
    right:30px;
    bottom:28px;

    z-index:3;

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:25px;

    color:#ffffff;
}

.gallery-number{
    color:rgba(255,255,255,.5);

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;
}

.gallery-category{
    display:block;

    margin-bottom:8px;

    color:#e2b92f;

    font-size:11px;
    font-weight:800;

    letter-spacing:1.8px;
}

.editorial-overlay h3{
    margin:0;

    color:#ffffff;

    font-size:27px;
    line-height:1.2;
}


/* ===========================
   HOVER
=========================== */

.editorial-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 34px 85px rgba(15,23,42,.18);
}

.editorial-card:hover img{
    transform:scale(1.055);

    filter:
        saturate(1.06)
        contrast(1.025);
}

.editorial-card:hover::before{
    border-color:rgba(226,185,47,.38);

    box-shadow:
        inset 0 0 45px rgba(226,185,47,.05);
}


/* ==================================================
   FONKSİYONEL MEKANLAR
================================================== */

.functional-projects{
    position:relative;
    z-index:2;

    width:min(1280px, 100%);

    margin:110px auto 0;
    padding-top:85px;

    border-top:
        1px solid rgba(16,24,40,.10);
}


/* Başlık */

.functional-projects-heading{
    max-width:720px;

    margin-bottom:48px;
}

.functional-projects-heading h2{
    margin:14px 0 17px;

    color:#101828;

    font-size:42px;
    line-height:1.15;
}

.functional-projects-heading p{
    max-width:620px;

    margin:0;

    color:#667085;

    font-size:16px;
    line-height:1.8;
}


/* İki görsel */

.functional-projects-grid{
    display:grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap:36px;
}


/* Kart */

.functional-project-card{
    position:relative;

    height:430px;

    overflow:hidden;

    border-radius:24px;

    background:#101828;

    box-shadow:
        0 20px 55px rgba(15,23,42,.10);

    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        box-shadow .55s ease;
}

.functional-project-card img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .75s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}


/* Numara */

.functional-index{
    position:absolute;

    left:24px;
    bottom:22px;

    z-index:2;

    width:45px;
    height:45px;

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

    border:
        1px solid rgba(255,255,255,.28);

    border-radius:50%;

    color:#ffffff;

    background:
        rgba(8,12,20,.46);

    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);

    font-size:12px;
    font-weight:700;

    transition:
        background .4s ease,
        color .4s ease,
        border-color .4s ease;
}


/* Hover */

.functional-project-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 32px 75px rgba(15,23,42,.16);
}

.functional-project-card:hover img{
    transform:scale(1.05);

    filter:saturate(1.05);
}

.functional-project-card:hover .functional-index{
    color:#101828;

    background:#e2b92f;

    border-color:#e2b92f;
}

/* ==================================================
   FINAL HERO CENTER + OLD "KEŞFET" CUE CLEANUP
================================================== */

.hero-content,
.page-hero-content,
.projects-video-content{
    left:auto !important;
    right:auto !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
}

/* Eski JS/animasyon sisteminden kalan sağdaki "KEŞFET" etiketi */
.hero-scroll-cue{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
}
/* =========================================
   VIDEO STABILITY FIX
========================================= */

.hero-video,
.projects-hero-video,
.reference-video-banner video{
    position:absolute !important;
    inset:0 !important;

    width:100% !important;
    height:100% !important;
    max-width:none !important;

    object-fit:cover !important;
    object-position:center !important;

    display:block !important;
}

/* Normal içerik videosu */
.project-video-box video{
    width:100% !important;
    height:520px !important;
    display:block !important;
    object-fit:cover !important;
}
