* {
    font-family: "Rajdhani", sans-serif;
}

:root {
    --primary-pink: #FF0066;
    --dark-bg: #1a1a1a;
    --text-light: #f8f9fa;
    --text-dark: #343a40;
    --red-section: #E74C3C;
    --yellow-section: #F39C12;
}

body {
    font-family: "Rajdhani", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    /* Prevent horizontal scroll due to animations */
}

h1,
h2,
h3,
h4,
h5,
h6 {

    color: var(--text-dark);
}


.rajdhani-light {
    font-family: "Rajdhani", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.rajdhani-regular {
    font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.rajdhani-medium {
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.rajdhani-semibold {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.rajdhani-bold {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.container {
    max-width: 1140px;
}

.navbar {
    background-color: #000;
    padding: 10px 0;
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #FFD700;
    /* Gold line */
}

.navbar-brand img {
    height: 60px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-pink) !important;
}

.hero-contact {

    background: url('../images/saari-bg-3.jpg') no-repeat left center/cover !important;

}

.hero-section {
    position: relative;
    height: 90vh;
    background: url('../images/bg-1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    animation: fadeInDown 1s ease-out;
    margin-top: 5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
    max-width: 400px;
}

.logobox {
    position: relative;
    width: 110px
}

.logobox img {
    width: 104px;
    position: absolute;
    top: -25px
}

.btn-primary-custom {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: white;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.btn-primary-custom:hover {
    background-color: #e6005c;
    /* Darker pink */
    border-color: #e6005c;
    transform: translateY(-3px);
}

.image-grid {
    padding: 4rem 0;

}

.image-grid .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    margin: 20px;
}

.image-grid .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.image-grid .card img {
    width: 100%;
    height: auto;
    /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.section-rich-tapestry {
    position: relative;
    background: url('../images/bg-2.jpg') no-repeat top center/cover;
    color: var(--text-light);
    padding: 6rem 0;
    overflow: hidden;
}

.section-rich-tapestry .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.section-rich-tapestry .content-box {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 5px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #945b2d;
}

.section-rich-tapestry h2 {
    color: var(--text-light);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-rich-tapestry p {
    font-size: 1rem;
    line-height: 1.4;
}

.section-hand-weaving {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6rem 0;
    background-color: #fff;
}

.section-hand-weaving .image-col {
    position: relative;
    min-height: 700px;
    /* Ensure image takes space */
    background: url(../images/saari-bg-1.jpg) no-repeat top right;
    background-size: cover;
}

.section-hand-weaving .image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;

}

.section-hand-weaving .text-col {
    background-color: var(--yellow-section);
    padding: 3rem 5rem;
    border-radius: 0 20px 20px 0;
    color: var(--text-dark);

    justify-content: flex-start;
}

.section-hand-weaving h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-hand-weaving p {
    font-size: 1rem;
    line-height: 1.4;
}

.section-authenticity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6rem 0;

}

.section-authenticity .image-col {
    position: relative;
    min-height: 700px;
    /* Ensure image takes space */
    background: url(../images/saari-bg-2.jpg) no-repeat top left;
    background-size: cover;

}

.section-authenticity .image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;

}

.section-authenticity .text-col {
    background-color: var(--red-section);
    padding: 3rem 5rem;
    border-radius: 20px 0 0 20px;
    color: var(--text-light);

}

.section-authenticity h2 {
    color: #F39C12;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-authenticity p {
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
}

.section-authentic-silk {
    position: relative;
    background: url('../images/bg-3.jpg') no-repeat top center/cover;
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.section-authentic-silk .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.section-authentic-silk .content {
    position: relative;
    z-index: 1;

    margin: 0 auto;
}

.section-authentic-silk h2 {
    color: var(--text-light);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-authentic-silk p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    max-width: 500px;
    margin: auto;
}

.footer {
    background: #000000;
    color: white;
    padding: 40px 0 0px;
    z-index: 12 !important;
    height: auto !important;
}

footer h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

footer li a {
    font-size: 1rem;
    line-height: 1.4;
    padding: 5px 0;
    color: #8b8b8b;
    display: block;
    text-decoration: none;
}

.footer p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0c0c0c;
}

.footer img {
    width: 170px;
    margin-bottom: 15px;
}

.bg-brick {
    background: #dd5757;
}

.txt-bg-brick {
    color: #cc0000;
}

.txt-bg-brick a {
    color: #ffffff !important;
}

.text-warning a {
    color: #ffffff !important;
}

.bg-bri.ck p {
    color: #000;
}

.m-logobox {
    display: none;
}

.policy-header {
    background: #000;
    padding: 20px 0;
    border-bottom: 5px solid #FFD400;
}

.policy-header .logo {
    height: 40px;
}

.badge-custom {
    background-color: #FFD400;
    color: #000;
    font-weight: bold;
}

.privacy-content {
    background-color: #FFE093;
    color: #3A1F1F;
    padding: 30px;
    border-radius: 20px;
}

.privacy-content h5 {
    font-weight: 700;
}

.highlight-yellow {
    color: #FFD400;
}

.highlight-red {
    color: #F58D8D;
}

.policy-wrap {
    max-width: 800px;
}

.text-bold {
    font-weight: bold;
}

.policy-wrap .privacy-content p a {
    color: #bc4343;
    font-weight: 500;
    text-decoration: none;
}

.policy-wrap p a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

.bg-g-yellow {
    background: #ffb300;
}

.bg-dark-grey {
    background: #646464;
}

.row {
    display: flex;
    align-items: stretch;
}

.bg-brick {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vh-100 {
    height: 100vh;
}

.pe-10 {
    padding-left: 100px;
}

.text-gr {
    color: #8b8b8b !important;
}







/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-rich-tapestry h2,
    .section-hand-weaving h2,
    .section-authenticity h2,
    .section-authentic-silk h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0 10px;
    }

    .section-hand-weaving .image-col,
    .section-authenticity .image-col {
        min-height: 350px;

    }

    .section-hand-weaving .text-col,
    .section-authenticity .text-col {
        margin-top: 0;
    }

    .section-rich-tapestry .content-box {
        padding: 2rem;
    }

    .section-authentic-silk h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-primary-custom {
        padding: 0.6rem 2rem;
        font-size: 1rem;
    }

    .section-rich-tapestry h2,
    .section-hand-weaving h2,
    .section-authenticity h2,
    .section-authentic-silk h2 {
        font-size: 2rem;
    }

    .section-rich-tapestry p,
    .section-hand-weaving p,
    .section-authenticity p,
    .section-authentic-silk p {
        font-size: 0.9rem;
    }

    .section-hand-weaving .image-col,
    .section-authenticity .image-col {
        min-height: 300px;
    }

    .m-logo {
        display: none;
    }
}

@media (max-width: 576px) {
    html {
        overflow-x: hidden;
    }

    .hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .navbar-brand img {
        height: 45px;
    }

    .section-rich-tapestry h2,
    .section-hand-weaving h2,
    .section-authenticity h2,
    .section-authentic-silk h2 {
        font-size: 1.8rem;
    }

    .section-hand-weaving .image-col,
    .section-authenticity .image-col {
        min-height: 250px;
    }

    .m-logobox {
        display: block;
        top: -13px;
        margin-right: 17px;
    }

    .m-logobox img {
        width: 80px;
    }

    .navbar-collapse {
        margin-top: 30px;
    }

    .navbar-nav .nav-link {
        text-align: right;
    }

    footer {
        text-align: center;
    }
    .justify-content-xs-center {
    justify-content: center !important;
  }
}