/* =========================================
   BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section {
    padding: 110px 0;
}

/* =========================================
   HEADER & NAVBAR
========================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7, 27, 52, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    padding: 4px;
}

.logo-text h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.logo-text h2 span {
    color: #ffbf00;
}

.logo-text p {
    color: #d1d5db;
    font-size: 12px;
    margin-top: 5px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.menu-btn {
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    display: none;
}

/* =========================================
   HERO SECTION
========================================= */
/* =========================================
   FIXED HERO ALIGNMENT
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;    /* Vertically centers everything */
    justify-content: center; /* Horizontally centers the content block */
    text-align: center;      /* Centers the text inside the block */
    background: linear-gradient(rgba(0,0,0,0.78),rgba(0,0,0,0.78)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    width: 100%;             /* Ensures it takes full width of container */
    max-width: 800px;        /* Keeps your text block at a readable width */
    margin: 0 auto;          /* Crucial: Centers the block within the flex hero */
    padding: 0 20px;         /* Adds a safety margin on mobile */
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 100%;         /* Allows it to fill the hero-content */
    margin: 0 auto;          /* Centers the text block itself */
}

.hero-buttons {
    display: flex;
    justify-content: center; /* Aligns the buttons to the middle */
    gap: 15px;
    flex-wrap: wrap;         /* Allows buttons to wrap on mobile */
    margin-top: 30px;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    padding: 17px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    display: inline-block;
}

.primary-btn {
    background: #ffbf00;
    color: #000;
}

.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
}

.brochure-btn-hero {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: #fff;
    border: 1px solid #ffffff;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media(max-width: 950px) {
    .menu-btn { display: block; }
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #071b34;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        transition: 0.4s;
    }
    .nav-links.active { right: 0; }
}

@media(max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
}
/* =========================================
   CONTAINER
========================================= */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================================
   SECTION
========================================= */

.section{
    padding:110px 0;
}

/* =========================================
   HEADER
========================================= */

.header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(7,27,52,0.95);
    backdrop-filter:blur(10px);
    z-index:1000;
    box-shadow:0 2px 20px rgba(0,0,0,0.1);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    color:#fff;
    font-size:34px;
    font-weight:800;
    letter-spacing:1px;
}

.logo span{
    color:#ffbf00;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#ffbf00;
    left:0;
    bottom:-6px;
    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.menu-btn{
    color:#fff;
    font-size:34px;
    cursor:pointer;
    display:none;
}

/* =========================================
   HERO
========================================= */
.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.78),rgba(0,0,0,0.78)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
}

/* =========================================
   MOBILE HERO FIX
========================================= */

@media(max-width:768px){

    .hero{

        background-position:center;
        text-align:center;
        padding:120px 0 80px;

    }

    .hero::before{

        background:rgba(0,0,0,0.45);

    }

    .hero-content{

        width:100%;

    }

    .hero-text{

        max-width:100%;
        margin:auto;
        padding:0 10px;

    }

    .hero h1{

        font-size:42px;
        line-height:1.2;

    }

    .hero p{

        font-size:17px;
        line-height:1.8;
        color:#f1f1f1;

    }

    .hero-buttons{

        justify-content:center;
        flex-direction:column;
        gap:15px;

    }

}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-text{
    max-width:750px;
    animation:fadeUp 1.2s ease;
}

.hero h1{
    font-size:65px;
    color:#fff;
    line-height:1.1;
    margin-bottom:0px;
    font-weight:800;
}

.hero h1 span{
    color:#ffbf00;
}

.hero p{
    color:#ddd;
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================================
   BUTTONS
========================================= */

.btn{
    padding:17px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    display:inline-block;
}

.primary-btn{
    background:#ffbf00;
    color:#000;
}

.primary-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,191,0,0.4);
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#000;
}

/* =========================================
   TITLES
========================================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
    font-weight:700;
    color:#071b34;
}

.section-title p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.section-badge{
    display:inline-block;
    background:#ffbf00;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:1px;
}

/* =========================================
   ABOUT SECTION
========================================= */

