@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');


@font-face {
    font-family: 'cabinet';
    src: url('../fonts/CabinetGrotesk-Variable.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Variable.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'clashdisplay';
    src: url('../fonts/ClashDisplay-Medium.otf') format('opentype');
}


@font-face {
    font-family: 'CabinetGrotesk-Thin';
    src: url('../fonts/CabinetGrotesk-Thin.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Thin.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Thin.ttf') format('truetype');
    font-weight: 100;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'CabinetGrotesk-Extralight';
    src: url('../fonts/CabinetGrotesk-Extralight.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Extralight.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'CabinetGrotesk-Light';
    src: url('../fonts/CabinetGrotesk-Light.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Light.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'CabinetGrotesk-Regular';
    src: url('../fonts/CabinetGrotesk-Regular.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Regular.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'CabinetGrotesk-Medium';
    src: url('../fonts/CabinetGrotesk-Medium.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Medium.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'CabinetGrotesk-Bold';
    src: url('../fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Bold.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'CabinetGrotesk-Extrabold';
    src: url('../fonts/CabinetGrotesk-Extrabold.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Extrabold.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'CabinetGrotesk-Black';
    src: url('../fonts/CabinetGrotesk-Black.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Black.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}

body {
    font-family: "cabinet", sans-serif;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Baskervville", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.navbar-brand {
    color: white !important;
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 300;
    font-family: 'Cabinet', sans-serif;
}

.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background: white;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.fullscreen-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    left: 40px;
    background: none;
    border: none;

    cursor: pointer;

}

.menu-content {
    padding: 80px 50px;
    color: white;
}

.menu-nav {
    list-style: none;
    padding: 0;
}

.menu-nav li {
    margin: 15px 0;
}

.menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;

    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-nav a:hover {
    color: #ccc;
    transform: translateX(10px);
}

.menu-nav .submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.menu-nav .submenu a {
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
}

.social-icons {
    margin-top: 50px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}


/* Carousel Styles */
.carousel {
    height: 100vh;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}


.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.carousel-caption {
    position: absolute;
    bottom: 100px;
    left: 80px;
    right: auto;
    z-index: 2;
    text-align: left;
    max-width: 500px;
    padding: 0;
}

.carousel-caption h1 {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-white {
    display: inline-block;
    padding: 12px 45px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;

    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: white;
    color: black;
}


.btn-black {
    display: inline-block;
    padding: 12px 45px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;

    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background: #000;
    color: #fff;
}

/* Custom Carousel Indicators */
.carousel-indicators {
    bottom: 70px;
    left: 80px;
    margin: 0;
    justify-content: flex-start;
}

.pleft30 {
    padding-left: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid white;
    background: transparent;
    opacity: 1;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: white;
}

/* Hide default carousel controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-caption {
        left: 30px;
        bottom: 20px;
        max-width: calc(100% - 60px);
    }

    .carousel-caption h1 {
        font-size: 22px;
        margin-bottom: 10px;
}
    }

.carousel-caption p {
    font-size: 14px;
     margin-bottom: 12px;
    }

    .menu-content {
        padding: 80px 30px;
    }
.btn-white {
    
    padding: 5px 15px;
  
    font-size: 12px;
}
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background-image: url(../images/bgbrands.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
}

.brands-intro h2 {

    margin-bottom: 30px;

}

.brands-intro p {
    margin-bottom: 30px;
}

.brands-carousel-wrapper {
    position: relative;
}

.brand-card {
    position: relative;
    height:360px;
    overflow: hidden;
    cursor: pointer;
}

.brandimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-card:hover .brandimg {
    transform: scale(1.05);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background 0.3s ease;
}

.brand-card:hover .brand-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.brand-overlay img {
    width: auto !important;
    max-width: 50%;
}

.brand-overlay .subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-description {
    padding: 20px 0;
}

.brand-description p {
    font-size: 16px;
    color: #676767;
    font-weight: 500;
    margin-bottom: 15px;
}

.find-out-more {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.find-out-more::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.find-out-more:hover {
    color: #000;
}

.find-out-more:hover::after {
    margin-left: 15px;
}



.brands-carousel-wrapper .owl-nav {
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    width: calc(100% + 160px);
    left: -80px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.bleed-right {
    margin-right: calc(-50vw + 50%);
}

.brands-carousel-wrapper .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.brands-carousel-wrapper .owl-nav button:hover {
    transform: scale(1.1);
}

.brands-carousel-wrapper .owl-nav button span {
    font-size: 1.5rem;
    color: #000;
}

.brands-carousel-wrapper .owl-dots {
    margin-top: 30px;
    text-align: left;
}

.brands-carousel-wrapper .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    background: transparent;
    margin: 0 5px;
    display: inline-block;
}


.brands-carousel-wrapper .owl-stage {
    padding-left: 0px !important;
}


.brands-carousel-wrapper .owl-dots .owl-dot.active {
    background: #000;
}

/* Right edge extension */
.brands-carousel-container {
    padding-right: 0;
}

@media (min-width: 992px) {
    .brands-carousel-container {
        padding-right: 0 !important;
        margin-right: calc(-50vw + 50%);
    }
}

@media (max-width: 991px) {
    .brands-carousel-wrapper .owl-nav {
        position: static;
        width: 100%;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }
}

.titles {
    font-family: 'Baskervville', serif;
    font-size: 34px;
    color: #000;
}

.bodytext {
    font-size: 17px;
    color: #676767;
    font-weight: 500;
}

.about-section {
    background: #000;
    padding: 100px 0;
}

.whitefont {
    color: #fff !important;
}


.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt50 {
    margin-top: 50px;
}

.mb50 {
    margin-bottom: 50px;
}


.flexo {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.service-card {
    position: relative;

    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}


.service-card img {
    width: 100%;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.6);
}



.service-description {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

/* Looking Ahead Section with Parallax */
.looking-ahead-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;

    background-image: url('../images/paralx.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;


}



.looking-ahead-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px;
    max-width: 800px;
}


.looking-ahead-content .bodytext {

    margin-bottom: 40px;
    margin-top: 40px;
}


@media (max-width: 991px) {

    .parallax-bg {
        background-attachment: scroll;
    }
    
    
}

.section-featured {
    padding: 100px 0;

}


.private-experiences-section {
    padding: 100px 0;
}



.experience-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.experience-card {
    margin-bottom: 40px;
}

.experience-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

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




.experience-content .bodytext {

    margin-bottom: 25px;
}

.find-out-link {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.find-out-link::after {
    content: '+';
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    transition: margin-left 0.3s ease;
}

.find-out-link:hover {
    color: #000;
}

.find-out-link:hover::after {
    margin-left: 15px;
}

.flexr {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .experience-card {
        max-width: 100%;
    }


    .experience-content .title {
        font-size: 1.75rem;
    }

    .experience-content {
        padding: 30px 25px;
    }
}

.padright {
    padding-right: 100px;
    position: sticky;
    top: 120px;
}



.looking-ahead-section2 {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;

    overflow: hidden;
    color: white;

    background-image: url('../images/paralax2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;


}

.looking-ahead-section2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;

}

.looking-ahead-section2 .looking-ahead-content {
    max-width: auto;
    text-align: left;

}

footer {
    padding: 100px 0 30px;
    background-color: #000;
    border-top: 1px solid #fff;
}

.buttonsfooter {
    margin-top: 40px;
}

.btn-black2 {
    display: inline-block;
    padding: 12px 45px;
    border: 1px solid white;
    color: #000;
    background-color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;

    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-black2:hover {
    background: #000;
    color: #fff;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right {
    text-align: right;
}

.footer-nav a {
    font-size: 17px;
    color: #676767;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ccc;
}

footer .social-icons {
    margin-top: 0;
}

@media (max-width: 991px) {
    footer {
        text-align: center;
    }

    footer .logoimage {
        margin-bottom: 30px;

    }

    .footer-right {
        text-align: center;
        margin: 30px 0;
    }

    .bodytext.text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .mt33 {
        margin-top: 30px;
    }

    footer .mt50 {
        margin-top: 20px;
    }

    .menu-nav a,
    .menu-nav .submenu a {
        font-size: 18px;
    }
}

.animate-paragraph {
    opacity: 1;
    overflow: hidden;
}

.line {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

[data-animation="fade-slide"] {
    opacity: 0;
    transform: translateY(40px);
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Your animation styles */
.animate-paragraph .line {
    opacity: 0;
    transform: translateY(20px);
}

[data-animation="fade-slide"] {
    opacity: 0;
    transform: translateY(40px);
}

.about-hero {
    height: 100vh;
    position: relative;
    background: url(../images/abouthero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;

}

.contact-hero {
    height: 100vh;
    position: relative;
    background: url(../images/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.career-hero {
    height: 100vh;
    position: relative;
    background: url(../images/careerhero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 42px;
    color: #fff;
    font-family: baskervville, serif;
}

.about-section2 {

    padding: 100px 0;
}

.paralaxabout {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;

    background-image: url('../images/paralaxabout.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.yearfont {
    font-size: 32px;
    color: #fff;
    font-family: baskervville, serif;
}

.form-label {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cform,
.cform:focus {
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.cform:focus {
    box-shadow: none;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.cform::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

textarea.cform {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #f0f0f0;
    color: #000000;
    transform: translateY(-2px);
}

.contact-section {
    background-color: #000;
    background-image: url(../images/g.svg);
    background-position: -5% 85%;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.whitesection {
    padding: 100px 0;
    background-color: #fff;
}

.flexlocation {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    width: 340px;
}

.loc1 {
    color: #676767;
}

.blacksection {
    padding: 100px 0;
    background-color: #000;
}

.radimg {
    border-radius: 25px;
}

.hero-section2 {
    min-height: 500px;
    height: 70vh;
    display: flex;
    position: relative;
}

/* Left Side - Logo Section */
.left-section {
    width: 50%;
	    background: linear-gradient(135deg, #38432E 0%, #A45E2C 100%);

    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.left-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

.logo-container {
    position: relative;
    z-index: 2;
    padding-left: calc((100vw * 0.4 - 540px * 0.4) / 2 + 15px);
}

@media (min-width: 1400px) {
    .logo-container {
        padding-left: calc((100vw * 0.4 - 660px * 0.4) / 2 + 15px);
    }
}

@media (max-width: 1200px) {
    .logo-container {
        padding-left: calc((100vw * 0.4 - 480px * 0.4) / 2 + 15px);
    }
}

@media (max-width: 992px) {
    .logo-container {
        padding-left: calc((100vw * 0.4 - 360px * 0.4) / 2 + 15px);
    }
}

.logo-wrapper {
    text-align: left;
}

.logo-main {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 15px 25px;
    position: relative;
}

.logo-main::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: #5bb8d9;
    border-radius: 2px;
}




/* Right Side - Video Section */
.right-section {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container iframe {
   position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    transform: translate(-50%, -50%) scale(3);

    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 85%, rgba(0, 0, 0, 0.8) 100%) z-index: 1;
}

.right-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.right-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.right-logo-text span {
    color: #5bb8d9;
}

.right-logo-divider {
    width: 3px;
    height: 60px;
    background: #c9a227;
    margin: 0 auto 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section2 {
        flex-direction: column;
        height: auto;
    }

    .left-section,
    .right-section {
        width: 100%;
    }

    .left-section {
        min-height: 300px;
        justify-content: center;
    }

    .logo-container {
        padding-left: 0;
        display: flex;
        justify-content: center;
    }

    .logo-wrapper {
        text-align: center;
    }

    .right-section {
        min-height: 750px;
    }

    .logo-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 2rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
    }

    .logo-main {
        padding: 12px 18px;
    }
}

.clashdisplay {
    font-family: 'clashdisplay', sans-serif !important;
}

.sec2inner {
    padding: 90px 0;
    background: #F5EACF;
}

.pinner1 {
    color: #000;
    font-size: 34px;
}

.pinner2 {
    color: #000;
    font-size: 16px;
    margin-top: 20px;
}

/* Butlers Carousel Section */
.butlers-carousel-section {
    width: 100%;
}

.butlers-carousel-section .carousel {
    width: 100%;
}

.butlers-carousel-section .carousel-inner {
    width: 100%;
}

.butlers-carousel-section .carousel-item {
    width: 100%;
}

.butlers-carousel-slide {
    min-height: 500px;
    height: 85vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Butlers Centered Dots Styling */
.butlers-carousel-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    justify-content: center;
}

.butlers-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 8px;
    opacity: 1;
    transition: all 0.3s ease;
}

.butlers-carousel-section .carousel-indicators button.active {
    background-color: #c9a227;
    border-color: #c9a227;
    transform: scale(1.2);
}

.butlers-carousel-section .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Butlers Carousel Responsive */
@media (max-width: 768px) {
    .butlers-carousel-slide {
        min-height: 400px;
        height: 400px;
    }

    .butlers-carousel-section .carousel-indicators {
        bottom: 20px;
    }

    .butlers-carousel-section .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}

#butlersCarousel {
    height: auto !important;
}

#butlersCarousel .carousel-item:after {
    display: none;
}

.sec3 {
    background: #9A5C2C;
    padding: 90px 0;
}

.paternsimage {
    margin-bottom: 90px;
}

.btninner {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 20px;
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 20px;
}

.btninner svg * {
    fill: #fff !important;
}

.btninner:hover {
    background: #F5EACF;
    color: #9A5C2C;

}

.btninner:hover svg * {
    fill: #9A5C2C !important;
}

.btntext {
    color: #fff;
    margin-top: 8px;
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
}

.sec4 {
    background: #F5EACF;
    padding: 90px 0;
}

/* Testimonials Section */
.butlers-testimonials-section {
    background-color: #F5EACF;
    padding: 80px 0;
    position: relative;
}

.butlers-testimonials-title {

    font-size: 2.5rem;
    font-family: clashdisplay, sans-serif;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 50px;

}

.butlers-testimonials-wrapper {
    position: relative;
    padding: 0 60px;
}

/* Testimonial Card */
.butlers-testimonial-card {
    background-color: transparent;
    border: 1px solid #c9a227;
    border-radius: 0;
    padding: 30px;
    height: 100%;
}

.butlers-testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.butlers-testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.butlers-testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.butlers-testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.1em;
    margin: 0;
}

.butlers-testimonial-stars {
    display: flex;
    gap: 3px;
}

.butlers-testimonial-stars .star {
    font-size: 1.2rem;
    color: #c9a227;
}

.butlers-testimonial-stars .star.empty {
    color: #c9a227;
    opacity: 0.3;
}

.butlers-testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

/* Carousel Controls */
.butlers-testimonials-section .carousel-control-prev,
.butlers-testimonials-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: transparent;
}

.butlers-testimonials-section .carousel-control-prev {
    left: 0;
}

.butlers-testimonials-section .carousel-control-next {
    right: 0;
}

.butlers-testimonials-section .carousel-control-prev-icon,
.butlers-testimonials-section .carousel-control-next-icon {
    display: none;
}

.butlers-testimonials-section .carousel-control-prev::after,
.butlers-testimonials-section .carousel-control-next::after {
    font-size: 2rem;
    color: #8a8a8a;
    font-weight: 300;
}

.butlers-testimonials-section .carousel-control-prev::after {
    content: '‹';
}

.butlers-testimonials-section .carousel-control-next::after {
    content: '›';
}

.butlers-testimonials-section .carousel-control-prev:hover::after,
.butlers-testimonials-section .carousel-control-next:hover::after {
    color: #2c2c2c;
}

/* Carousel Indicators (Dots) */
.butlers-testimonials-section .carousel-indicators {
    position: relative;
    bottom: 0;
    margin-top: 40px;
    left: inherit;
    margin-bottom: 0;
    justify-content: center;
}

.butlers-testimonials-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #8a8a8a;
    margin: 0 6px;
    opacity: 1;
    transition: all 0.3s ease;
}

.butlers-testimonials-section .carousel-indicators button.active {
    background-color: #AD8F6C;
    border-color: #AD8F6C;
}

/* Responsive */
@media (max-width: 991px) {
    .butlers-testimonials-wrapper {
        padding: 0 40px;
    }

    .butlers-testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .butlers-testimonials-section {
        padding: 50px 0;
    }

    .butlers-testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .butlers-testimonials-wrapper {
        padding: 0 30px;
    }

    .butlers-testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .butlers-testimonial-avatar {
        width: 60px;
        height: 60px;
    }
}

#butlersTestimonialsCarousel {
    height: auto !important;
}

#butlersTestimonialsCarousel .carousel-item:after {
    display: none;
}


.postid-171 .left-section{
    background: #90634F !important;
}

.postid-171 .pinner1, .postid-171 .pinner2 {
    color: #90634F !important;
}

.postid-171 .sec3{
    background: #B1664E !important;
}

.postid-171 .paternsimage{
        width: 325px;
}

.partx{
    max-width:100%;
}
.postid-171 .sec4{
    background: #F5EACF !important;
}

.postid-174 .left-section{
    background: #0B2B26 !important;
}

.postid-174 .sec2inner{
    background: #A7A791 !important;
}

.postid-174 .pinner1, .postid-174 .pinner2 {
    color: #fff !important;
}

.postid-174 .sec3{
    background: #0B2B26 !important;
}   

.postid-174 .sec4{
    background: #A7A791 !important;
}   

.postid-176 .left-section{
    background: #2D3B28 !important;
}
.postid-176 .pinner1, .postid-176 .pinner2 {
    color: #D7C6A5 !important;
}
.postid-176 .sec3{
    background: #2D3B28 !important;
}   
.postid-176 .sec4{
    background: #D7C6A5 !important;
}  


.postid-176 svg * {
    fill: #D7C6A5;
}

.postid-176 .btntext {
    color: #fff !important;
}


/* Social Icons */
.postid-179 .sec2inner{
    background: #FAF3E9 !important;
}

.postid-179 .sec2inner{
    background: #FAF3E9 !important;
}


.postid-179 .left-section{
    background: #0D4B6D !important;
}
.postid-179 .pinner1, .postid-179 .pinner2 {
    color: #273332 !important;
}
.postid-179 .sec3{
    background: #0D4B6D !important;
}   



.postid-179 svg * {
    fill: #BA8748;
}

.postid-179 .btntext {
    color: #fff !important;
}

/* Social Icons */
.postid-183 .sec2inner{
    background: #F7F6F2 !important;
}

.postid-183 .left-section{
    background: #24372C !important;
}
.postid-183 .pinner1, .postid-183 .pinner2 {
    color: #24372C !important;
}
.postid-183 .butlers-testimonials-section{
    background: #F5F4F0 !important;
}   
.postid-183 .sec3{
    background: #24372C !important;
}

.postid-183 .sec4{
   display:none
}

.postid-176 .butlers-testimonials-section{
 background:#D7C6A5;
}



/* Social Icons */
.postid-188 .sec2inner{
    background: #D6D1C1 !important;
}

.postid-188 .left-section{
    background: #000 !important;
}
.postid-188 .sec4{
     background: #d6d1c1 !important;
}
.postid-188 .pinner1, .postid-188 .pinner2 {
    color: #000 !important;
}
.postid-188 .sec3{
    background: #000 !important;
}   


.postid-179 .butlers-testimonials-section{
    background: #FAF3E9 !important;
}   
.postid-179 .sec4{
    background:#FAF3E9;
}

@media (max-width: 767px) {
    #mainCarousel .carousel-item, #mainCarousel{
        height:300px !important;
    }
    .brands-section{
        
    padding:50px 0;
    }
    .bodytext {
    font-size: 15px;
    }
    
    .titles {
   
    font-size: 26px;
    margin-bottom: 18px !important;
    
    }
    .looking-ahead-section2 {
 
    min-height: 325px;

}
.footer-nav {
 
    display: inline-flex;
    gap: 10px;
}
.hero-title{
    font-size:30px;
}
.hero-section{

    max-height:420px !important;
}
.paralaxabout {
   
    min-height: 365px;
}
.about-section2 {
    padding: 50px 0;
}
.max20{
    max-width:200px;
}
.video-container iframe {
  
    transform: translate(-50%, -50%) scale(1)
}
.pinner1{
    margin-top:20px;
    text-align:center;
}
.bbc-image{
    display:block;
    margin:auto;
}
.pinner2{
text-align:center;    
}
.btninner svg{
    height:25px !important;
    width:25px !important;
}

[data-animation="fade-slide"] {
    opacity: 1;
    transform: translateY(0);
}
.animate-paragraph .line {
    opacity: 1;
    transform: translateY(0);
}

}
