/* ===== GLOBAL ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    color:#fff;
    overflow-x:hidden;
}

/* ===== TOPBAR ===== */
.topbar{
    background: rgb(216 6 43);
    color: white;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar i{
    color:#ffffff;
    margin-right:6px;
}

.top-left span,
.top-right span{
    font-weight:500;
}

.social-icons a{
    color:#fff;
    margin-left:10px;
    font-size:14px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#d4af37;
    transform:translateY(-2px);
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgb(5 15 44 / 96%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
    transition: 0.3s ease;
}

/* =========================
   NAV ITEMS
========================= */

.navbar-nav .nav-item{
    position: relative;
}

/* =========================
   NAV LINKS
========================= */

.navbar-nav .nav-link{
    color: #fff !important;
    margin-left: 18px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: 0.3s ease;
    padding: 0px 0;
    display: flex;
    align-items: center;
}

/* Hover Color */

.navbar-nav .nav-link:hover{
    color: #d4af37 !important;
}

/* Active Link */

.navbar-nav .nav-link.active{
    color: #d4af37 !important;
}

/* Underline Effect */

.navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width: 100%;
}

/* =========================
   CUSTOM DROPDOWN ICON
========================= */

/* Remove Bootstrap Default Arrow */

.dropdown-toggle::after{
    display: none;
}

/* Custom Icon */

.dropdown-icon{
    font-size: 12px;
    margin-left: 8px;
    transition: 0.3s ease;
}

/* Rotate Icon On Hover */

@media(min-width:992px){

    .dropdown:hover .dropdown-icon{
        transform: rotate(180deg);
    }

}

/* Rotate Icon On Mobile Click */

.dropdown.show .dropdown-icon{
    transform: rotate(180deg);
}

/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu{
    border: none;
    border-radius: 14px;
    padding: 12px 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.3s ease;
    pointer-events: none;
}

/* =========================
   DESKTOP DROPDOWN HOVER
========================= */

@media(min-width:992px){

    .navbar .dropdown:hover .dropdown-menu{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

}

/* =========================
   DROPDOWN ITEM
========================= */

.dropdown-item{
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    transition: 0.3s ease;
}

/* Hover */

.dropdown-item:hover{
    background: #d4af37;
    color: #000;
    padding-left: 28px;
}

/* =========================
   MOBILE NAVBAR
========================= */

.navbar-toggler{
    border: none;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler i{
    font-size: 24px;
    color: #fff;
}

/* =========================
   MOBILE MENU
========================= */

@media(max-width:991px){

    .navbar{
        padding: 10px 0;
    }

    .navbar-collapse{
        background: #081126;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
    }

    .navbar-nav .nav-link{
        margin-left: 0;
        padding: 12px 0;
        justify-content: space-between;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu{
        background: #0d1733;
        border-radius: 10px;
        border: none;
        margin-top: 8px;

        opacity: 1;
        visibility: visible;
        transform: none;

        display: none;
        pointer-events: auto;
        box-shadow: none;
    }

    .dropdown-menu.show{
        display: block;
    }

    .dropdown-item{
        color: #fff;
    }

    .dropdown-item:hover{
        background: #d4af37;
        color: #000;
        padding-left: 28px;
    }

}

/* =========================
   DROPDOWN ANIMATION
========================= */

@keyframes dropdownFade{

    from{
        opacity: 0;
        transform: translateY(10px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* ===== HERO ===== */
.hero{
    min-height:100vh;
    padding-top:120px;
    background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.85)),
    url('https://images.unsplash.com/photo-1585386959984') center/cover no-repeat;
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:60px;
    font-weight:700;
    line-height:1.2;
}

.hero span{
    color:#d4af37;
}

.hero p{
    margin-top:15px;
    font-size:18px;
    opacity:0.8;
}

/* ===== SECTIONS ===== */
.section{
    padding:100px 0;
}

/* ===== TITLES ===== */
.title{
    font-size:40px;
    margin-bottom:50px;
    position:relative;
    font-weight:600;
}

.title::after{
    content:'';
    width:80px;
    height:3px;
    background:#d4af37;
    display:block;
    margin-top:10px;
}

/* ===== ABOUT ===== */
.about-img{
     border-radius: 20px;
    overflow: hidden;
    text-align: right;
}

.about-img img{
    width:80%;
    border-radius: 30px;
}

/* ===== PRODUCTS ===== */
.product-card{
    background:linear-gradient(145deg,#071c3c,#0b2a5c);
    border-radius:20px;
    padding:25px;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.05);
    height:100%;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

.product-card h5{
    margin-bottom:10px;
}

/* ===== WHY ===== */
.why-box{
    text-align:center;
    padding:30px;
    border-radius:15px;
    transition:0.3s;
}

.why-box i{
    font-size:50px;
    color:#d4af37;
    margin-bottom:15px;
}

.why-box:hover{
    background:rgba(255,255,255,0.05);
}

/* ===== TESTIMONIAL ===== */
.testimonial{
    background:#0b2a5c;
    padding:40px;
    border-radius:20px;
    text-align:center;
    max-width:700px;
    margin:auto;
}

.testimonial p{
    font-style:italic;
    opacity:0.9;
}

.testimonial h6{
    margin-top:15px;
    color:#d4af37;
}

/* ===== FOOTER ===== */
.footer{
    background:#000;
    padding:50px 0;
}

.footer p{
    margin-bottom:10px;
}

.social i{
    font-size:18px;
    margin:10px;
    transition:0.3s;
}

.social i:hover{
    color:#d4af37;
    transform:translateY(-3px);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){

.hero h1{
    font-size:42px;
}

.title{
    font-size:32px;
}

}

/* Mobile */
@media(max-width:768px){

.topbar .d-flex{
    flex-direction:column;
    gap:5px;
    text-align:center;
}

.navbar-nav{
    text-align:center;
}

.navbar-nav .nav-link{
    margin:10px 0;
}

.hero{
    text-align:center;
    padding-top:140px;
}

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:15px;
}

.section{
    padding:70px 0;
}

.title{
    font-size:26px;
}

}

/* Small mobile */
@media(max-width:480px){

.hero h1{
    font-size:26px;
}

.hero p{
    font-size:14px;
}

}
.navbar-toggler{
    border:none;
    outline:none;
}

@media(max-width:991px){

.navbar-collapse{
    background:#071c3c;
    padding:20px;
    margin-top:10px;
    border-radius:10px;
}

.navbar-nav .nav-link{
    margin:10px 0;
    text-align:center;
}

}
.navbar-collapse{
    transition: all 0.3s ease;
}
/* HERO SLIDER */
.hero-slider{

}

.hero-slider img{
    width: 100%;
    object-fit: cover;
}

/* smooth fade */
.carousel-fade .carousel-item{
    transition: opacity 1s ease-in-out;
}

/* arrows style */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color: rgba(0,0,0,0.5);
    padding:20px;
    border-radius:50%;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-slider img{
       width:100%;
    }
    .topbar{
        display:none;
    }
    .about-img{
        margin-top:20px;
    }
    .about-img img {
    width: 100%!important;
    border-radius: 30px;
}
.about-section {
    color: black;
    padding:20px 0 !important;
}
}
.about-section{
    color:black;
}
.about-section .title{
    font-size: 40px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 600;
    color: #050f2cd9;
}
.read-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 28px;
    background: linear-gradient(135deg,#d4af37,#f5d76e);
    color:#000;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s ease;
    box-shadow:0 4px 15px rgba(212,175,55,0.3);
}

/* HOVER EFFECT */
.read-btn:hover{
    background: linear-gradient(135deg,#fff,#d4af37);
    color:#000;
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(212,175,55,0.5);
}
.read-btn i{
    margin-left:8px;
    transition:0.3s;
}

.read-btn:hover i{
    margin-left:12px;
}
/* SECTION BACKGROUND */
.our-products{
    padding: 50px 0;
    background: linear-gradient(135deg,#081c3a,#0d2b5c);
}

/* TITLE */
.our-products .section-title h2{
    font-size:40px;
    font-weight:700;
    color:#fff;
}

.divider{
    width:80px;
    height:3px;
    background:#d4af37;
    margin:10px auto 40px;
}

/* PRODUCT CARD */
.product-box{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

.product-box img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */
.product-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background: linear-gradient(to top, rgb(0 0 0), transparent);
    transition:0.4s;
}

.product-overlay h5{
    color:#fff;
    margin-bottom:10px;
    font-weight:600;
}

/* BUTTON */
.view-btn{
    display:inline-block;
    padding:8px 20px;
    background:#e63946; /* RED from your screenshot */
    color:#fff;
    border-radius:30px;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.view-btn i{
    margin-left:6px;
    transition:0.3s;
}

/* HOVER EFFECT */
.product-box:hover img{
    transform:scale(1.1);
}

.product-box:hover .view-btn{
    background:#d4af37;
    color:#000;
}

.product-box:hover .view-btn i{
    margin-left:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .section-title h2{
        font-size:28px;
    }

    .product-box img{
        height:220px;
    }
}
.premium-footer{
    background: linear-gradient(135deg,#06162e,#0d2b5c);
    color:#fff;
    padding:70px 0 20px;
    position:relative;
}

/* LOGO */
.footer-logo{
    width:80px;
    margin-bottom:15px;
}

/* HEADINGS */
.footer-box h5{
    font-weight:600;
    margin-bottom:15px;
}

/* TEXT */
.footer-box p{
    font-size:14px;
    line-height:1.6;
}

.footer-box i{
    color:#d4af37;
    margin-right:8px;
}

/* QUICK LINKS */
.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#d4af37;
    padding-left:5px;
}

/* PARTNERS */
.partners h4{
    font-weight:600;
    margin-bottom:10px;
}

.partners p{
    margin-bottom:5px;
}

/* SOCIAL */
.social a{
    color:#fff;
    margin:0 8px;
    font-size:18px;
    transition:0.3s;
}

.social a:hover{
    color:#d4af37;
    transform:translateY(-3px);
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:20px;
}

/* RESPONSIVE */
@media(max-width:768px){

.footer-box{
    text-align:center;
}

.partners{
    text-align:center;
}

}
.why-section{
    padding:50px 0;
    background:#efefef;
}

/* TITLE */
.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#0b2a5c;
}

.divider{
    width:70px;
    height:3px;
    background:#d4af37;
    margin:12px auto 40px;
}

/* CARD */
.why-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.4s;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* ICON */
.why-card .icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#000;
}

/* TEXT */
.why-card h5{
    font-weight:600;
    margin-bottom:10px;
    color:#0b2a5c;
}

.why-card p{
    font-size:14px;
    color:#555;
}

/* HOVER */
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:768px){
    .section-title h2{
        font-size:28px;
    }
}
.cta-section{
    background:#dd2b1c;
    padding:70px 0;
    text-align:center;
    position:relative;
}

/* TITLE */
.cta-title{
    font-size:40px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
}

/* BUTTON */
.cta-btn{
    display:inline-block;
    padding:12px 30px;
    background:#fff;
    color:#dd2b1c;
    font-weight:600;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.cta-btn i{
    margin-left:8px;
    transition:0.3s;
}

/* HOVER */
.cta-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-3px);
}

.cta-btn:hover i{
    margin-left:12px;
}

/* RESPONSIVE */
@media(max-width:768px){

.cta-title{
    font-size:26px;
}

.cta-section{
    padding:50px 15px;
}

}