.about{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.main-about-card{
    background:
    linear-gradient(135deg,#071b34,#0b2c52);
    padding:60px;
    border-radius:28px;
    color:#fff;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.main-about-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.main-about-card h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.main-about-card h2 span{
    color:#ffbf00;
}

.main-about-card p{
    line-height:1.9;
    color:#ddd;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

.about-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}

.about-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.about-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

.about-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    background:#ffbf00;
    top:0;
    left:0;
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#ffbf00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

/* =========================================
   SERVICES
========================================= */

.services{
    background:
    linear-gradient(135deg,#071b34,#0b2c52);
    position:relative;
    overflow:hidden;
}

.services-wrapper{
    display:flex;
    flex-direction:column;
    gap:50px;
}

.services .section-title h2,
.services .section-title p{
    color:#fff;
}

.service-feature-card{
    position:relative;
    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url("rows.jpeg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border-radius:30px;
    overflow:hidden;
    min-height:420px;
    display:flex;
    align-items:center;
    padding:60px;
}

.feature-content{
    max-width:650px;
}

.feature-content h2{
    font-size:56px;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
}

.feature-content h2 span{
    color:#ffbf00;
}

.feature-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    padding:40px;
    border-radius:24px;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover{
    transform:translateY(-12px);
}

.service-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:#ffbf00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.service-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#ddd;
    line-height:1.8;
}

/* =========================================
   PRODUCTS SECTION
========================================= */

.products{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

.products::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,191,0,0.08);
    border-radius:50%;
    top:-200px;
    right:-100px;
}

.products-banner{
    background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("banner.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 35px;
    padding: 80px;
    margin-bottom: 70px;
    overflow: hidden;
}

.products-banner-content{
    max-width:720px;
}

.products-banner h2{
    color:#fff;
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.products-banner h2 span{
    color:#ffbf00;
}

.products-banner p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.product-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    transition:0.5s;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    position:relative;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.7s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(7,27,52,0.75);
    top:0;
    left:0;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.5s;
}

.product-card:hover .product-overlay{
    opacity:1;
}

.product-overlay a{
    background:#ffbf00;
    color:#000;
    text-decoration:none;
    padding:14px 30px;
    border-radius:10px;
    font-weight:700;
}

.product-content{
    padding:32px;
}

.product-tag{
    display:inline-block;
    background:#071b34;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.product-content h3{
    font-size:28px;
    color:#071b34;
    margin-bottom:15px;
}

.product-content p{
    color:#666;
    line-height:1.9;
}
/* =========================================
   GALLERY SECTION
========================================= */

.gallery{
    background:
    linear-gradient(135deg,#071b34,#0b2c52);
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

.gallery::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.03);
    border-radius:50%;
    top:-200px;
    left:-150px;
}

.white-title h2,
.white-title p{
    color:#fff;
}

/* FEATURE */

.gallery-feature{
    background:
    linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    border-radius:35px;
    padding:80px;
    margin-bottom:70px;
    overflow:hidden;
    position:relative;
}

.gallery-feature::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,191,0,0.08);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.gallery-feature-content{
    max-width:700px;
    position:relative;
    z-index:2;
}

.gallery-feature h2{
    color:#fff;
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
}

.gallery-feature h2 span{
    color:#ffbf00;
}

.gallery-feature p{
    color:#ddd;
    line-height:1.9;
    font-size:18px;
}

/* GRID */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
    box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.7s;
}

.gallery-card:hover img{
    transform:scale(1.12);
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:
    linear-gradient(to top,rgba(0,0,0,0.85),rgba(0,0,0,0.2));
    bottom:0;
    left:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    transition:0.5s;
}

.gallery-overlay h3{
    color:#fff;
    font-size:28px;
    margin-bottom:10px;
    transform:translateY(20px);
    opacity:0;
    transition:0.5s;
}

.gallery-overlay p{
    color:#ddd;
    line-height:1.7;
    transform:translateY(20px);
    opacity:0;
    transition:0.7s;
}

.gallery-card:hover .gallery-overlay h3,
.gallery-card:hover .gallery-overlay p{
    transform:translateY(0);
    opacity:1;
}

/* MOBILE */

@media(max-width:900px){

    .gallery-feature{
        padding:50px;
    }

    .gallery-feature h2{
        font-size:42px;
    }

}

@media(max-width:600px){

    .gallery{
        padding:90px 0;
    }

    .gallery-feature{
        padding:35px;
    }

    .gallery-feature h2{
        font-size:32px;
    }

    .gallery-feature p{
        font-size:16px;
    }

    .gallery-card img{
        height:260px;
    }

}
/* =========================================
   PREMIUM CONTACT SECTION
========================================= */

.contact{
    background:
    linear-gradient(135deg,#021223,#0a2b52);
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

/* BACKGROUND EFFECTS */

.contact::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,191,0,0.08);
    border-radius:50%;
    top:-200px;
    left:-120px;
}

.contact::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    bottom:-200px;
    right:-120px;
}

