a {
    text-decoration: none;
    cursor: pointer;
}




/* Desktop hover only */
@media (min-width: 960px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile dropdown click toggle */
@media (max-width: 960px) {
    .dropdown-menu {
        display: none;
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
    }

    .dropdown.active>.dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: var(--text-dark);
        padding: 0.5rem 0;
        text-align: left;
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-container {
    position: relative;
    height: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: var(--white);
    max-width: 750px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    animation: letterSlide 0.6s ease forwards;
}

.preview-card {
    display: none;
    transition: all 0.4s ease;
}

.preview-card.active,
.preview-card.next {
    display: block;
}


@keyframes letterSlide {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
    gap: 2rem;
}

.hero-info {
    display: flex;
    gap: 3rem;
}





.hero-cta {
    padding: 10px 15px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Preview Carousel */
.preview-carousel {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.preview-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1rem;
    opacity: 0.8;
    position: relative;
    left: 73px;
    top: 2px;
    z-index: 9;
    background: #00000075;
    height: fit-content;
    padding: 2px;
}

.preview-items {
    display: flex;
    gap: 1rem;
}

.preview-card {
    width: 160px;
    height: 200px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.preview-card:hover {
    border-color: var(--white);
}

.preview-card.active {
    border-color: var(--secondary-color);
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.preview-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Navigation Dots */
.hero-navigation {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.nav-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot.active {
    background: var(--white);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1070px) {
    .hero-footer {
        flex-direction: column;
        align-items: flex-start;

    }
}


/* Why Choose Us */
.why-choose {
    /* padding:  2rem; */
    background: var(--white);
}

.section-title {
    text-align: center;
}



.section-title p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    background-image: url("../img/try1.png");
    background-size: cover;
    background-position: center;
    border-radius: 15px;

}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--white);
}

/* Brands Section */
.brands-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.brands-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.brand-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.brand-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.brand-subcategories {
    list-style: none;
    margin-bottom: 1.5rem;
}

.brand-subcategories li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.brand-subcategories li:last-child {
    border-bottom: none;
}

.brand-link {
    display: inline-block;
    margin: 2rem;

    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.brand-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Gifting Brand Colors */
.brand-card.gifting .brand-title {
    color: #f8bc16;
}

.brand-card.gifting .brand-link {
    background: #f8bc16;
    color: #1a1a1a;
}

.brand-card.gifting .brand-link:hover {
    background: #800020;
    color: #fff;
}

/* Vintage Brand Colors */
.brand-card.vintage .brand-title {
    color: #0077b6;
}

.brand-card.vintage .brand-link {
    background: #0077b6;
}

.brand-card.vintage .brand-link:hover {
    background: #00b04f;
}

/* Coaching Brand Colors */
.brand-card.coaching .brand-title {
    color: #1d3557;
}

.brand-card.coaching .brand-link {
    background: #1d3557;
}

/* Infotainment Brand Colors */
.brand-card.infotainment .brand-title {
    color: #e63946;
}

.brand-card.infotainment .brand-link {
    background: #e63946;
}

/* Blogs Section */
.blogs-section {
    /* padding: 6rem 2rem; */
    background: var(--white);
}

.blogs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;

}

.blog-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs-cta {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 12px 18px;
    transition: all 0.5s ease-out;
}

.blogs-cta:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000000;
    border: 1px solid #000000;
}

/* ---------------------------
   EXPORTS PRODUCT SLIDER
   --------------------------- */
.exports-slider-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.exports-slider-header {
    text-align: center;
}

.exports-slider-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #111;
    letter-spacing: 0.4px;
    margin-bottom: 0;
}

/* Swiper track */
.exports-slider-wrapper {
    width: 90%;
    padding: 0 14px;
}

.infotainment-section .infotainment-slider-wrapper {
    padding: 25px 14px;
    width: 90%;
}

@media (max-width:768px) {
    .exports-slider-wrapper {
        width: 100%;
    }
}


.exports-slider-track {
    display: flex;
    align-items: stretch;
    padding: 45px 0;
}

/* Product card */
.exports-slider-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.6s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: scale(0.96);
    overflow: hidden;
}

/* Active slide slightly bigger for focus */
.exports-slider-card.swiper-slide-active {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Hover animation: subtle lift */
.exports-slider-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}



