*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#111;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:92%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 45px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.12);

    border-radius:80px;

    z-index:999;
}

.logo{
    color:#fff;
    font-size:32px;
    font-weight:800;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.nav-btn{
    padding:14px 28px;
    background:#ffb400;
    border-radius:50px;
    text-decoration:none;
    color:#111;
    font-weight:700;
}

/* HERO */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.45);
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2)
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);

    z-index:10;

    max-width:750px;
}

.hero-content p{
    color:#ffb400;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:110px;
    line-height:0.95;
    font-weight:800;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.primary-btn,
.secondary-btn{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.primary-btn{
    background:#ffb400;
    color:#111;
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
}

/* ABOUT */
/* ABOUT SECTION */

.about{
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;

    padding: 120px 10%;

    background: #0a0a0a;

    position: relative;
    z-index: 2;
}

/* LEFT IMAGE */

.about-image{
    width: 50%;
}

.about-image img{
    width: 100%;
    height: 600px;

    object-fit: cover;

    border-radius: 30px;

    display: block;
}

/* RIGHT CONTENT */

.about-content{
    width: 50%;

    color: white;
}

/* SMALL TITLE */

.about-content span{
    color: #ffb400;

    font-size: 18px;
    letter-spacing: 3px;

    font-weight: 600;
}

/* HEADING */

.about-content h2{
    font-size: 65px;
    line-height: 1.1;

    margin: 25px 0;
}

/* PARAGRAPH */

.about-content p{
    font-size: 18px;
    line-height: 1.8;

    color: #cfcfcf;

    margin-bottom: 35px;
}

/* STATS */

.about-stats{
    display: flex;
    gap: 25px;
}

/* BOX */

.mini-box{
    background: #151515;

    padding: 25px 35px;

    border-radius: 20px;
}

.mini-box h3{
    color: #ffb400;

    font-size: 32px;

    margin-bottom: 8px;
}

.mini-box p{
    margin: 0;
    color: white;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#0ea5e9;
    font-weight:700;
    letter-spacing:3px;
}

.section-title h2{
    font-size:70px;
    margin-top:15px;
}

/* SERVICES */

.services{
    padding:120px 7%;
    background:#f8f8f8;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
}

.service-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:0.6s;
}

.service-card:hover img{
    transform:scale(1.1);
}

.service-info{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;

    padding:35px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        transparent
    );

    color:#fff;
}

.service-info h3{
    font-size:32px;
    margin-bottom:10px;
}

/* PROJECTS */

.projects{
    padding:120px 7%;
    background:#111;
}

.dark-title h2,
.dark-title span{
    color:#fff;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.project-card{
    overflow:hidden;
    border-radius:30px;
}

.project-card img{
    width:100%;
    height:550px;
    object-fit:cover;
    transition:0.6s;
}

.project-card:hover img{
    transform:scale(1.1);
}

/* TESTIMONIAL */

.testimonial{
    height:70vh;
    position:relative;
}

.testimonial img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.testimonial-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,102,204,0.55);

    display:flex;
    align-items:center;
    justify-content:center;
}

.testimonial-content{
    max-width:900px;
    text-align:center;
    color:#fff;
}

.testimonial-content h2{
    font-size:65px;
    margin-bottom:30px;
}

.testimonial-content p{
    font-size:30px;
    line-height:1.8;
}

/* FOOTER */

.footer{
    background:#fff;
    padding:100px 7% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-grid h2{
    font-size:50px;
    color:#ffb400;
    margin-bottom:20px;
}

.footer-grid h3{
    margin-bottom:25px;
}

.footer-grid p,
.footer-grid a{
    display:block;
    margin-bottom:15px;
    color:#666;
    text-decoration:none;
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid #ddd;
    color:#666;
}
/* HERO SECTION */

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */

.hero-video{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* DARK OVERLAY */

.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.55);

    z-index: 1;
}

/* CONTENT */

.hero-content{
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 5;

    width: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;

    padding: 20px;
}

/* SMALL TEXT */

.hero-content p{
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 20px;

    color: #ffb400;
}

/* BIG HEADING */

