* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-header {
    background-color: #b9954a;
    /* golden bg */
    color: #fff;
    font-family: "Segoe UI", "Century Gothic", sans-serif;
    font-size: 1.1rem;
    /* position: sticky;  */
    top: 0;
    /* stick to top */
    z-index: 1030;
    /* above other content */
}

.top-header a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
    /* prevent text wrapping */
    font-size: clamp(13px, 1.1vw + 6px, 18px);
}

.top-header a:hover {
    color: #000;
}

/* top header end */

/* navbar start */
/* Navbar Styling */
.navbar-custom {
    background-color: #ffffff;
    color: #b9954a;
    font-family: "Abel", sans-serif;
    font-weight: 600;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.5rem;
}

.navbar-custom .navbar-brand img {
    height: 60px;
    /* Bigger logo */
}

.navbar-custom .navbar-nav .nav-link {
    color: #b9954a;
    transition: 0.3s;
    white-space: nowrap;
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    margin: 0 0.75rem;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: #000;
}

.navbar-custom .navbar-toggler {
    border-color: #b9954a;
}

.navbar-custom .navbar-toggler-icon i {
    color: #b9954a;
    font-size: 1.9rem;
}

/* Attractive Dropdown */
.navbar-custom .dropdown-menu {
    background-color: #fff;
    border-radius: 0.75rem;
    min-width: 250px;
    padding: 0.5rem 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* shadow for dropdown */
    transition: all 0.3s ease;
}

.navbar-custom .dropdown-menu a {
    color: #b9954a;
    padding: 12px 25px;
    display: block;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.navbar-custom .dropdown-menu a:hover {
    background-color: #b9954a;
    color: #fff;
    transform: translateX(5px);
    /* slight movement on hover */
    border-radius: 0.5rem;
}

/* Optional: dropdown arrow rotation on open */
.dropdown-toggle::after {
    transition: transform 0.3s;
}

.show>.dropdown-toggle::after {
    transform: rotate(-180deg);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .navbar-custom .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1.15rem;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .navbar-custom .navbar-brand img {
        height: 50px;
    }
}

/* navbar end */

/* crousel start */
/* Carousel Container */
#goldenCarousel {
    position: relative;
    z-index: 1;
}

/* Carousel Items */
.golden-carousel-item {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.golden-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease, filter 1.5s ease;
}

.golden-carousel-item.active img {
    transform: scale(1.08);
    filter: brightness(0.95);
}

/* Carousel Controls */
.golden-carousel-prev,
.golden-carousel-next {
    position: absolute;
    top: 260px;
    bottom: 0;
    /* z-index: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

/* .golden-carousel-prev:hover,
    .golden-carousel-next:hover {
        background: #d4af37;
        transform: translateY(-50%) scale(1.15);
        opacity: 1;
    } */

.golden-carousel-prev {
    left: 15px;
}

.golden-carousel-next {
    right: 15px;
}

/* Arrow Icons */
.golden-carousel-prev-icon,
.golden-carousel-next-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}

.golden-carousel-prev-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.78.72 1.5 4l3.28 3.28L5.5 8l-4-4 4-4z'/%3E%3C/svg%3E");
}

.golden-carousel-next-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0L3.22.72 6.5 4 3.22 7.28 2.5 8l4-4-4-4z'/%3E%3C/svg%3E");
}

/* Indicators */
.golden-carousel-indicators [data-bs-target] {
    background-color: #b9954a;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.golden-carousel-indicators [data-bs-target]:hover {
    background-color: #d4af37;
    transform: scale(1.2);
}

.golden-carousel-indicators .active {
    background-color: #fff;
    width: 16px;
    height: 16px;
}

/* Responsive Heights */
@media (max-width: 991.98px) {
    .golden-carousel-item {
        height: 70vh;
    }
}

@media (max-width: 767.98px) {
    .golden-carousel-item {
        height: 55vh;
    }
}

@media (max-width: 575.98px) {
    .golden-carousel-item {
        height: 35vh;
    }

    .golden-carousel-prev,
    .golden-carousel-next {
        width: 40px;
        height: 40px;
    }

    .golden-carousel-prev-icon,
    .golden-carousel-next-icon {
        width: 20px;
        height: 20px;
    }
}

/* crousel end */


/* index about start */
/* About Section Updated */
.pro100-about-section {
    background-color: #f9f8f4;
    overflow: hidden;
    padding: 2rem 0;
}

/* Titles and Text */
.pro100-about-title {
    font-family: "Josefin Sans", sans-serif;
    color: #b9954a;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.pro100-about-text {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    opacity: 0;
    transform: translateX(50px);
    animation: pro100SlideFadeIn 1s forwards;
}

.pro100-about-text:nth-of-type(1) {
    animation-delay: 0.5s;
}

