:root {
    --primary: #0e1b4f;
    --secondary: #c31c16;
    --gold: #FFD700;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
}

p,
a {
    font-size: 16px;
    line-height: 1.8;
}

a:hover {
    color: var(--secondary);
}

/* Topbar Styles */
.topbar {
    background: #0f1a480f;
    color: #000;
    padding: 10px 0;
    /* font-size: 14px; */
}

.scrolling-tags {
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-tags {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scrolling-tags-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
}

.scrolling-tags span {
    display: inline-block;
    margin-right: 20px;
}

.topbar-icon {
    width: 22px;
    height: 22px;
    margin-right: 6px;
    vertical-align: middle;
    object-fit: contain;
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.contact-info i {
    margin-right: 5px;
    color: var(--gold);
}

.contact-info a {
    text-decoration: none;
    color: #000;
}

/* SVG Icon Styles */
.icon {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    display: inline-block;
}

.scrolling-tags .icon {
    width: 1.2em;
    height: 1.2em;
    margin-right: 5px;
}

.contact-info .icon {
    width: 1em;
    height: 1em;
    margin-right: 5px;
    color: var(--primary);
}

.social-icons .icon {
    width: 1.2em;
    height: 1.2em;
}

.btn .icon {
    width: 1.2em;
    height: 1.2em;
}

/* Header Styles */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



/* Hide mobile elements on desktop */
.mobile-whatsapp {
    display: none;
}

.mobile-action {
    display: none;
}

.sidebar-close {
    display: none;
}



.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.brand-logo img {
    display: block;
    max-height: 60px;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 300;
}

.nav-link {
    color: black !important;
    font-weight: 500;
    margin: 0 5px;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.dropdown-toggle::after {
    color: #000;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(139, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-buttons .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-whatsapp {
    background: #128C7E;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #095249;
    color: white;
    transform: translateX(3px);
}

.btn-contact {
    background: var(--secondary);
    border: none;
    color: white;
}

.btn-contact:hover {
    background: #600018;
    color: white;

}

.btn-bulk-pricing {
    background: var(--secondary);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-bulk-pricing:hover {
    background: #600018;
    color: white;
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    /* min-height: 80vh; */
    height: 550px;
    position: relative;
    overflow: hidden;
}

/* Hero Texture Overlay */
/* .hero-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, transparent 70%);
    background-size: 200px 200px, 300px 300px, 100px 100px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
} */

/* Hero Images */
.hero-image-left {
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    /* width: 300px; */
    height: 400px;
    z-index: 1;
}

.hero-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.hero-image-right {
    position: absolute;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    /* width: 300px; */
    height: 500px;
    z-index: 1;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

/* Floating Product Icons */
.floating-product-icon {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-product-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.floating-shirts {
    top: 25%;
    left: 5%;
    animation-delay: 0s;
    z-index: 0;
}

.floating-kurta {
    bottom: 10%;
    left: 25%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.hero-text .highlight {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 4rem;
}

.hero-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.gold-line {
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}

/* Hero CTA Button Styles */
.hero-cta {
    margin-top: 40px;
    text-align: center;
}

.hero-cta-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #ffd700 100%);
    color: #000000;
    background: #ffb1ae;
    border: 0;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* .hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: left 0.3s ease;
    z-index: 1;
} */

.hero-cta-btn:hover::before {
    left: 0;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4); */
    color: #000000;
    background: #fff;
}

.hero-cta-btn .btn-text,
.hero-cta-btn .btn-icon {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}


/* Navrang Section Styles */

/* .navrang-section {
    padding: 60px 0;
    background: #f8f9fa;
} */

.navrang-image {
    position: relative;
}

.main-model {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.model-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.navrang-content {
    padding: 0px 0 40px 20px;
}

.who-we-are-tag {
    display: inline-block;
    color: var(--secondary);
    /* font-size: 14px; */
    font-weight: 500;
    /* margin-bottom: 20px; */
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
}

.navrang-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ethnic-wear {
    font-size: 3rem;
    font-weight: 700;
    color: #8B0000;
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.navrang-description {
    margin-bottom: 40px;
}



.stats-quote-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.client-stats {
    background: var(--secondary);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    /* width: 250px; */
    margin-left: -55px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.stats-subtitle {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.brand-quote {
    flex: 1;
    position: relative;
    padding-left: 15px;
}

.quote-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FFE5E5;
    border-radius: 2px;
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}


/* Feature Cards Styles */
.feature-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #FFE5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin: 0;
}

.card-description {
    /* font-size: 14px;
    color: #666;
    line-height: 1.5; */
    margin: 0;
}

/* Legacy styles for backward compatibility */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: white;
    background: var(--secondary);
    border-radius: 50%;
    padding: 2px;
    margin-right: 12px;
    flex-shrink: 0;
}

.product-showcase {
    display: flex;
    gap: 15px;
}

.showcase-item {
    flex: 1;
}

.showcase-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text .highlight {
        font-size: 3rem;
    }

    .models-section {
        height: 300px;
    }

    .model-left {
        width: 200px;
        height: 300px;
    }

    .model-right-top,
    .model-right-bottom {
        display: none;
    }

    /* Mobile Header Styles */
    .header {
        padding: 10px 0;
    }

    .brand-logo {
        font-size: 1.8rem;
    }

    .brand-logo img {
        height: 40px;
        width: auto;
    }

    .brand-subtitle {
        font-size: 0.8rem;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .header-buttons {
        display: none;
    }

    .navbar {
        order: 3;
    }

    .brand-logo {
        order: 1;
    }

    .mobile-action {
        order: 2;
        display: block !important;
    }

    .mobile-action .btn-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        /* gap: 0px; */
        color: white;
        border-radius: 25px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        width: auto;
        height: auto;
        line-height: normal;
    }

    .mobile-action .btn-whatsapp:hover {
        background: #128C7E;
        color: white;
        transform: scale(1.05);
    }

    .mobile-action .icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-right: 0;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .nav-link {
        margin: 5px 0;
        padding: 8px 0;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 15px;
    }

    .dropdown-menu {
        text-align: center;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
        padding: 8px 15px;
    }

    /* Mobile Sidebar Menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1050;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    /* Close Button */
    .sidebar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .sidebar-close:hover {
        background: #f8f9fa;
        color: var(--secondary);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin-top: 0;
        text-align: left;
    }

    .nav-item {
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        padding: 15px 0 !important;
        font-size: 16px;
        border-bottom: none;
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        background: #f8f9fa;
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding: 10px 0;
    }

    .dropdown-item {
        padding: 10px 20px;
        border-bottom: 1px solid #e9ecef;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Overlay background */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* .navbar-collapse.show::before {
        opacity: 1;
    } */

    /* Hide floating product icons on mobile */
    .floating-product-icon {
        display: none;
    }

    .hero-section {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .topbar {
        font-size: 12px;
        padding: 6px 0;
    }

    .scrolling-tags span {
        margin-right: 15px;
    }

    .contact-info {
        display: none !important;
    }

    .contact-info span {
        display: block;
        margin-bottom: 5px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text .highlight {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .brand-logo {
        font-size: 1.5rem;
    }

    .header-buttons .btn {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    /* Navrang Section Mobile Styles */
    .navrang-section {
        padding: 40px 0;
    }

    .navrang-content {
        padding: 0;
        text-align: center;
    }

    .model-photo {
        height: auto;
        margin-bottom: 20px;
    }

    .client-stats {
        margin-left: 0;
    }

    .navrang-title {
        font-size: 2rem;
    }

    .ethnic-wear {
        font-size: 2.5rem;
    }

    .stats-quote-row {
        flex-direction: column;
        gap: 20px;
    }

    .client-stats {
        min-width: auto;
        padding: 25px 20px;
    }

    .brand-quote {
        padding-left: 0;
        padding-top: 20px;
    }

    .quote-line {
        display: none;
    }

    .product-showcase {
        flex-direction: column;
        gap: 10px;
    }

    .showcase-image {
        height: 100px;
    }

    /* Feature Cards Mobile Styles */
    .feature-cards {
        flex-wrap: nowrap;
        gap: 10px;
        text-align: left;
    }

    .feature-card {
        min-width: auto;
        padding: 15px;
        flex: 1;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon .icon {
        width: 20px;
        height: 20px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }




}

/* Tablet Styles */
@media (max-width: 991px) and (min-width: 769px) {
    .navrang-content {
        padding: 40px 0 40px 30px;
    }

    .navrang-title {
        font-size: 2.2rem;
    }

    .ethnic-wear {
        font-size: 2.8rem;
    }

    .stats-quote-row {
        gap: 20px;
    }

    .client-stats {
        min-width: 180px;
        padding: 25px 20px;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 60px 0;
    background: #efefef;
}

.categories-content {
    padding-right: 30px;
}

.categories-content .who-we-are-tag {
    margin-bottom: 15px;
}

.categories-content .navrang-title {
    margin-bottom: 20px;
}

.categories-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.category-item {
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}

.category-item:hover {
    transform: translateY(-10px);
}

.category-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    /* border: 1px solid #ccc; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    transition: all 0.3s ease;
    position: relative;
    background: #0f1b44d9;
}

.category-item:hover .category-image {
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); */
    transform: scale(1.05);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.3;
}

.category-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Brands Section Styles */
.brands-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0e1b4f 0%, #1a2b6b 50%, #2a3b7b 100%);
    position: relative;
    overflow: hidden;
}

/* Fashion Texture Overlay */
.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.03) 60%, transparent 60%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0.04) 70%, transparent 70%);
    background-size: 300px 300px, 400px 400px, 150px 150px, 200px 200px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    animation: textureFloat 20s ease-in-out infinite;
}

@keyframes textureFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    50% {
        transform: translateY(-5px) rotate(-1deg);
    }

    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.brands-content {
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.brands-content .who-we-are-tag {
    margin-bottom: 15px;
    color: var(--secondary);
}

.brands-content .navrang-title {
    margin-bottom: 20px;
    color: white;
}

.brands-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.brands-cta {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.brands-cta:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.brand-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    padding: 60px 0;
    background: #0072ff12;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header .who-we-are-tag {
    margin-bottom: 15px;
}

.why-choose-header .navrang-title {
    margin-bottom: 20px;
}

.why-choose-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(14, 27, 79, 0.3);
}

.why-choose-card .card-icon .icon {
    width: 35px;
    height: 35px;
    color: white;
}

.why-choose-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px;
    line-height: 1.3;
}

.why-choose-card .card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Collection Section Styles */
.collection-section {
    padding: 60px 0;
    background: white;
}

/* Grid Layout Styles - Using Bootstrap classes instead of custom definitions */

/* Collection Header Styles */
.collection-header {
    text-align: center;
    margin-bottom: 30px;
}

.collection-header .who-we-are-tag {
    margin-bottom: 15px;
}

.collection-header .navrang-title {
    margin-bottom: 20px;
}

.collection-header .collection-description {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Collection Info Styles (for backward compatibility) */
.collection-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 30px;
}

.collection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0px 0 25px;
    line-height: 1.2;
}

.collection-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px;
}

.collection-cta {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: flex-start;
}

.collection-cta:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Collection Tabs Styles */
/* .collection-tabs {
    max-width: 1200px;
    margin: 0 auto;
} */

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 1px solid #939393;
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tab-btn.active .tab-icon{
     filter: brightness(0.5) invert(1);
}

.tab-icon {
    width: 20px;
    height: 20px;
}

/* Tab Content Styles */
.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Swiper Styles */
.swiper {
    padding: 20px 0 50px;
}

.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 27, 79, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: var(--secondary);
    color: white;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px;
    line-height: 1.3;
}

.product-fabric {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 15px;
}



.product-card {
    position: relative;
}

/* Full Image View Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

/* Product Specifications Styles */
.product-specs {
    margin: 0px 0 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.spec-value {
    color: #666;
    font-weight: 500;
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.product-buttons .btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-buttons .btn-view-catalog {
    background: #000;
    color: white;
    border: none;
}

.product-buttons .btn-view-catalog:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.product-buttons .btn-add-cart {
    background: #007bff;
    color: white;
    border: none;
}

.product-buttons .btn-add-cart:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.product-buttons .icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

/* Categories Section Responsive Styles */
@media (max-width: 768px) {
    .categories-section {
        padding: 60px 0;
    }

    .categories-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .category-image {
        width: 150px;
        height: 150px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .category-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .categories-section {
        padding: 50px 0;
    }

    .categories-content {
        margin-bottom: 30px;
    }

    .category-image {
        width: 180px;
        height: 180px;
    }

    .category-title {
        font-size: 1.4rem;
    }
}

/* Brands Section Responsive Styles */
@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }

    .brands-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brand-item {
        padding: 20px;
        min-height: 120px;
    }

    .brand-item img {
        max-height: 60px;
    }
}

/* Why Choose Us Section Responsive Styles */
@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-choose-header {
        margin-bottom: 40px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .why-choose-card .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .why-choose-card .card-icon .icon {
        width: 25px;
        height: 25px;
    }

    .why-choose-card .card-title {
        font-size: 1.2rem;
    }

    .why-choose-card .card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us-section {
        padding: 50px 0;
    }

    .why-choose-header {
        margin-bottom: 30px;
    }

    .why-choose-description {
        font-size: 1rem;
    }

    .why-choose-card {
        padding: 25px 15px;
    }

    .why-choose-card .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .why-choose-card .card-icon .icon {
        width: 20px;
        height: 20px;
    }

    .why-choose-card .card-title {
        font-size: 1.1rem;
    }
}

/* Collection Section Responsive Styles */
@media (max-width: 768px) {
    .collection-section {
        padding: 60px 0;
    }

    /* Using Bootstrap's responsive grid classes instead of custom definitions */

    .collection-header {
        margin-bottom: 40px;
    }

    .collection-header .collection-description {
        max-width: 100%;
    }

    .collection-info {
        padding: 0 0 30px 0;
        text-align: center;
    }

    .collection-title {
        font-size: 2rem;
        margin: 15px 0 20px;
    }

    .collection-description {
        font-size: 1rem;
        margin: 0 0 25px;
    }

    .collection-cta {
        align-self: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .tab-buttons {
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .tab-icon {
        width: 18px;
        height: 18px;
    }

    .swiper {
        padding: 15px 0 40px;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .brands-section {
        padding: 50px 0;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-item {
        padding: 15px;
        min-height: 110px;
    }

    .brand-item img {
        max-height: 50px;
    }

    .collection-section {
        padding: 50px 0;
    }

    .collection-header {
        margin-bottom: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tab-buttons {
        gap: 10px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 120px;
    }

    .tab-icon {
        width: 16px;
        height: 16px;
    }

    .swiper {
        padding: 10px 0 30px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1rem;
    }
}

/* Swiper Navigation Arrow Styles */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Hide navigation arrows on mobile for better UX */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    /* Hero section responsive styles */
    .hero-image-left,
    .hero-image-right {
        width: 200px;
        height: 250px;
    }

    .hero-image-left {
        top: 83%;
    }

    .hero-image-right {
        top: 92%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text .highlight {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 20px 0;
    }

    .gold-line {
        height: 2px;
    }

    /* Mobile Floating Icons */
    .floating-product-icon {
        padding: 10px;
    }

    .floating-product-icon img {
        width: 60px;
        height: 60px;
    }

    .floating-shirts {
        top: 10%;
        left: 5%;
    }

    .floating-kurta {
        bottom: 15%;
        left: 15%;
    }

    /* Mobile Hero CTA Button */
    .hero-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .hero-image-left,
    .hero-image-right {
        width: 200px;
        height: auto;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text .highlight {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Small Mobile Floating Icons */
    .floating-product-icon {
        padding: 8px;
    }

    .floating-product-icon img {
        width: 50px;
        height: 50px;
    }

    .floating-shirts {
        top: 8%;
        left: 3%;
    }

    .floating-kurta {
        bottom: 12%;
        left: 10%;
    }

    /* Small Mobile Hero CTA Button */
    .hero-cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}



/* Contact Form Section Styles */
.contact-form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-content {
    padding-right: 40px;
}

.form-content .who-we-are-tag {
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-content .navrang-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info-form {
    margin-bottom: 40px;
}

.contact-info-form .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-form .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-form .contact-item .icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-sizing: content-box;
}

.contact-info-form .contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-info-form .contact-item p {
    font-size: 0.95rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.social-links-container {
    display: flex;
    margin-top: 5px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
}

.social-link .icon {
    width: 24px;
    height: 24px;
}

.form-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-cta-buttons .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-cta-buttons .btn-whatsapp {
    background: #128C7E;
    color: white;
    border: none;
}

.form-cta-buttons .btn-whatsapp:hover {
    background: #095249;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

.form-cta-buttons .btn-bulk-pricing {
    background: var(--secondary);
    color: white;
    border: none;
}

.form-cta-buttons .btn-bulk-pricing:hover {
    background: #600018;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(195, 28, 22, 0.3);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.contact-form-main .form-group {
    margin-bottom: 20px;
}

.contact-form-main .form-control {
    border: 2px solid #cdcdcd;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form-main .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(195, 28, 22, 0.25);
    background: white;
}

.contact-form-main .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-form-main textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact-form-main select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
}

.contact-form-main .btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #d63384 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-main .btn-primary:hover {
    background: linear-gradient(135deg, #600018 0%, #b02a37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 28, 22, 0.3);
}

/* Form Heading Styles */
.contact-form-main .form-heading {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-main .form-heading h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-main .form-heading p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form Section Responsive Styles */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .form-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .form-content .navrang-title {
        font-size: 2.2rem;
    }

    .contact-info-form .contact-item {
        text-align: left;
    }

    .form-cta-buttons {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-form-main .form-heading h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 50px 0;
    }

    .form-content .navrang-title {
        font-size: 2rem;
    }

    .form-description {
        font-size: 1rem;
    }

    .contact-info-form .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .form-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-main .form-control {
        padding: 12px 15px;
    }

    .contact-form-main .form-heading h3 {
        font-size: 1.4rem;
    }

    .contact-form-main .form-heading p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .form-content .navrang-title {
        font-size: 1.8rem;
    }

    .form-description {
        font-size: 0.95rem;
    }

    .contact-info-form .contact-item {
        padding: 12px;
        margin-bottom: 15px;
    }

    .contact-info-form .contact-item .icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }

    .contact-info-form .contact-item h5 {
        font-size: 0.9rem;
    }

    .contact-info-form .contact-item p {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-form-main .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .contact-form-main .btn-primary {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--primary);
    color: white;
    padding: 15px 0;
    /* margin-top: 50px; */
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.footer-links {
    margin: 0;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 25px 0;
        margin-top: 30px;
    }

    .footer-nav {
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-links {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 20px 0;
        margin-top: 0px;
    }

    .footer-nav {
        flex-direction: unset;
        gap: 10px;
        align-items: center;
    }

    .footer-copyright p,
    .footer-nav a {
        font-size: 13px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top svg {
        width: 16px;
        height: 16px;
    }
}



/* Thank You Modal - Premium Style */


/* Modal width */
#contact-form-main .modal-dialog {
  max-width: 420px;
}

/* Modal box */
#contact-form-main .thankyou-modal {
  border-radius: 18px;
  padding: 32px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

/* Top gradient bar */
#contact-form-main .thankyou-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #0d6efd, #20c997);
}

/* Heading */
#contact-form-main h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1b35;
}

/* Text */
#contact-form-main p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 22px;
}

/* Button */
#contact-form-main .btn-primary {
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
}

/* Backdrop */
.modal-backdrop.show {
  opacity: 0.6;
}

/* Mobile optimization */
@media (max-width: 480px) {
  #contact-form-main .thankyou-modal {
    padding: 26px 20px;
  }

  #contact-form-main h4 {
    font-size: 20px;
  }
}