.hero-content h1{
    font-size: 85px;
    line-height: 1.1;
    font-weight: 800;

    margin-bottom: 30px;
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    gap: 20px;
}

/* BUTTON STYLE */

.primary-btn,
.secondary-btn{
    padding: 15px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

/* PRIMARY BUTTON */

.primary-btn{
    background: #ffb400;
    color: black;
}

/* SECONDARY BUTTON */

.secondary-btn{
    border: 2px solid white;
    color: white;
}
/* ABOUT */

.about{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;

    padding:120px 10%;

    background:#0a0a0a;
}

/* IMAGE */

.about-image{
    width:50%;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
}

/* CONTENT */

.about-content{
    width:50%;
    color:white;
}

.about-content span{
    color:#ffb400;
    letter-spacing:3px;
    font-size:18px;
}

.about-content h2{
    font-size:60px;
    margin:20px 0;
    line-height:1.1;
}

.about-content p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:30px;
}

/* STATS */

.about-stats{
    display:flex;
    gap:20px;
}

.mini-box{
    background:#151515;
    padding:25px;
    border-radius:20px;
}

.mini-box h3{
    color:#ffb400;
    margin-bottom:10px;
}
/* =========================
   SERVICES SECTION
========================= */

.services{
    width: 100%;
    padding: 120px 10%;
    background: #f5f5f5;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align: center;
    margin-bottom: 70px;
}

.section-title span{
    color: #ffb400;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
}

.section-title h2{
    font-size: 72px;
    color: #111;
    margin-top: 20px;
    font-weight: 800;
    line-height: 1.1;
}

/* =========================
   GRID
========================= */

.service-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* =========================
   CARD
========================= */

.service-card{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.4s;
}

/* HOVER */

.service-card:hover{
    transform: translateY(-12px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */

.service-card img{
    width: 100%;
    height: 280px;

    object-fit: cover;

    display: block;
}

/* =========================
   CONTENT
========================= */

.service-info{
    padding: 30px;
}

.service-info h3{
    font-size: 30px;
    color: #111;

    margin-bottom: 15px;

    font-weight: 700;
}

.service-info p{
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px){

    .service-grid{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 50px;
    }
}
/* =========================
   PROJECT SECTION
========================= */

.projects{
    width:100%;
    padding:120px 10%;
    background:#f5f5f5;
}

/* TITLE */

.dark-title{
    text-align:center;
    margin-bottom:70px;
}

.dark-title span{
    color:#ffb400;
    font-size:18px;
    font-weight:700;
    letter-spacing:4px;
}

.dark-title h2{
    color:#111;
    font-size:72px;
    font-weight:800;
    margin-top:20px;
}

/* GRID */

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.project-card{
    background:#fff;

    border-radius:30px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:0.4s;
}

/* IMAGE */

.project-card img{
    width:100%;
    height:450px;

    object-fit:cover;

    display:block;
}

/* HOVER */

.project-card:hover{
    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}
.projects{
    width:100%;
    padding:120px 10%;
    background:#f5f5f5;
}

.dark-title{
    text-align:center;
    margin-bottom:70px;
}

.dark-title span{
    color:#ffb400;
    font-size:18px;
    font-weight:700;
    letter-spacing:4px;
}

.dark-title h2{
    color:#111;
    font-size:72px;
    font-weight:800;
    margin-top:20px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.project-card{
    border-radius:30px;
    overflow:hidden;

    background:white;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:0.4s;
}

.project-card img{
    width:100%;
    height:450px;

    object-fit:cover;

    display:block;
}

.project-card:hover{
    transform:translateY(-10px);
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial{
    position: relative;

    width: 100%;
    height: 90vh;

    overflow: hidden;
}

/* IMAGE */

.testimonial img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* OVERLAY */

.testimonial-overlay{
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.55);

    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}

/* CONTENT */

.testimonial-content{
    position: relative;

    z-index: 5;

    max-width: 900px;

    text-align: center;

    color: white;
}

/* HEADING */

.testimonial-content h2{
    font-size: 70px;
    font-weight: 800;

    margin-bottom: 30px;
}

/* TEXT */

.testimonial-content p{
    font-size: 28px;
    line-height: 1.8;

    color: #f1f1f1;
}