*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#050505;
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* VIDEO */

.hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    );
}

/* NAVBAR */

.navbar{
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);

    width:80%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 25px;

    border-radius:60px;

    backdrop-filter:blur(20px);

    background:white;
    border:
    1px solid rgba(255,255,255,.12);

    z-index:100;
}

.logo img{
    height:100px;
    width: 140px;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    color:black;
    text-decoration:none;
}
.nav-links a:hover{
    opacity:.8;
    color: #000;
}
.dropdown{
    position: relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:220px;

    margin-top:15px;

    background:rgba(10, 0, 0, 0.952);
    backdrop-filter:blur(20px);

    border:1px solid rgba(51, 50, 50, 0.15);
    border-radius:20px;

    padding:10px;

    list-style:none;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:all .3s ease;

    z-index:9999;
}

.dropdown-menu li{
    margin:8px 0;
}

.dropdown-menu li a{
    display:block;

    padding:12px 18px;

    border-radius:15px;

    color:#fff;

    transition:.3s;
}

.dropdown-menu li a:hover{

    background:
    rgba(252, 251, 251, 0.1);

    padding-left:25px;
}

/* Show Dropdown */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-contact{
    display:flex;
    gap:25px;
}

.nav-contact a{
    color:black;
    text-decoration:none;
    font-size:14px;
}
.nav-contact a:hover{
    color: #000;
    opacity:.8;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    color:rgb(2, 2, 2);
    font-size:18px;
}

.social-icons a:hover{
    opacity:.8;
    color: #000;
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:5;


    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    max-width:1100px;
    margin: 180px 300px;
}

.hero-badge{
    padding:10px 20px;

    border-radius:30px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    color:white;

    margin-bottom:30px;
}

/* GRADIENT HEADING */

.hero-content h1{

    font-size:58px;
    line-height:1;

    font-weight:700;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #bebdbd
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:30px;
}

.hero-content p{
    color:#d1d1d1;
    font-size:20px;
    max-width:700px;
    line-height:1.8;
}

/* BUTTON */

.hero-btn{

    margin-top:40px;

    padding:18px 40px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background:
    linear-gradient(
        135deg,
        #ffffff22,
        #ffffff08
    );

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.2);

    transition:.4s;
}

.hero-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 30px rgba(255,255,255,.25);
}

/* FLOATING ORBS */

.orb{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);
}

.orb1{

    width:400px;
    height:400px;

    background:#ffffff30;

    top:20%;
    left:-150px;

    animation:float 10s infinite ease-in-out;
}

.orb2{

    width:300px;
    height:300px;

    background:#ffffff15;

    right:-100px;
    bottom:20%;

    animation:float 8s infinite ease-in-out;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-40px);
    }
}

/* product category section */
.product-gallery-section{
    
    position:relative;
    padding:120px 8%;
    background:#747373;
    overflow:hidden;
}

/* Floating Glow */

.product-gallery-section::before{
    content:'';
    position:absolute;

    width:400px;
    height:400px;

    top:-150px;
    right:-150px;

    background:rgba(255,255,255,.8);

    filter:blur(150px);
    border-radius:50%;
}

/* Header */

.gallery-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:80px;
}

.gallery-badge{

    display:inline-flex;
    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(20px);

    border:1px solid rgba(0,0,0,.08);

    margin-bottom:30px;

    font-size:13px;
    font-weight:600;
}

.gallery-title{

    font-size:72px;
    font-weight:700;

    line-height:1.1;

    margin-bottom:25px;
    color: white;

    background:linear-gradient(
    180deg,
    #f7f5f5,
    #d4d4d4);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.gallery-subtitle{

    font-size:18px;
    color:whitesmoke;
    line-height:1.8;
}

/* Grid */

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Cards */

.gallery-card{

    position:relative;

    height:420px;

    overflow:hidden;

    border-radius:40px;

    cursor:pointer;

    opacity:0;
    transform:translateY(80px);

    transition:all .8s ease;
}

.gallery-card.show{

    opacity:1;
    transform:translateY(0);
}

.gallery-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .8s ease;
}

.gallery-card:hover img{

    transform:scale(1.1);
}

.gallery-overlay{

    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;

    padding:30px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
}

.gallery-overlay h3{

    color:#fff;

    font-size:28px;
    font-weight:600;
}

/* Glass Border */

.gallery-card::after{

    content:'';

    position:absolute;
    inset:8px;

    border-radius:32px;

    border:1px solid rgba(255,255,255,.2);
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-title{
        font-size:52px;
    }
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-title{
        font-size:40px;
    }
}

/* what we provide section */
.provide-section{
    position:relative;
    padding:120px 8%;
    background:#747373;
    overflow:hidden;
}

/* Glow */

