 
      :root {
    --brand-red: #C1121F;
    --brand-red-hover: #e61a27;
    --brand-silver: #333333;

    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-light-dark: #f8f8f8;

    --text-light: #000000;
    /* --text-muted: #666666; */
        --text-muted: #000000;


    /* --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); */
      /* --font-serif: Arial, sans-serif;
    --font-sans: Arial, sans-serif;

    --transition: 0.3s ease; */
     /* --font-serif: sans-serif;
    --font-sans: sans-serif;

    --transition: 0.3s ease; */
      --font-serif: Georgia, "Times New Roman", serif;
    --font-sans: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    background: var(--bg-dark);
    font-family: var(--font-sans);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: #222;
}

.section-tag {
    color: var(--brand-red);  
  

    letter-spacing: 4px;
  font-size: 35px; 
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(193, 18, 31, .4);
}

.section-heading .section-tag {
    justify-content: center;
}

.section-heading .section-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(193, 18, 31, .4);
}

/* ==========================================================
HEADER
========================================================== */

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* ==========================================================
TOP BAR
========================================================== */

.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.top-left {
    display: flex;
    gap: 35px;
}

.top-left span i {
    color: var(--brand-red);
    margin-right: 8px;
}

/* ==========================================================
MAIN HEADER
========================================================== */

.main-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #ececec;
    transition: background .4s ease,
                border-color .4s ease,
                backdrop-filter .4s ease,
                padding .4s ease;
    width: 100%;
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    background: #ffffff;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #ececec;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    animation: slideDown .5s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: height .4s ease;
}

.main-header.scrolled .header-flex {
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 2001;
}

.logo-img {
    height: 75px;
    width: auto;
    border-radius: 50%;
    border: 1px solid #e4e4e4;
    padding: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    color: #333;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--brand-red);
}

.book-btn {
    background: #fff;
    color: #222;
    padding: 14px 32px;
    border: 1px solid var(--brand-red);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 400;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--brand-red);
    transition: var(--transition);
    z-index: -1;
}

.book-btn:hover::before {
    width: 100%;
}

.book-btn:hover {
    color: #fff;
    border-color: var(--brand-red);
}

/* ==========================================================
MOBILE MENU
========================================================== */

.hamburger-btn {
    display: none;
    font-size: 24px;
    color: #222;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.hamburger-btn:hover {
    color: var(--brand-red);
}

.close-menu-btn {
    display: none;
}

.offcanvas-overlay {
    display: none;
}

.mobile-book-btn {
    display: none;
}
        /* ==========================================================================
           HERO SLIDER
           ========================================================================== */
            /*=====================================
Hero Slider
======================================*/

.hero-slider{
    height:100svh;
    min-height:700px;
}

.hero-slider .swiper,
.hero-slider .swiper-slide{
    height:100%;
}

.swiper-slide{
    position:relative;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.slide-1{
    /* background-image:url("../images/banner.jpeg"); */
     background-image:url("../images/banner/banner1.avif");
}

.slide-2{
    /* background-image:url("../images/newimg/h4.jpeg"); */
     background-image:url("../images/banner/banner2.avif");
}

.slide-3{
    /* background-image:url("../images/newimg/h1.jpeg"); */
     background-image:url("../images/banner/banner3.avif");
}

.slide-4{
    /* background-image:url("../images/newimg/ab.jpeg"); */
     background-image:url("../images/banner/banner4.avif");
}

.slide-5{
    /* background-image:url("../images/newimg/h3.jpeg"); */
     background-image:url("../images/banner/banner5.avif");
}

/* Light Luxury Overlay */

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,0,0,.60) 0%,
        rgba(0,0,0,.25) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
    text-align:center;
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp 1.5s forwards .8s;
}

@keyframes fadeUp{

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

}

.hero-content h1{
    color:#fff;
    font-size:90px;
    line-height:1.05;
    margin:15px 0 45px;
    font-weight:400;
    letter-spacing:-1px;
    text-shadow:0 4px 20px rgba(0,0,0,.35);
}

.btn-primary{
    display:inline-block;
    background:var(--brand-red);
    color:#fff;
    padding:18px 45px;
    font-size:26px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:500;
    border-radius:2px;
    box-shadow:0 10px 30px rgba(193,18,31,.20);
    transition:var(--transition);
}