.pro100-about-text:nth-of-type(2) {
    animation-delay: 0.7s;
}

.pro100-about-text:nth-of-type(3) {
    animation-delay: 0.9s;
}

.pro100-btn {
    background: linear-gradient(135deg, #b9954a, #d4af37);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    opacity: 0;
    transform: translateX(50px);
    animation: pro100SlideFadeIn 1s forwards;
    animation-delay: 1.1s;
}

.pro100-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b9954a);
    transform: scale(1.05);
    color: #fff;
}

/* Image Animation */
.pro100-about-image img {
    opacity: 0;
    transform: translateX(-50px);
    animation: pro100SlideFadeInImg 1s forwards;
    animation-delay: 0.3s;
}

/* Animation Keyframes */
@keyframes pro100SlideFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pro100SlideFadeInImg {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .pro100-about-title {
        font-size: 2rem;
    }

    .pro100-about-text {
        font-size: 1rem;
    }

    .pro100-btn {
        padding: 0.55rem 1.3rem;
        font-size: 0.95rem;
    }
}

/* Mobile Layout */
@media (max-width: 575.98px) {
    .pro100-about-row {
        flex-direction: column !important;
        /* stack vertically */
        text-align: center;
    }

    .pro100-about-image {
        order: -1;
        /* image comes first */
        margin-bottom: 20px;
    }

    .pro100-about-content {
        text-align: justify;
        /* keep text justified */
    }

    .pro100-about-image img {
        width: 100%;
        height: auto;
    }
}

/* index about end */

/* welcome start */
/* Welcome Heading Section */
.pro100-welcome-section {
    background-color: #f9f8f4;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pro100-welcome-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #b9954a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gradient Underline */
.pro100-welcome-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b9954a, #e9c243);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pro100-welcome-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .pro100-welcome-title {
        font-size: 2rem;
    }

    .pro100-welcome-section {
        padding: 3rem 1rem;
    }
}

/* welcome end */

/* product index start */
.golden-subtitle {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.2rem;
    color: #b9954a;
    margin-bottom: 0;
}

.title-wrapper {
    margin-top: 10px;
}

.main-heading {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #222;
    margin: 0 15px;
    text-transform: uppercase;
}

.divider-line {
    flex: 1;
    max-width: 60px;
    height: 2px;
    background-color: #4a4a4a;
}

/* Responsive */
@media (max-width: 575.98px) {
    .golden-subtitle {
        font-size: 1rem;
    }

    .main-heading {
        font-size: 1.4rem;
    }

    .divider-line {
        max-width: 40px;
    }
}

/* Welcome Section */
.hero-section {
    background-color: #f9f8f4;
    padding: 5rem 1rem;
    text-align: center;
}

.hero-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #b9954a;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #b9954a;
    margin: 15px auto 0;
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 1rem;
    }
}

/* Product Cards */
.product-box {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 300px;
}

.product-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.product-box:hover img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(185, 149, 74, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box:hover .overlay-text {
    opacity: 1;
}

.overlay-text h5 {
    color: #fff;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    padding: 0 0.5rem;
}

/* View More Button */
.golden-btn {
    background: linear-gradient(135deg, #b9954a, #d4af37);
    color: #fff;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.golden-btn:hover {
    transform: scale(1.05);
}

/* product index end */

/* stats start */
.facts-section {
    position: relative;
    background: url("images/bannerbg.webp") center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
}

.facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.facts-container {
    position: relative;
    z-index: 2;
}

.facts-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    border-left: 4px solid #b9954a;
    padding-left: 15px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.facts-title.show {
    opacity: 1;
    transform: translateX(0);
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateY(40px);
}

.fact-card.show {
    opacity: 1;
    transform: translateY(0);
}

.fact-card:hover {
    transform: translateY(-8px);
}

.fact-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.fact-card:hover .fact-number span {
    color: #b9954a;
    /* golden color on hover */
}

.fact-number span {
    color: #ffffff;
    /* golden touch */
}

.fact-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f1f1f1;
}

@media (max-width: 768px) {
    .facts-title {
        font-size: 1.5rem;
        text-align: center;
        border: none;
        padding: 0;
    }
}

/* start end */

/* partner start */
.partner-slider {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    background: #fff;
    border-radius: 10px;
    margin: 0 20px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Gradient edges */
.partner-slider:before,
.partner-slider:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-slider:before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.partner-slider:after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.partner-logos {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    will-change: transform;
}

.partner-logos img {
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partner-logos {
        gap: 18px;
    }

    .partner-logos img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .partner-logos {
        gap: 15px;
    }

    .partner-logos img {
        height: 50px;
    }

    .partner-slider:before,
    .partner-slider:after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .partner-logos {
        gap: 10px;
    }

    .partner-logos img {
        height: 40px;
    }

    .partner-slider:before,
    .partner-slider:after {
        width: 40px;
    }
}

/* partner end */

/* why choose us start */

.choose-section {
    text-align: center;
    padding: 70px 20px;
    background: #b5904d;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #fff;
}

.choose-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(90deg, #fff, #f1e1b0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.choose-section h2::before,
.choose-section h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 70px;
    height: 3px;
    background: #fff;
}

.choose-section h2::before {
    left: -90px;
}

.choose-section h2::after {
    right: -90px;
}

.choose-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.choose-card {
    background: #fff;
    padding: 25px 20px;
    flex: 1 1 200px;
    max-width: 200px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(181, 144, 77, 0.3), rgba(181, 144, 77, 0));
    transition: 0.5s;
    z-index: 0;
}

.choose-card:hover::before {
    top: 0;
}

/* updated image design */
.choose-card img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 50%;
    padding: 10px;
    background: #fff;
    border: 3px solid #b5904d;
    box-shadow: 0 0 12px rgba(181, 144, 77, 0.5);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.choose-card:hover img {
    transform: scale(1.15) rotate(10deg);
    border-color: #fff;
    box-shadow: 0 0 18px rgba(181, 144, 77, 0.9), 0 0 30px rgba(181, 144, 77, 0.6);
    filter: brightness(1.1);
}

.choose-card p {
    font-size: 15px;
    color: #b5904d;
    font-weight: 600;
    line-height: 1.5;
    z-index: 1;
    position: relative;
}

.choose-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .choose-items {
        gap: 20px;
    }

    .choose-card {
        max-width: 160px;
        padding: 20px;
    }

    .choose-card img {
        width: 65px;
        height: 65px;
    }

    .choose-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .choose-items {
        flex-direction: column;
        align-items: center;
    }

    .choose-card {
        max-width: 220px;
        width: 85%;
        margin-bottom: 20px;
    }
}