.provide-section::before{
    content:'';
    position:absolute;

    width:450px;
    height:450px;

    top:-150px;
    right:-150px;

    border-radius:50%;

    background:rgba(255,255,255,.8);

    filter:blur(140px);
}

/* Header */

.provide-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:40px;

}

.provide-badge{

    display:inline-flex;
    gap:10px;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.7);

    backdrop-filter:blur(20px);

    border:1px solid rgba(0,0,0,.06);

    margin-bottom:30px;

    font-size:13px;
    font-weight:600;
}

.provide-title{

    font-size:52px;
    line-height:1.05;
    font-weight:600;

    margin-bottom:25px;

    background:
    linear-gradient(
    180deg,
    #fcfafa,
    #d4d4d4);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.provide-subtitle{
    font-size:18px;
    color:whitesmoke;
    line-height:1.8;
}

/* Grid */

.provide-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/* Items */

.provide-item{

    position:relative;

    padding:18px 30px;

    border-radius:24px;

    background:
    rgba(255,255,255,.6);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.9);

    font-size:17px;
    font-weight:500;

    color:#222;

    cursor:pointer;

    transition:.4s ease;

    opacity:1;
    transform:translateY(0);
}

/* Animated check icon */

.provide-item::before{

    content:'✓';

    margin-right:12px;

    color:#000;
    font-weight:bold;
}

.provide-item.show{
    opacity:1;
    transform:translateY(0);
}

.provide-item:hover{

    transform:translateY(-8px);

    background:#fff;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

    border-color:rgba(0,0,0,.08);
}
@media(max-width:992px){

    .provide-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .provide-title{
        font-size:52px;
    }
}

@media(max-width:768px){

    .provide-grid{
        grid-template-columns:1fr;
    }

    .provide-title{
        font-size:40px;
    }
}

/* footer section */

.footer-section{
    width:100vw;
    padding:50px 70px;
    background-color: black;
}

.footer-overlay{
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.6)
    );
}

.footer-content{
    position: relative;
    z-index: 2;
}

/* SOCIAL ROW */
.footer-social-row{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    
}

/* NAVIGATION ROW */
.footer-nav-row{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

/* DIVIDER */
.footer-divider{
    width:100%;
    height: 1px;
    background:rgba(255,255,255,.12);
    margin:20px 0;
}

/* SOCIAL LINKS */
.footer-social{
    display:flex;
    align-items:center;
    gap:12px;

    color:rgba(255,255,255,.85);

    transition:.4s ease;
}

.footer-social:hover{
    transform:translateY(-4px);
    color:white;
}

/* MENU LINKS */
.footer-link{
    color:rgba(255,255,255,.85);
    font-weight:500;

    transition:.3s ease;
}

.footer-link:hover{
    color:white;
}

/* LOGO */
/* Footer Main Layout */

.footer-main{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;

    margin-top:20px;
}

/* Left Side */


.footer-company{
    flex:1;
    padding: 0 !important;
}

.footer-logo img{
    width:140px;
    height:auto;
    
}

.footer-description{
    max-width:750px;

    padding:0 15px;
    margin-top: 0;

    color:rgba(255,255,255,.75);

    line-height:1.8;
    font-size:15px;
}
/* Right Side */

.footer-newsletter{
    width:420px;
}

.footer-newsletter h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-top: 35px;
}

.footer-newsletter p{
    color:rgba(255,255,255,.7);
    font-size: 14px;
    margin-bottom:10px;
    line-height:1.7;
}

/* Input + Button */

.newsletter-form{
    display:flex;
    align-items:center;

    overflow:hidden;

    border-radius:999px;

    background:#fff;
}

.newsletter-form input{
    flex:1;

    border:none;
    outline:none;

    padding:10px 10px;

    font-size:15px;
}

.newsletter-form button{

    border:none;
    cursor:pointer;

    padding:10px 10px;

    background:#720202;
    color:#fff;

    font-weight:600;

    transition:.3s;
}

.newsletter-form button:hover{
    background:#d92c1d;
}

/* Footer Bottom */

.footer-bottom{
    text-align:center;

    color:rgba(255,255,255,.65);

    font-size:14px;

    padding:20px 0 0;
    margin:0;

    border-top:1px solid rgba(255,255,255,.08);
}

/* Remove Extra Bottom Space */

.footer-section{
    padding-bottom:0 !important;
}

.footer-content{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

/* MOBILE */
@media(max-width:992px){

    .footer-main{
        flex-direction:column;
        gap:50px;
    }

    .footer-newsletter{
        width:100%;
    }

    .newsletter-form{
        flex-direction:column;
        border-radius:20px;
        background:transparent;
    }

    .newsletter-form input{
        width:100%;
        border-radius:999px;
        margin-bottom:15px;
    }

    .newsletter-form button{
        width:100%;
        border-radius:999px;
    }
}