.btn-primary:hover{
    background:var(--brand-red-hover);
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(193,18,31,.30);
}

/* Swiper Pagination */

.swiper-pagination-bullet{
    width:8px;
    height:8px;
    background:rgba(255,255,255,.55);
    transition:var(--transition);
}

.swiper-pagination-bullet-active{
    background:var(--brand-red);
    transform:scale(1.4);
}

/* Navigation */

.swiper-button-prev,
.swiper-button-next{
    width:55px;
    height:55px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;
    color:#fff;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    transition:var(--transition);
}

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

.swiper-button-prev:hover,
.swiper-button-next:hover{
    /* background:var(--brand-red); */
        background:white;

    border-color:var(--brand-red);
    color:#fff;
}
        /* ==========================================================================
           ABOUT SECTION
           ========================================================================== */
            /*=====================================
ABOUT SECTION
======================================*/
/*==================================================
                ABOUT SECTION
==================================================*/

.about-luxury{
    padding:80px 0;
    background:#fff;
    position:relative;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* Left */

.about-left{
    margin-top:-40px;
}

.about-image{
    position:relative;
    padding-right:60px;
    padding-bottom:40px;
}

.about-image::before{
    content:"";
    position:absolute;
    top:40px;
    left:40px;
    right:0;
    bottom:0;
    border:1px solid rgba(193,18,31,.25);
    z-index:1;
}

.about-image img{
    position:relative;
    z-index:2;
    width:100%;
    display:block;
    transition:.4s;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.about-image:hover img{
    transform:scale(1.02);
}

.experience-box{
    position:absolute;
    bottom:10px;
    right:10px;
    background:#fff;
    border:1px solid rgba(193,18,31,.25);
    padding:40px 45px;
    text-align:center;
    z-index:5;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.experience-box h2{
    font-size:60px;
    line-height:1;
    margin-bottom:5px;
    color:var(--brand-red);
}

.experience-box span{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:3px;
    color:#666;
}

/* Features */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
    padding:25px 0;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#333;
    font-size:15px;
    font-weight:600;
}

.feature-item i{
    color:var(--brand-red);
    font-size:10px;
}

/* Right */

.about-content h2{
    font-size:55px;
    line-height:1.1;
    margin-bottom:30px;
    color:#222;
}

.about-content p{
    color:#000;
    margin-bottom:25px;
    font-size:20px;
    font-weight:400;
    line-height:1.8;
    text-align:justify;
}

/*==================================================
              RESPONSIVE
==================================================*/

@media (max-width:991px){

    .about-grid{
        display:flex;
        flex-direction:column;
        gap:35px;
    }

    /* Heading first */
    .about-content{
        order:1;
    }

    /* Image second */
    .about-left{
        order:2;
        margin-top:0;
        width:100%;
    }

    .about-content h2{
        font-size:38px;
    }

    .about-content p{
        font-size:17px;
    }

    .about-features{
        grid-template-columns:repeat(2,1fr);
    }

    .experience-box{
        padding:30px;
    }

    .experience-box h2{
        font-size:45px;
    }

}

@media (max-width:767px){

    .about-luxury{
        padding:60px 0;
    }

    .about-grid{
        gap:30px;
    }

    .about-image{
        padding-right:20px;
        padding-bottom:20px;
    }

    .about-image::before{
        top:20px;
        left:20px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:24px;
        font-weight: 500;
        line-height:1.7;
    }

    .about-features{
        grid-template-columns:1fr;
        gap:15px;
        margin-top:25px;
    }

    .experience-box{
        right:0;
        bottom:0;
        padding:20px;
    }

    .experience-box h2{
        font-size:34px;
    }

    .experience-box span{
        font-size:14px;
        font-weight:400;
        letter-spacing:2px;
    }
}

/* .about-luxury{
    padding:80px 0;
    background:#ffffff;
    position:relative;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
    align-items:center;
}



.about-image{
    position:relative;
    padding-bottom:40px;
    padding-right:60px;
}

.about-image::before{
    content:'';
    position:absolute;
    top:40px;
    left:40px;
    right:0;
    bottom:0;
    border:1px solid rgba(193,18,31,.25);
    z-index:1;
}

.about-image img{
    position:relative;
    z-index:2;
    width:100%;
    filter:none;
    transition:var(--transition);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.about-image:hover img{
    transform:scale(1.02);
}

.experience-box{
    position:absolute;
    bottom:10px;
    right:10px;
    background:#ffffff;
    border:1px solid rgba(193,18,31,.25);
    color:#222;
    padding:45px 50px;
    text-align:center;
    z-index:3;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.experience-box h2{
    font-size:60px;
    line-height:1;
    margin-bottom:5px;
    color:var(--brand-red);
}

.experience-box span{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:400;
    color:#666;
}

.about-content h2{
    font-size:55px;
    line-height:1.1;
    margin-bottom:30px;
    color:#222;
}

.about-content p{
        color:#000000;

    margin-bottom:30px;
    font-size:23px;
    font-weight:400;
    line-height:1.8;
    
        text-align: justify;
}

 .about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin:45px 0;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
    padding:30px 0;
} 



.feature-item{
    color:#333;
    font-size:13px;
    letter-spacing:1px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
}

.feature-item i{
    color:var(--brand-red);
    font-size:10px;
}  */

        /* ==========================================================================
           CRAFTSMANSHIP & SERVICES
           ========================================================================== */

/*=====================================
CRAFTSMANSHIP & SERVICES
======================================*/

.craftsmanship-section,
.services-section{
    padding:80px 0;
    background:#ffffff;
}

.services-section{
    background:#f8f8f8;
}

.section-heading{
    text-align:center;
    margin-bottom:90px;
}

.section-heading h2{
    font-size:55px;
    margin-top:15px;
    color:#000000;
    font-weight:500;
}

.craft-grid,
.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.craft-card,
.service-card{
    background:#ffffff;
    border:1px solid #ececec;
    transition:var(--transition);
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.craft-card:hover,
.service-card:hover{
    transform:translateY(-12px);
    border-color:rgba(193,18,31,.30);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.craft-card img,
.service-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    filter:none;
    transition:var(--transition);
}

.craft-card:hover img,
.service-card:hover img{
    transform:scale(1.05);
}

.craft-content,
.service-content{
    padding:40px 30px;
    text-align:center;
    position:relative;
    background:#ffffff;
    z-index:2;
}

.craft-content h3,
.service-content h3{
    font-size:30px;
    margin-bottom:15px;
        font-weight:800;

    color:#000000;
    transition:var(--transition);
}

.craft-card:hover h3,
.service-card:hover h3{
    color:var(--brand-red);
}

.craft-content p,
.service-content p{
    color:#000000;
    font-size:26px;
    font-weight:500;
    line-height:1.8;
}
        /* ==========================================================================
           INTERNATIONAL SECTION
           ========================================================================== */
            /*=====================================
INTERNATIONAL SECTION
======================================*/

.international-section{
    padding:80px 0;
    background:#ffffff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.international-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:120px;
    align-items:center;
}

.international-content h2{
    font-size:58px;
    margin:20px 0 35px;
    color:#000000;
    line-height:1.1;
    font-weight:400;
}

.international-content p{
    color:#000000;
    margin-bottom:30px;
    font-size:26px;
    font-weight:500;
    line-height:1.8;
}

.international-image{
    position:relative;
}

.international-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:2px;
    filter:none;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

/* Light overlay instead of black */

.international-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(255,255,255,.15),
        rgba(255,255,255,0)
    );
    pointer-events:none;
}

        /* ==========================================================================
           TESTIMONIALS SLIDER (PREMIUM SPLIT LAYOUT)
           ========================================================================== */
            /*=====================================
TESTIMONIALS
======================================*/
/* 
.testimonials-section{
    padding:80px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.testimonialSwiper{
    width:100%;
    padding:20px 0 80px;
    position:relative;
}

.testimonialSwiper .swiper-slide{
    height:auto;
}

.premium-review-card{
    display:flex;
    align-items:center;
    background:#ffffff;
    border:1px solid #e8e8e8;
    padding:35px;
    gap:35px;
    transition:var(--transition);
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.premium-review-card:hover{
    border-color:rgba(193,18,31,.35);
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.review-image{
    flex:0 0 35%;
    position:relative;
    overflow:hidden;
    border-radius:4px;
    height:100%;
    min-height:280px;
}

.review-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    filter:none;
    transition:var(--transition);
}

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

.review-text{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.review-text i{
    font-size:28px;
    color:rgba(193,18,31,.25);
    margin-bottom:20px;
}

.review-text p{
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-style:italic;
    color:#444;
    line-height:1.7;
    margin-bottom:25px;
}

.review-text h4{
    color:var(--brand-red);
    font-size:18px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:5px;
}

.review-text span{
    color:#777;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.testimonial-controls{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin-top:20px;
}

.testi-btn-prev,
.testi-btn-next{
    width:45px;
    height:45px;
    border:1px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#333;
    cursor:pointer;
    transition:var(--transition);
    background:#fff;
}

.testi-btn-prev:hover,
.testi-btn-next:hover{
    background:var(--brand-red);
    border-color:var(--brand-red);
    color:#fff;
}

.testimonial-pagination{
    position:relative;
    width:auto!important;
    bottom:auto!important;
}

.testimonial-pagination .swiper-pagination-bullet{
    background:#ccc;
    width:8px;  
    height:8px;
    margin:0 6px!important;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    background:var(--brand-red);
    transform:scale(1.5);
} */
        /* ==========================================================================
           CTA SECTION
           ========================================================================== */
            /*=====================================
CTA SECTION
======================================*/

.cta-section{
    padding:70px 0;
    background:url('../images/newimg/g4.png') center center/cover fixed;
    position:relative;
    text-align:center;
}

.cta-section::before{
    content:'';
    position:absolute;
    inset:0;

    /* Overlay thoda halka */
    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.55)
    );
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:750px;
    margin:auto;
}