/* why choose us end */

/* reach us start */
.reachus-title {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}

.reachus-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.reachus-wrapper {
    border: 1px solid #f3d59c;
    padding: 20px;
}

.reachus-logo {
    max-width: 220px;
}

.reachus-address {
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 15px;
}

.reachus-address i {
    color: #000;
    margin-right: 10px;
}

/* reach end */

/* footer start */
footer {
    background: #000000;
    color: #fff;
    padding: 70px 25px 25px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b5904d, #e0c097, #b5904d);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-col {
    animation: fadeInUp 1s ease forwards;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #b5904d;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 45px;
    height: 3px;
    background: #b5904d;
    border-radius: 2px;
}

.footer-col p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.footer-col ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: #b5904d;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #b5904d;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-contact p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 12px;
}

/* Social Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
    background: #333;
    color: #b5904d;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #b5904d;
    color: #1a1a1a;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 15px;
    color: #bbb;
    background: linear-gradient(90deg, #000000, #000000, #000000);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 20px 20px;
    }

    .footer-col h3 {
        font-size: 20px;
    }

    .footer-col p,
    .footer-col ul li a,
    .footer-contact p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer-col {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin-right: 5px;
    }
}

/* footer end */

/* about page start */
/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    background: url("images/aboutbanner.webp") center/cover no-repeat;
    padding: 100px 20px 60px;
    text-align: center;
    color: #fff;
}

.breadcrumb-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.breadcrumb-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 16px;
}

.breadcrumb li {
    color: #fff;
}

.breadcrumb li a {
    color: #f1c974;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: #fff;
}

.breadcrumb li::after {
    content: "/";
    margin: 0 5px;
    color: #fff;
}

.breadcrumb li:last-child::after {
    content: "";
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 80px 15px 40px;
    }

    .breadcrumb-content h1 {
        font-size: 28px;
    }

    .breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 60px 10px 30px;
    }

    .breadcrumb-content h1 {
        font-size: 22px;
    }

    .breadcrumb {
        font-size: 12px;
    }
}

.main-container {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #111;
    background-color: #fff;
    padding: 20px;
}

/* Gradient Heading */
h2.title-section {
    font-family: "Josefin Sans", sans-serif;
    background: linear-gradient(90deg, #b89238, #f1c974);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide 1s forwards 0.3s;
}

/* Overview Text */
.content-overview p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    font-family: "Book Antiqua", Palatino, serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s forwards;
}

.content-overview p:nth-child(1) {
    animation-delay: 0.4s;
}

.content-overview p:nth-child(2) {
    animation-delay: 0.6s;
}

.content-overview p:nth-child(3) {
    animation-delay: 0.8s;
}

.content-overview p:nth-child(4) {
    animation-delay: 1s;
}

.content-overview p:nth-child(5) {
    animation-delay: 1.2s;
}

.content-overview p span {
    color: #b89238;
    font-style: italic;
    font-weight: 600;
}

