/* Color System & Main Base Configurations */
:root {
    --bs-warning: #2b6eb6;
    --bs-dark: #1e2229;
    --bg-deep-dark: #12151c;
    --light-muted: #b0b4bc;
    --pink-color:#e45942;
}
html{
    overflow-x: hidden !important;
}
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

.section-padding {
    padding: 100px 0;
}
.text-warning{
    color: var(--pink-color) !important;
}
.btn-warning.whatsap{
    background-color: #25D366 !important;
    border: var(--pink-color);
    color: #fff !important;
    transition: all 0.3s ease;
}

.btn-warning:hover{
    background-color:#075E54 !important;
    transition: all 0.3s ease;
}

.top-bar a{
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.top-bar a:hover{
color: var(--pink-color);
transition: all 0.3s ease;

}
.navbar-expand-lg .navbar-nav .nav-link{
    font-weight: 700 !important;
}

.bg-secondary-dark {
    background-color: var(--bs-dark) !important;
}

.bg-black {
    background-color: var(--bg-deep-dark) !important;
}

.text-light-muted {
    color: var(--light-muted);
}

/* Custom Navigation */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #444 !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--bs-warning) !important;
}

/* Hero Section Slider with Enhanced Keyframe Animation Loop */

.hero-slider-section .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.carousel-caption {
    bottom: unset;
    top: 0;
}

/* Custom Animation classes for active slider elements */
.carousel-item.active .slider-title {
    animation: fadeInUp 0.8s both 0.3s;
}
.carousel-item.active .slider-text {
    animation: fadeInUp 0.8s both 0.6s;
}
.carousel-item.active .slider-btn {
    animation: fadeInUp 0.8s both 0.9s;
    
}

.slider-btn{
background-color: var(--bs-warning) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: var(--pink-color) !important;
}
.slider-btn:hover{
    background-color: var(--pink-color) !important;
}
.carousel-item.active .slider-badge {
    animation: fadeInDown 0.8s both 0.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 767.98px) {
    .hero-slider-section .carousel-item {
        background-size: 100% 100% !important; 
        background-position: top center !important;
        height: auto !important;
        min-height: 480px;
    }
    
    .hero-slider-section .display-3 {
        font-size: 2rem !important;
    }
    .hero-slider-section .lead {
        font-size: 1rem !important;
    }
    .carousel-caption {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Card Structures */
.icon-box {
    width: 35px;
    height: 35px;
    background: #fff3cd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 50%;
}

.product-card {
    background: #fff;
    border: 1px solid #eef0f4;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-align: center;
}

.product-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #222;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--bs-warning);
}

.feature-box {
    transition: all 0.3s ease;
}
.feature-box:hover {
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
}
.feature-box:hover * {
    color: #fff !important;
}

/* Interaction Effects */
.hover-up {
    transition: transform 0.3s ease;
}
.hover-up:hover {
    transform: translateY(-5px);
}

/* Smooth Scroll Animation Activation class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

#about span{
    color: var(--bs-warning);
}
#about{
    background-color: #e1e1e18a;
}
#why-choose{
    background-color: #9ccaf98a;

}
#products span{
    color: var(--bs-warning);
}
.contact-no{
    text-decoration: none;
    color: var(--light-muted);
}
.contact-no:hover{
    color: #2b6eb6;
}



.premium-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background-color: #eaeaea;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* border: 1px solid #858383; */
}


.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}


.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e2229;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.product-desc-short {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}


.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e2229;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border-top: 1px solid #f1f3f5;
    margin-top: auto;
    transition: all 0.3s ease;
    width: 100%;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}


.premium-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--bs-warning);
}

.premium-product-card:hover .product-img {
    transform: scale(1.1);
}

.premium-product-card:hover .product-overlay {
    opacity: 0.4;
}

.premium-product-card:hover .product-title {
    color: var(--bs-warning);
}

.premium-product-card:hover .read-more-btn {
    color: var(--pink-color);
    border-top-color: rgba(25ff, 193, 7, 0.3);
}

.premium-product-card:hover .read-more-btn i {
    transform: translateX(6px);
}



@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100%;
        width: 100%;
        max-height: 45vh; 
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
    }

    .dropdown-menu .row {
        display: block;
    }

    .dropdown-menu .col-md-6 {
        width: 100%;
        margin-bottom: 0;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-item {
        white-space: normal;
        padding: 8px 15px;
    }
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: 0 !important;
}

.dropdown-menu {
    --bs-dropdown-min-width: 26rem !important;
    background-color: #000 !important;
    color: #fff !important;
}
.dropdown-item{
    color: #fff;
    font-weight: 600 !important;
}

 /* scroll to botton */

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 18px;
    z-index: 99;
    border: none;
    background-color: transparent;
    color: var(--pink-color);
    cursor: pointer;
    padding: 16px 16px;
    border-radius: 100%;
    font-size: 40px;
  }
  
  
  #scrollTopBtn:hover i {
    background-color: var(--text-white);
    color: var(--primary-color);
    transition: 0.4s ease-in-out;
  }
  
  /* scroll to botton */
  
    @media (max-width: 991px){
.address{
    display: none;
}
.to-mail{
    display: none;
}
  }