.cta-content h2{
    font-size:55px;
    margin:20px 0 30px;
    color:#fff;
    line-height:1.1;
    font-weight:400;
}   

.cta-content p{
    color:rgba(255,255,255,.85);
    margin-bottom:50px;
    font-size:24px;
    font-weight:500;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

/* WhatsApp Button */

.whatsapp-btn{
    border:1px solid rgba(255,255,255,.6) !important;
    color:#fff !important;
    background:transparent;
}

.whatsapp-btn:hover{
    background:#25D366;
    border-color:#25D366 !important;
    color:#fff !important;
}

        /* ==========================================================================
           FOOTER
           ========================================================================== */
            .footer{
    background:#ffffff;
    padding:55px 0 0;
    border-top:3px solid var(--brand-red);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:70px;
    padding-bottom:40px;
}

.footer-about p,
.footer-contact p{
    color:#000000;
    font-size:19px;
    font-weight:500;
    line-height:1.9;
}

.footer-links h4,
.footer-contact h4{
    color:#000000;
    font-size:23px;
    font-weight:500;
    margin-bottom:30px;
    letter-spacing:2px;
    font-weight:500;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:#000000;
    font-size:18px;
    transition:var(--transition);
}

.footer-links ul li a:hover{
    color:var(--brand-red);
    padding-left:8px;
}

.footer-contact p{
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-contact i{
    color:var(--brand-red);
}

.footer-social{
    margin-top:35px;
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    color:#333;
    border-radius:50%;
    transition:var(--transition);
}

.footer-social a:hover{
    background:var(--brand-red);
    border-color:var(--brand-red);
    color:#fff;
    transform:translateY(-3px);
}

.footer-bottom{
    border-top:1px solid #ececec;
    padding:30px 0;
    text-align:center;
    background:#fafafa;
}

.footer-bottom p{
    color:#000000;
    font-size:20px;
    font-weight: 500;
    letter-spacing:1px;
    text-transform:uppercase;

}

.google-review-section{

padding:80px 20px;
background:#fff;

}


.review-title{

text-align:center;
margin-bottom:50px;

}


.review-title span{

color:#d90429;
letter-spacing:3px;
font-size:20px;
font-weight: 500;

}


.review-title h2{

font-size:40px;
color:#111;

}



.reviewSwiper{

max-width:1100px;
padding:20px;

}



.review-card{

background:#fff;

border:1px solid #eee;

border-top:5px solid #d90429;

padding:35px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}



.review-top{

display:flex;
align-items:center;
gap:15px;

}



.review-top img{

width:45px;
height:45px;

}



.review-top h4{

margin:0;
font-size:20px;
font-weight: 500;
}


.stars{

color:#fbbc04;
font-size:20px;

}


.review-card p{

color:#000000;
line-height:1.7;
margin:25px 0;
font-size:20px;
font-weight:500;


}


.review-card h5{

color:#d90429;
margin:0;

}


.swiper-button-next,
.swiper-button-prev{

color:#d90429 !important;

}


.swiper-pagination-bullet-active{

background:#d90429 !important;

}


        /* ==========================================================================
   RESPONSIVE DESIGN
========================================================================== */

@media(max-width:1200px){

    .premium-review-card{
        flex-direction:column;
        text-align:center;
        padding:30px;
    }

    .review-image{
        width:100%;
        flex:none;
        min-height:300px;
    }

    .review-text i{
        margin:0 auto 15px;
    }

}

@media(max-width:1024px){

    .about-grid,
    .international-grid{
        grid-template-columns:1fr;
        gap:80px;
    }

    .craft-grid,
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:70px;
    }

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

}

@media(max-width:768px){

    .top-bar{
        display:none;
    }

    .main-header{
        position:absolute;
    }

    .header-flex{
        height:80px;
        flex-direction:row;
        justify-content:space-between;
        padding:15px 0;
    }

    .main-header.scrolled .header-flex{
        height:70px;
    }

    .desktop-book-btn{
        display:none;
    }

    .hamburger-btn{
        display:block;
        color:#222;
    }

    .main-nav{

        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        max-width:85%;
        height:100vh;

        background:#ffffff;
        backdrop-filter:blur(15px);

        z-index:2000;

        display:flex;
        flex-direction:column;

        padding:100px 40px;

        transition:right .4s ease;

        box-shadow:-10px 0 40px rgba(0,0,0,.12);

        border-left:1px solid #e8e8e8;

    }

    .main-nav.active{
        right:0;
    }

    .nav-menu{

        flex-direction:column;
        gap:30px;
        align-items:flex-start;

    }

    .nav-menu a{

        font-size:20px;
        font-weight:500;
        color:#000000;

    }

    .close-menu-btn{

        display:block;

        position:absolute;

        top:25px;
        right:30px;

        font-size:28px;

        color:#222;

        cursor:pointer;

    }

    .close-menu-btn:hover{

        color:var(--brand-red);

    }

    .mobile-book-btn{

        display:inline-block;
        margin-top:40px;
        width:100%;
        text-align:center;

    }

    .offcanvas-overlay{

        display:block;

        position:fixed;
        inset:0;

        background:rgba(255,255,255,.45);

        backdrop-filter:blur(3px);

        z-index:1500;

        opacity:0;
        visibility:hidden;

        transition:.4s;

    }

    .offcanvas-overlay.active{

        opacity:1;
        visibility:visible;

    }

    .craft-grid,
    .services-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1,
    .about-content h2,
    .section-heading h2,
    .international-content h2{

        font-size:45px;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .testimonials-section{

        padding:100px 0;

    }

    .premium-review-card{

        padding:25px;
        gap:20px;

    }

    .review-image{

        min-height:220px;

    }

    .review-text i{

        font-size:22px;
        margin-bottom:10px;

    }

    .review-text p{

        font-size:18px;
        margin-bottom:15px;

    }

    .review-text h4{

        font-size:16px;

    }

    .testimonial-controls{

        gap:15px;

    }

    .testi-btn-prev,
    .testi-btn-next{

        width:40px;
        height:40px;

    }

}

@media(max-width:640px){

    .container{
        width:min(92%,1200px);
    }

    .hero-slider{
        min-height:620px;
    }

    .hero-content{

        padding:0 5%;
        text-align:center;

    }

    .hero-content h1{

        font-size:42px;

    }

    .about-luxury,
    .craftsmanship-section,
    .services-section,
    .international-section,
    .testimonials-section,
    .cta-section{

        padding:100px 0;

    }

    .about-grid,
    .international-grid{

        gap:50px;

    }

    .about-image{

        padding:0 0 25px;

    }

    .about-image::before{

        top:20px;
        left:20px;

    }

    .about-features{

        grid-template-columns:1fr;
        gap:15px;

    }

    .craft-card img,
    .service-card img{

        height:280px;

    }

    .cta-buttons{

        flex-direction:column;
        align-items:center;

    }

    .footer-grid{

        gap:40px;

    }

}

@media(max-width:480px){

    .logo-img{

        height:58px;

    }

    .hero-content h1{

        font-size:34px;

    }

    .about-content h2,
    .section-heading h2,
    .international-content h2,
    .cta-content h2{

        font-size:36px;
        font-weight: 700;

    }

    .book-btn{

        padding:12px 24px;
        font-size: 19px;
        font-weight: 500;

    }

    .footer-social{

        flex-wrap:wrap;

    }

}



/*==============================
FABRIC SECTION
==============================*/
/*==================================
FABRIC COLLECTION
==================================*/

.fabric-section{
    padding:80px 0;
    background:#f5f1eb;
    overflow:hidden;
}

/* Section Heading */

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    color:#e61a27;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:20px;
    font-weight:600;
    margin-bottom:12px;
}

.section-title h2{
    font-size:53px;
    font-weight:700;
    color:#1f1f1f;
    margin-bottom:20px;
    line-height:1.2;
}

.section-title p{
    color:#000000;
    line-height:30px;
    font-size:19px;
    font-weight:700;
}

/* Swiper */

.fabricSlider{
    padding-bottom:20px;
}

.fabricSlider .swiper-slide{
    height:auto;
}

/* Card */

.fabric-card{

    background:#fffdf9;

    border-radius:18px;

    overflow:hidden;

    position:relative;

    border:1px solid rgba(230,26,39,.08);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.45s ease;

    display:flex;

    flex-direction:column;

    height:100%;

    cursor:pointer;

}

.fabric-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.fabric-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:4px;

    background:#e61a27;

    transition:.45s;

}