.content-overview p strong {
    color: #b89238;
}

/* Vision & Mission Boxes */
.card-vision-mission {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide 1s forwards;
}

.card-vision-mission:nth-child(1) {
    animation-delay: 1.4s;
}

.card-vision-mission:nth-child(2) {
    animation-delay: 1.6s;
}

.card-vision-mission:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-vision-mission h4 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #b89238, #f1c974);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.card-vision-mission p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-family: "Book Antiqua", Palatino, serif;
}

.mission-content strong {
    font-weight: 700;
    color: #b89238;
    font-size: 1.05rem;
}

/* Animations */
@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h2.title-section {
        font-size: 1.7rem;
    }

    .card-vision-mission {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    h2.title-section {
        font-size: 1.5rem;
        text-align: center;
    }

    .card-vision-mission {
        padding: 20px 15px;
    }
}



/* Subheading */
.subtitle {
    font-size: 18px;
    color: #555;
    font-family: "Book Antiqua", Palatino, serif;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* Main Image */
.main-image {
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-height: 850px;
    /* Increased height */
    object-fit: cover;
    width: 100%;
}

.main-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Popup */
.popup-overlay {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    animation: fadeIn 0.4s ease;
}

.popup-img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.popup-img:hover {
    transform: scale(1.02);
}

.popup-close {
    margin-top: 20px;
    padding: 12px 30px;
    background: #b4934a;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.popup-close:hover {
    background: white;
    color: #b4934a;
    border: 1px solid #b4934a;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* about page end */

/* contact page start */
.getintouch-area {
    padding: 60px 0;
}

.getintouch-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: #b4934a;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.getintouch-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.5;
}

.getintouch-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.getintouch-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.form-style .input-group-text {
    background: #b4934a;
    color: white;
    border-radius: 10px 0 0 10px;
    border: 1px solid #b4934a;
}

.form-style .form-control {
    border-radius: 0 10px 10px 0;
    border-left: none;
    padding: 12px 15px;
    border: 1px solid #b4934a;
    transition: all 0.3s;
}

.form-style .form-control:focus {
    box-shadow: 0 0 10px rgba(180, 147, 74, 0.5);
    border-color: #b4934a;
}

.form-style button {
    background: linear-gradient(90deg, #b4934a, #f0c27b);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

.form-style button:hover {
    background: white;
    color: #b4934a;
    border: 1px solid #b4934a;
}

.map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.map-box:hover {
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .getintouch-title {
        font-size: 36px;
    }

    .getintouch-subtitle {
        font-size: 16px;
    }
}

/* contact page end */

/* download  page start */
.catalog-section {
    max-width: 1400px;
    margin: 60px auto;
    font-family: 'Poppins', sans-serif;
    background: #f2f2f2;
    padding: 40px 15px;
}

/* Cards */
.catalog-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    perspective: 1000px;
}

.catalog-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.catalog-card:hover img {
    transform: scale(1.15);
}

/* Overlay */
.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.catalog-card:hover::before {
    opacity: 1;
}

/* Footer */
.catalog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 2;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.catalog-card:hover .catalog-card-footer {
    transform: translateY(0);
    opacity: 1;
    background: #fdf6e3;
}

.catalog-card-footer span {
    font-weight: 700;
    font-size: 18px;
    color: #333;
    transition: color 0.4s ease;
}

.catalog-card:hover .catalog-card-footer span {
    color: #c49c43;
}

.catalog-card-footer button {
    background: #c49c43;
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 10px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.catalog-card-footer button:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 25px rgba(196, 156, 67, 0.6);
    background: #b38234;
}

/* Hover tilt effect */
.catalog-card:hover {
    transform: translateY(-20px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (min-width: 992px) {
    .col-lg-custom {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1200px) {
    .col-xl-custom {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* downloads page end */

/* salon chair  58002 start */
.row-equal {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.card-wrapper {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.img-zoom-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
    flex: 1;
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.zoom-lens {
    position: absolute;
    border: 3px solid #b5904d;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    pointer-events: none;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.input-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-custom {
    border: none;
    background: linear-gradient(45deg, #b5904d, #f0c27b);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.category-grid {
    width: 100%;
    text-align: center;
    border-collapse: separate;
    border-spacing: 5px;
}

.category-cell {
    background-color: #b5904d;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-cell:hover {
    background-color: #000;
    color: #fff;
}

.category-cell.active {
    background-color: #000;
    font-weight: bold;
}

@media (max-width: 767px) {
    .category-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .category-grid tr {
        display: contents;
    }

    .category-cell {
        flex: 1 1 48%;
        margin: 5px 1%;
        font-size: 13px;
        padding: 10px;
    }
}

.note-text-custom {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    background: linear-gradient(90deg, #f0c27b, #b5904d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* salon chair  58002 end */