:root {
            --primary-color: #88c8bc;
            --dark-text: #5a6c7d;
            --light-gray: #f8f9fa;
        }  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: var(--dark-text);
            overflow-x: hidden;
        }
        .container {
            max-width: 1050px !important;
            padding: 20px;
        }
        

        .navbar-brand {
            font-size: 30px;
            font-weight: 200;
            color: var(--dark-text) !important;
            display: flex;
            align-items: center;
        }

        .brand-icon {
            width: 35px;
            height: 35px;
            background: var(--primary-color);
            border-radius: 5px;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .navbar-nav .nav-link {
            color: var(--dark-text);
            font-weight: 500;
            font-size: 14px;
            padding: 0.5rem 12px!important;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link.dropdown-toggle::after {
            margin-left: 5px;
        }

        .navbar-icons {
            display: flex;
            align-items: center;
            gap: 0px;
        }

        .social-icons a {
            color: #1f6ee2;
            font-size: 1.1rem;
            margin: 0 8px;
            transition: transform 0.3s;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
        }

        .nav-divider {
            height: 20px;
            width: 1px;
            background: #ddd;
            margin: 0 10px;
        }

        .language-selector, .currency-selector {
            color: var(--dark-text);
            font-weight: 500;
            margin: 0 5px;
            text-decoration: none;
            font-size: 12px;
        }
        .navbar-nav .dropdown-menu {
            width: 96%;
        }

        .nav-icon-btn {
            background: none;
            border: none;
            color: var(--dark-text);
            font-size: 14px;
            cursor: pointer;
            position: relative;
            padding: 5px 10px;
        }
        
        .badge-count {
            position: absolute;
            top: -8px;
            right: 0;
            background: #ff4757;
            color: white;
            border-radius: 50%;
            width: 17px;
            height: 18px;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .helpline {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-text);
        }

        .helpline i {
            font-size: 28px;
            margin-left: 25px;
            color: #495057;
        }

        .helpline-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .helpline-label {
            font-size: 0.85rem;
            color: #999;
        }

        .helpline-number {
            font-weight: 0.8rem;
            font-size: 1rem;
            color: #999;
        }
 
         .hero-section {
            background: linear-gradient(135deg, #e8f4f2 0%, #f5f8f8 50%, #e8f4f2 100%);
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            min-height: 650px;
        }

        .hero-content-wrapper {
            display: flex;
            align-items: center;
            min-height: 650px;
            padding: 17px 0;
        }

        .hero-text-content {
            padding-right: 50px;
        }

        .hero-subtitle {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 45px;
            font-weight: 400;
            color: var(--dark-text);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .btn-explore {
            background-color: var(--primary-color);
            color: white;
            padding: 16px 45px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .btn-explore:hover {
            background-color: #6fb3a8;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(136, 200, 188, 0.3);
        }

        .hero-image-container {
            left: -80px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-background {
            position: absolute;
            width: 530px;
            height: 530px;
            left: 18px;
            background: rgba(255, 255, 255);
            border-radius: 50%;
            z-index: 1;
        }

        .hero-model-image {
            position: relative;
            z-index: 2;
            max-width: 100%;
            height: 100%;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
        }

        .carousel-control-prev,
        .carousel-control-next {
          border: 2px solid #bcc0c5;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          opacity: 1;
          top: 50%;
          transition: all 0.3s;
        }

        .carousel-control-prev {
            left: 40px;
        }

        .carousel-control-next {
            right: 40px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--primary-color);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
            filter: invert(0.5);
        }

        .carousel-control-prev:hover .carousel-control-prev-icon,
        .carousel-control-next:hover .carousel-control-next-icon {
            filter: invert(1);
        }

      

        .carousel-indicator button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(136, 200, 188, 0.5);
            border: none;
            margin: 0 5px;
        }

        .carousel-indicator button.active {
            background-color: var(--primary-color);
        }
        .carousel-indicator {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 2;
}
.backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 47px;
    border-radius: 50%;
    background: #abd4d4; 
    border: none;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all .3s ease;
}

.backToTop i {
    color: #fff;
    font-size: 12px;
    line-height: 10px;
}

.backToTop i.second {
    margin-top: -4px;
}

.backToTop:hover {
    background: #6f8f8f;
    transform: translateY(-3px);
}


        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            .navbar-collapse {
    background-color: #EEE;
}
.navbar-icons {
    margin-left: 33px;
}
.navbar-toggler-icon {
    width: 15px;
    height: 19px;
}
            
            .hero-text-content {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .circle-background {
                width: 492px;
                height: 492px;
                left: 173px;
            }
.hero-image-container {
    left: 12px;
}
            .carousel-control-prev,
            .carousel-control-next {
                width: 45px;
                height: 45px;
            }

            .carousel-control-prev {
                left: 20px;
            }

            .carousel-control-next {
                right: 20px;
            }
            .carousel-indicator {
                bottom: 27px;
                margin-left: 40%;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
             .featureSection  {
        padding: 37px 6px 0px !important;
    }
.latestArrivalSection.py-5 {
    padding-top: 0 !important;
}

            .helpline {
                display: none;
            }

            .carousel-item {
                min-height: 550px;
            }

            .hero-content-wrapper {
                min-height: 550px;
            }
             .circle-background {
                width: 492px;
                height: 492px;
                left: 109px;
            }
            .featureSection {
                text-align: center;
            }
            .iconBox01 i {
                right: 109px;
            }
        }
        @media (max-width: 576px) {
    .circle-background {
   display: none;
    }

    .hero-model-image {
        display: none;
    }
    .hero-content-wrapper {
        padding: 46px 0;
    }
     .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }
               .carousel-inner {
        right: -8px !important;
        max-width: 100%;
        text-align: center;
    }
    .hero-title {
        font-size: 27px;
    }
    .btn-explore {
        padding: 14px 42px;
        font-size: 13px;
    }

}
@media (max-width:400px) {
    .featureSection {
     text-align: start;
        padding: 37px 6px 0px;
    
    }
   

}