/* Product image */
.exports-slider-image {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.exports-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Subtle zoom effect */
.exports-slider-card:hover img {
    transform: scale(1.05);
}

/* Product name */
.exports-slider-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.exports-slider-card:hover .exports-slider-name {
    color: var(--secondary-color, #b89146);
}

/* Navigation buttons */


.exports-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #b0b0b0;
    background: linear-gradient(145deg, #e0e0e0, #c0c0c0);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9;
}

/* Hover effect: darker silver tone */
.exports-slider-btn:hover {
    background: linear-gradient(145deg, #c8c8c8, #a8a8a8);
    color: #000;
    border-color: #999;
    transform: scale(1.05);
}

/* Active click feedback */
.exports-slider-btn:active {
    transform: scale(0.95);
    background: linear-gradient(145deg, #b0b0b0, #909090);
}

/* Responsive */
@media (max-width: 768px) {
    .exports-slider-card {
        flex: 0 0 100%;
    }
}


/* Silver buttons for infotainment slider */
.infotainment-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #b0b0b0;
    background: linear-gradient(145deg, #e0e0e0, #c0c0c0);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect: darker silver */
.infotainment-slider-btn:hover {
    background: linear-gradient(145deg, #c8c8c8, #a8a8a8);
    color: #000;
    border-color: #999;
    transform: scale(1.05);
}

/* Active state (pressed) */
.infotainment-slider-btn:active {
    transform: scale(0.95);
    background: linear-gradient(145deg, #b0b0b0, #909090);
}


#infotainment-slider#infotainment-slider .swiper-button-next:after,
.swiper-button-prev:after,
#exports-slider .swiper-button-next:after,
#exports-slider .swiper-button-prev:after {
    color: var(--white);
    font-size: 20px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 1rem;
    background: var(--white);
    background: url("../img/try.png") no-repeat;
    background-size: cover;
}

.contact-section h2,
.contact-section p {
    color: var(--white);
    margin-bottom: 0;
}

.contact-section h2 {
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 50px;
}

.contact-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info p {
    color: var(--white);

    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
}

.contact-form {
    background-image: url("https://i.pinimg.com/736x/4c/f8/6c/4cf86c5be2b48a3e7b0b5e9ac99387c4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem;
    /* background: var(--primary-color); */
    /* color: var(--white); */
    background: linear-gradient(135deg, #f8bc16, #f8b815, #fcdf82);

    border: 1px solid #ffffff5e;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--white);


}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(248, 188, 22, 0.6);
}

/* Responsive */
@media (max-width: 960px) {


    .hero {
        height: 90vh;
        margin-top: 70px;
    }

    .hero-container {
        padding: 0 2rem;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .preview-carousel {
        display: none;
    }

    .hero-navigation {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }

    .testimonial-image-wrapper {
        height: 200px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .testimonials-title {
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        gap: 2rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }
}



.brands-section .swiper {
    width: 100%;
    height: 250px;
    overflow: visible;
}

.brands-section .swiper-wrapper {
    gap: 50px;
}

.brands-section .swiper-slide {
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    background: #ddd;
    width: 400px;
    padding: 10px;
    box-sizing: border-box;
    overflow: visible;
}

.brands-section .inner-box {
    position: absolute;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    margin: 200px 0;
    z-index: 10;
    height: 100px;
    width: 100px;
}


.brands-section .inner-box:nth-child(1) {
    margin-left: 0px;
}


.brands-section .inner-box:nth-child(2) {
    margin-left: 125px;
}


.brands-section .inner-box:nth-child(3) {
    margin-left: 250px;
}



/* here shradha */

.collection-section {
    text-align: center;
    background: #41414108;
    padding: clamp(4rem, -3rem + 8.75vw, 7.5rem) 0;
}

/* .collection-section-1 {
    margin-bottom: 0;
    padding-bottom: 0;
} */

.collection-section-2 .collectionSwiper-2,
.collectionSwiper {
    width: 95%;
    position: relative;
}

.collection-section .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

.collection-section .banner {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: 25% 95%;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.collection-section .banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #121212;
    background: linear-gradient(181deg, rgba(18, 18, 18, 0.91) 0%, rgba(87, 81, 35, 0) 38%, rgba(237, 221, 83, 0) 100%);
    left: 0;
}

.collection-section .banner-content {
    position: absolute;
    top: 10px;
    left: 25px;
    text-align: left;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.collection-section .banner-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.collection-section .banner-content p {
    opacity: 0.9;
}

.collection-section .product-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: -60px;
}

@media (max-width:768px) {
    .collection-section .product-row {
        gap: 5PX;
    }
}


.collection-section .product-card {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #00000011;
    z-index: 2;
}

.collection-section .product-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

.collection-section .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-section .swiper-button-next,
.collection-section .swiper-button-prev {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    background: var(--gold-liner-grad);
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;

}

.collection-section .swiper-button-next:hover,
.collection-section .swiper-button-prev:hover {
    color: var(--black);
}












.glittery-gold {
    font-size: 5em;
    font-weight: 700;
    text-transform: uppercase;

    background-image: linear-gradient(to right,
            #462523 0%,
            #cb9b51 22%,
            #f6e27a 45%,
            #f6f2c0 50%,
            #f6e27a 55%,
            #cb9b51 78%,
            #462523 100%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    text-shadow:
        1px 1px 1px rgba(0, 0, 0, 0.4),
        0 0 5px rgba(255, 255, 255, 0.3);

    /* Animation for a continuous shine/shimmer */
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: -200% center;
    }
}