.fabric-card:hover::after{

    width:100%;

}

/* Image */

.fabric-image{

    position:relative;

    overflow:hidden;

    height:450px;

}

.fabric-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .9s ease;

}

.fabric-card:hover .fabric-image img{

    transform:scale(1.08);

}

/* Overlay */

.fabric-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,.05));

    z-index:1;

}

/* Badge */

.fabric-image span{

    position:absolute;

    top:20px;

    left:20px;

    background:#e61a27;

    color:#fff;

    padding:8px 18px;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;

    border-radius:30px;

    z-index:2;

}

/* Content */

.fabric-content{

    padding:30px;

    flex:1;

    display:flex;

    flex-direction:column;

}

.fabric-content h3{

    font-size:28px;

    color:#000000;

    margin-bottom:12px;

    transition:.3s;

}

.fabric-card:hover h3{

    color:#e61a27;

}

.fabric-content p{

    color:#000000;

    line-height:28px;

    margin-bottom:28px;

    flex:1;

}

.fabric-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#e61a27;

    font-weight:600;

    transition:.35s;


    font-size:23px;
}

.fabric-content a i{

    transition:.35s;

}

.fabric-content a:hover{

    letter-spacing:.5px;

}

.fabric-content a:hover i{

    transform:translateX(8px);

}

