*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Inter', sans-serif;
    overflow-x:hidden;
    background:#ffffff;
    color:#222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NAVBAR */

.custom-navbar{
    background:#08bec9;
    padding:15px 0;
    transition:0.4s;
    z-index:999;
}

.navbar-brand{
    color:#fff !important;
    font-size:32px;
    font-weight:800;
    letter-spacing:1px;
}

.nav-link{
 color:#fff !important;
    font-weight:600;
    margin-left:20px;
    transition:0.3s;
    position:relative;
    font-size:15px;
    letter-spacing:0.5px;
    text-transform: uppercase;
}

.nav-link:hover{
    color:#000 !important;
}

.nav-link::after{
    content:'';
    width:0;
    height:2px;
    background:#000;
    position:absolute;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}


/* ==========================================================================
   HERO IMAGES DROP-DOWN ANIMATION
   ========================================================================== */

/* 1. Define the sliding keyframe */
@keyframes slideFromTop {
    0% {
        opacity: 0;
        transform: translateY(-120px); /* Adjusts how far up it starts */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Apply animation to the Central Featured Image */
.hero-main-image {
    opacity: 0;
    display: inline-block; /* Forces browser to calculate transform properly */
    animation: slideFromTop 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s; /* Drops slightly after text is seen */
}

/* 3. Apply animation to the 6 Grid Blocks on the right */
.gallery-grid .col-4 {
    opacity: 0;
    animation: slideFromTop 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 4. Create a gorgeous staggered "wave" effect for the 6 grid images */
.gallery-grid .col-4:nth-child(1) { animation-delay: 0.2s; }
.gallery-grid .col-4:nth-child(2) { animation-delay: 0.3s; }
.gallery-grid .col-4:nth-child(3) { animation-delay: 0.4s; }
.gallery-grid .col-4:nth-child(4) { animation-delay: 0.35s; }
.gallery-grid .col-4:nth-child(5) { animation-delay: 0.45s; }
.gallery-grid .col-4:nth-child(6) { animation-delay: 0.55s; }

/* HERO SECTION */

.hero-section{
    background:#08bec9;
    min-height:100vh;
    padding:140px 0 80px;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border:4px solid rgba(255,255,255,0.3);
    top:-120px;
    left:-100px;
    transform:rotate(40deg);
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111;
}

p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #444;
}
.hero-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border:4px solid rgba(255,255,255,0.3);
    bottom:-150px;
    right:-80px;
    transform:rotate(40deg);
}

.hero-text h1{
    color:#fff;
    font-size:60px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text p{
    color:#fff;
    font-size:20px;
    line-height:1.9;
    margin-bottom:20px;
}

.hero-text .btn{
    background:#000;
    color:#fff;
    border:none;
    border-radius:50px;
    font-weight:700;
    transition:0.4s;
}

.hero-text .btn:hover{
    background:#fff;
    color:#08bec9;
    transform:translateY(-3px);
}

/* ==========================================================================
   MAIN HERO IMAGE BORDER RADIUS & ANIMATION FIX
   ========================================================================== */

/* Target the main image column container */
.hero-section .col-lg-3 {
    opacity: 0;
    overflow: hidden; /* Enforces and clips everything to the rounded corners */
    border-radius: 25px; /* Matches your design's border radius exactly */
   
    
    /* Smooth Drop Down Animation */
    animation: slideDownIntoPlace 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.15s;
}

/* Ensure the inner image takes up the full container nicely */
.hero-main-image {
    width: 120%;
    height: 110%;
    object-fit: cover;
    border-radius: 18px; /* Double-insures the image layers are round */
    box-shadow: none; /* Moves shadow to the parent container to avoid animation glitching */
}

/* ==========================================================================
   1. FORCE ALL 6 GRID IMAGES TO BE THE EXACT SAME SIZE
   ========================================================================== */
.gallery-grid img {
    width: 120%;
    height: 110px;        /* Forces a uniform height for all 6 blocks */
    object-fit: cover;    /* Crops the images cleanly so they don't look squished */
    border-radius: 12px;
    transition: transform 0.4s ease; /* Keeps your hover zoom smooth */
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   2. THE DROP-DOWN ANIMATION (FIXED COMPATIBILITY)
   ========================================================================== */
@keyframes slideDownIntoPlace {
    0% {
        opacity: 0;
        transform: translateY(-120px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide the main middle image */
.hero-section .col-lg-3 {
    opacity: 0;
    animation: slideDownIntoPlace 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.15s;
   
}

/* Slide the right side grid columns */
.gallery-grid .col-4 {
    opacity: 0;
    animation: slideDownIntoPlace 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   3. STAGGERED REVEAL DELAYS (CREATES A SMOOTH WAVE EFFECT)
   ========================================================================== */
.gallery-grid .col-4:nth-child(1) { animation-delay: 0.2s; }
.gallery-grid .col-4:nth-child(2) { animation-delay: 0.3s; }
.gallery-grid .col-4:nth-child(3) { animation-delay: 0.4s; }
.gallery-grid .col-4:nth-child(4) { animation-delay: 0.35s; }
.gallery-grid .col-4:nth-child(5) { animation-delay: 0.45s; }
.gallery-grid .col-4:nth-child(6) { animation-delay: 0.55s; }


/* CATEGORY MENU */

.category-menu{
    padding:50px 0;
    background:#fff;
}

.menu-box{
    font-size:22px;
    font-weight:700;
    padding:20px;
    border-right:2px solid #ccc;
    transition:0.3s;
    cursor:pointer;
}

.menu-box:hover{
    color:#08bec9;
    transform:translateY(-5px);
}

/* SECTION TITLE */

.section-title-bar{
    background:#15c7d2;
    padding:20px 0;
}

.section-title-bar h2{
    font-size:34px;
    font-weight:800;
    margin:0;
    color:#fff;
}

.section-title-bar p{
    font-size:14px;
    /* font-weight:800; */
    margin:0;
    color:#fff;
}

/* CONTENT SECTION */

.section-content{
    margin-bottom:30px;
}

.section-content h5{
    font-weight:700;
    margin-bottom:10px;
}

.section-content h3{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
}

.section-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
}

/* PRODUCT CARDS */

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    text-align:center;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.product-card h6{
    padding:18px;
    font-size:20px;
    font-weight:700;
    margin:0;
}

/* WHITE CARD */

.white-card{
    background:#fff;
}

/* ACCESSORY CARDS */

.accessory-card{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.accessory-card:hover{
    transform:translateY(-10px);
}

.accessory-card img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
}

.accessory-card h6{
    font-size:18px;
    font-weight:700;
}

/* ABOUT SECTION */

.about-section{
    background:#08bec9;
    color:#fff;
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border:4px solid rgba(255,255,255,0.3);
    top:-100px;
    left:-100px;
    transform:rotate(35deg);
}

.about-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border:4px solid rgba(255,255,255,0.3);
    bottom:-150px;
    right:-100px;
    transform:rotate(35deg);
}

.about-section h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
}

.about-section p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

/* CONTACT LIST */

.contact-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.contact-list li{
    margin-bottom:20px;
    font-size:20px;
    display:flex;
    align-items:center;
}

.contact-list i{
    margin-right:15px;
    width:30px;
}

/* SOCIAL ICONS */

.social-icons{
    margin-top:30px;
}

.social-icons a{
    width:50px;
    height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#08bec9;
    border-radius:50%;
    margin-right:12px;
    text-decoration:none;
    font-size:20px;
    transition:0.4s;
}

.social-icons a:hover{
    background:#000;
    color:#fff;
    transform:translateY(-5px);
}

/* FOOTER */

footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:20px 0;
    font-size:16px;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .hero-text h1{
        font-size:50px;
    }

}

@media(max-width:991px){

    .hero-section{
        text-align:center;
        padding-top:120px;
    }

    .hero-text h1{
        font-size:42px;
    }

    .hero-text p{
        font-size:18px;
    }

    .menu-box{
        border:none;
    }

    .section-title-bar h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .hero-section{
        padding:110px 0 60px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:16px;
    }

    .hero-main-image{
        margin-top:20px;
    }

    .gallery-grid img{
        height:90px;
    }

    .section-title-bar h2{
        font-size:28px;
    }

    .section-content h3{
        font-size:24px;
    }

    .section-content p{
        font-size:16px;
    }

    .product-card img{
        height:180px;
    }

    .about-section h2{
        font-size:32px;
    }

    .about-section p{
        font-size:16px;
    }

    .contact-list li{
        font-size:16px;
    }

}

@media(max-width:576px){

    .navbar-brand{
        font-size:26px;
    }

    .hero-text h1{
        font-size:28px;
    }

    .menu-box{
        font-size:18px;
        padding:15px;
    }

    .product-card h6,
    .accessory-card h6{
        font-size:16px;
    }

}

.section-title-bar{

color:#fff !important;

}