/* TITLES */

.contact .section-title h2{
    color:#fff;
}

.contact .section-title p{
    color:#d1d5db;
}

/* GRID */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    position:relative;
    z-index:2;
}

/* LEFT SIDE */

.contact-left{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CONTACT CARD */

.contact-card{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08);
    padding:30px;
    border-radius:24px;
    display:flex;
    align-items:center;
    gap:22px;
    transition:0.4s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.1);
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

/* ICON */

.contact-icon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:50%;
    background:#ffbf00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#000;
    font-weight:bold;
}

/* TEXT */

.contact-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:8px;
}

.contact-card p{
    color:#d1d5db;
    font-size:17px;
    line-height:1.7;
}

/* BANNER */

.contact-banner{
    margin-top:10px;
    background:
    linear-gradient(135deg,#ffbf00,#ff9d00);
    border-radius:28px;
    padding:45px;
    color:#000;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(255,191,0,0.2);
}

.contact-banner::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.contact-banner h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.contact-banner p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:28px;
    position:relative;
    z-index:2;
}

/* RIGHT FORM */

.contact-right{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:50px;
}

/* FORM TITLE */

.contact-form h2{
    color:#fff;
    font-size:42px;
    margin-bottom:35px;
}
.contact-right *{
    color:#fff;
}

/* INPUT GROUP */

.input-group{
    margin-bottom:28px;
}

/* INPUTS */

.input-group input,
.input-group textarea{
    width:100%;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:16px;
    padding:18px 20px;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:0.3s;
}

/* PLACEHOLDER */

.input-group input::placeholder,
.input-group textarea::placeholder{
    color:#bfc7d4;
}

/* FOCUS */

.input-group input:focus,
.input-group textarea:focus{
    border-color:#ffbf00;
    background:rgba(255,255,255,0.08);
    box-shadow:0 0 15px rgba(255,191,0,0.2);
}

/* TEXTAREA */

.input-group textarea{
    min-height:160px;
    resize:none;
}

/* BUTTON */

.submit-btn{
    width:100%;
    border:none;
    padding:18px;
    background:#ffbf00;
    color:#000;
    border-radius:16px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
}

.submit-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(255,191,0,0.3);
}

/* MOBILE */

@media(max-width:950px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .contact{
        padding:90px 0;
    }

    .contact-right{
        padding:30px;
    }

    .contact-form h2{
        font-size:32px;
    }

    .contact-banner{
        padding:35px;
    }

    .contact-banner h2{
        font-size:32px;
    }

}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:950px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:85px;
        right:-100%;
        width:280px;
        background:#071b34;
        flex-direction:column;
        padding:35px;
        transition:0.4s;
    }

    .nav-links.active{
        right:0;
    }

    .hero h1{
        font-size:55px;
    }

    .about-wrapper,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .section-title h2{
        font-size:36px;
    }

    .products-banner{
        padding:40px;
    }

    .products-banner h2{
        font-size:36px;
    }

}