/*=========================
Responsive
=========================*/

@media(max-width:1200px){

.section-title h2{

font-size:46px;

}

.fabric-image{

height:420px;

}

}

@media(max-width:991px){

.fabric-section{

padding:80px 0;

}

.section-title{

margin-bottom:50px;

}

.section-title h2{

font-size:40px;

}

.fabric-image{

height:360px;

}

.fabric-content{

padding:25px;

}

.fabric-content h3{

font-size:24px;

}

}

@media(max-width:767px){

.fabric-section{

padding:70px 0;

}

.section-title h2{

font-size:32px;

}

.section-title p{

font-size:15px;

line-height:28px;

}

.fabric-image{

height:300px;

}

.fabric-content{

padding:22px;

}

.fabric-content h3{

font-size:22px;

}

}

@media(max-width:575px){

.fabric-section{

padding:60px 0;

}

.fabric-image{

height:260px;

}

.fabric-content{

padding:18px;

}

.section-title h2{

font-size:28px;

}

.section-title span{

font-size:24px;
font-weight: 500;

letter-spacing:2px;

}

.section-title p{

font-size:24px;
font-weight: 500;

line-height:29px;

}

.fabric-content h3{

font-size:25px;
font-weight: 500;

}

.fabric-content p{

font-size:24px;
font-weight: 500;

line-height:24px;

margin-bottom:18px;

}

}



.footer-bottom a{
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.footer-bottom a:hover{
    color: var(--brand-red-hover);
    text-decoration: underline;
}