@media(max-width:500px){

    .hero h1{
        font-size:34px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .products-banner{
        padding:30px;
    }

    .products-banner h2{
        font-size:30px;
    }

}
/* =========================================
   PROFESSIONAL MOBILE RESPONSIVE SYSTEM
========================================= */

/* =========================
   LARGE TABLETS
========================= */

@media(max-width:1100px){

    .hero h1{
        font-size:58px;
    }

    .feature-content h2,
    .gallery-feature h2,
    .products-banner h2{
        font-size:48px;
    }

    .main-about-card h2{
        font-size:42px;
    }

}

/* =========================
   TABLETS
========================= */

@media(max-width:950px){

    /* NAVBAR */

    .menu-btn{
        display:block;
        z-index:1001;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#071b34;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:35px;
        transition:0.4s ease;
        z-index:1000;
    }

    .nav-links.active{
        right:0;
    }

    /* HERO */

    .hero{
        text-align:center;
        padding:140px 0 100px;
    }

    .hero::before{
        background:rgba(0,0,0,0.6);
    }

    .hero-text{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:18px;
    }

    /* GRID SECTIONS */

    .about-wrapper,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .about-right{
        grid-template-columns:1fr 1fr;
    }

    .services-grid,
    .products-grid,
    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

    /* BANNERS */

    .products-banner,
    .gallery-feature,
    .service-feature-card{
        padding:50px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .section{
        padding:90px 0;
    }

    .container{
        width:92%;
    }

    /* NAVBAR */

    .navbar{
        padding:18px 0;
    }

    .logo{
        font-size:28px;
    }

    /* HERO */

    .hero{
        min-height:auto;
        padding:150px 0 90px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .btn{
        width:100%;
        text-align:center;
        padding:16px;
    }

    /* TITLES */

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
        line-height:1.2;
    }

    .section-title p{
        font-size:16px;
    }

    /* ABOUT */

    .main-about-card{
        padding:35px;
    }

    .main-about-card h2{
        font-size:34px;
    }

    .about-right{
        grid-template-columns:1fr;
    }

    .about-card{
        padding:28px;
    }

    /* SERVICES */

    .feature-content h2{
        font-size:34px;
    }

    .service-feature-card{
        min-height:auto;
        padding:35px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:30px;
    }

    /* PRODUCTS */

    .products-banner{
        padding:35px;
    }

    .products-banner h2{
        font-size:34px;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-image img{
        height:240px;
    }

    .product-content{
        padding:25px;
    }

    .product-content h3{
        font-size:24px;
    }

    /* GALLERY */

    .gallery-feature{
        padding:35px;
    }

    .gallery-feature h2{
        font-size:34px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card img{
        height:240px;
    }

    /* CONTACT */

    .contact-right{
        padding:30px;
    }

    .contact-form h2{
        font-size:30px;
    }

    .contact-banner{
        padding:35px;
    }

    .contact-banner h2{
        font-size:30px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:500px){

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:15px;
    }

    .section-title h2{
        font-size:28px;
    }

    .main-about-card h2,
    .feature-content h2,
    .products-banner h2,
    .gallery-feature h2,
    .contact-banner h2{
        font-size:28px;
    }

    .contact-form h2{
        font-size:26px;
    }

    .contact-right{
        padding:25px;
    }

    .product-content,
    .about-card,
    .service-card{
        padding:22px;
    }

    .gallery-card img,
    .product-image img{
        height:220px;
    }

}
/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    border-radius:10px;
}

.logo-text h2{
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1;
}

.logo-text span{
    color:#ffbf00;
}

.logo-text p{
    color:#cbd5e1;
    font-size:13px;
    margin-top:4px;
    letter-spacing:1px;
}

/* MOBILE */

@media(max-width:600px){

    .logo img{
        width:50px;
        height:50px;
    }

    .logo-text h2{
        font-size:22px;
    }

    .logo-text p{
        font-size:11px;
    }

}
/* =========================================
   NAVBAR LOGO
========================================= */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:12px;
    background:#fff;
    padding:4px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.logo-text h2{
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1;
}

.logo-text h2 span{
    color:#ffbf00;
}

.logo-text p{
    color:#d1d5db;
    font-size:12px;
    margin-top:5px;
    letter-spacing:1px;
}

/* MOBILE */

@media(max-width:768px){

    .logo img{
        width:48px;
        height:48px;
    }

    .logo-text h2{
        font-size:22px;
    }

    .logo-text p{
        font-size:10px;
    }

}