/* MAIN WRAPPER */

/* ===== SECTION ===== */
.contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 0px 8%;
    font-family: 'Poppins', sans-serif;
}

/* LEFT */
.contact-left{
    flex: 1;
}

/* TITLE */
.contact-title{
    font-size: 36px;
    margin-bottom: 15px;
    color: #411900;
}

/* FORM */
.contact-form{
    width: 100%;
}

/* ROW */
.form-row{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* INPUT + SELECT SAME */
.contact-form input,
.contact-form select{
    flex: 1;
    height: 48px;

    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;

    background: transparent;
    outline: none;
}

/* SELECT FIX */
.contact-form select{
    flex: 1;
    height: 48px;

    padding: 10px;
    padding-right: 20px; /* space for icon */

    border-radius: 6px;
    border: 1px solid #ccc;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;

    background: transparent;
    outline: none;

    appearance: none; /* ❌ remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    /* ✅ CUSTOM DROPDOWN ICON */
    background-image: url("data:image/svg+xml,%3Csvg fill='%23411900' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}


/* BUTTON */
.contact-form button{
    background: #676846;
    color: #fff;
    border: none;

    padding: 20px 55px;
    border-radius: 6px;
    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover{
    transform: translateY(-2px);
    color:white
}

/* CENTER LINE */
.contact-divider{
    width: 1px;
    height: 420px;
    background: linear-gradient(to bottom, transparent, #676846, transparent);
}

/* RIGHT */
.contact-right{
    flex: 1;
    display: flex;
    justify-content: center;
}

/* QR IMAGE */
.contact-right img{
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    margin-top:-0px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-wrapper{
        flex-direction: column;
    }

    .contact-divider{
        width: 80%;
        height: 1px;
    }
}



.contact-right{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-right .contact-title{
    margin-bottom: 20px;
    text-align: center;
}
/*  */
.image-card{
    width: 100%;
    height: 490px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

/* SLIDER */
.slider{
    width: 100%;
    height: 490px; /* fix height */
    position: relative;
    background: #000; /* empty space hide */
}

/* IMAGES */
.slide{
    position: absolute;
    width: 100%;
    height: 100%;

    object-fit: contain; /* 👈 NO CUT */
    object-position: center;

    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease;

    transform: scale(1);
}

/* ACTIVE */
.slide.active{
    opacity: 1;
}



/* ACTIVE IMAGE */
.slide.active{
    opacity: 1;
    transform: scale(1);
}
/*  */

/* SECTION */
.gallery-section{
    padding: 30px 8%;
    background: linear-gradient(135deg, #fffef8, #f3f6e8);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.gallery-title{
      font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-style: italic;
    color: #411900;
    margin-bottom: 60px;
}

/* GRID */
.gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;

    transform-style: preserve-3d;
    transition: all 0.4s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.5s ease;
}

/* 3D HOVER EFFECT 🔥 */
.gallery-item:hover{
    transform: rotateX(8deg) rotateY(-8deg) scale(1.05);
}

.gallery-item:hover img{
    transform: scale(1.1);
}

/* OVERLAY */
.gallery-item::after{
    content: "View";
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FAFBED;
    font-size: 18px;
    letter-spacing: 1px;

    background: rgba(0,0,0,0.4);
    opacity: 0;

    transition: 0.3s;
}

.gallery-item:hover::after{
    opacity: 1;
}

/* MODAL */
.gallery-modal{
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;

    background: rgba(0,0,0,0.9);

    align-items: center;
    justify-content: center;
}

.modal-img{
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;

    animation: zoomIn 0.4s ease;
}

/* CLOSE */
.close-btn{
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ANIMATION */
@keyframes zoomIn{
    from{
        transform: scale(0.7);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}
/*  */

.video-slider{
    width: 92%;
    margin: 40px auto;
    display: flex;
    align-items: center;
    position: relative;
   
}

/* CONTAINER */
.slider-container{
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.slider-track{
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* CARD */
.video-card{
    flex: 0 0 calc((100% - 90px) / 4);
    height: 440px; /* 👈 height increase */
    
    background: #eaeaea;
    border-radius: 10px;

    position: relative;
    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.video-card img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 already correct */
    display: block;
}

/* PLAY BUTTON */
.play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 55px;
    height: 55px;

    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: #000;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;

    transition: 0.3s;
}

/* HOVER */
.video-card:hover .play-btn{
    transform: translate(-50%, -50%) scale(1.15);
}

/* BUTTONS */
.prev, .next{
    background: #676846;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){
    .video-card{
        flex: 0 0 100%;
    }
}

.bs-hero__image-wrap {
    width: 600px;
    height: 600px;
    overflow: hidden;
}

.bs-hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ya contain use kar sakte ho */
    display: block;
}




/**/

.neon-wrapper{
    position: relative;
    width: 400px;
    height: 400px;
    margin: auto;
}

/* VIDEO BACKGROUND */
.neon-bg{
    position: absolute;
    top: -25px;
    left: -25px;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    object-fit: cover;
    z-index: 1;
    border-radius: 20px;

    filter: grayscale(1) brightness(1.2) contrast(1.2);
    mix-blend-mode: screen;
    opacity: 0.7;
}

/* IMAGE BOX */
.image-box{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

/* IMAGE FIT PERFECT */
.image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 perfect fill */
    border-radius: 15px;
}

/* NEON BORDER */
.image-box::before{
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 15px;
    z-index: -1;

    background: linear-gradient(
        90deg,
        #FAFBED,
        #676846,
        #FAFBED,
        #676846
    );

    background-size: 300% 300%;
    filter: blur(10px);

    animation: neonMove 5s linear infinite;
}

/* ANIMATION */
@keyframes neonMove{
    0%{ background-position: 0% 50%; }
    100%{ background-position: 300% 50%; }
}



/**/

.bs-hero__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bs-hero__left{
    width: 50%;
}

.bs-hero__right{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bs-hero__img{
    width: 100%;
    max-width: 670px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}
.philosophy-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.philosophy-left{
    width: 50%;
}

.philosophy-right{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-img{
    width: 100%;
    max-width: 650px !important;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


/**/

/* CARD */

/* CARD WIDTH INCREASE */
.slider-card{
    width: 100%;
    max-width: 600px; /* 👈 pehle 450 tha, ab bada */
    margin: auto;
}

/* SLIDER BOX */
.slider-box{
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* SLIDE */
.slide-item{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide-item.active{
    opacity: 1;
}

/* 🔥 MAIN IMAGE FIX */
.slide-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* 👈 TOP CUT NAHI HOGA */
}
/* EACH FRAME */


/* ACTIVE */
.slide-item.active{
    opacity: 1;
}

/* IMAGE FULL COVER */
.slide-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/**/
.ts-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.ts-card{
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

/* IMAGE */
.ts-card img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 sab same size me fit */
    transition: 0.4s;
}

/* HOVER EFFECT */
.ts-card:hover img{
    transform: scale(1.08);
}

/* PLAY BUTTON */
.ts-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;

    backdrop-filter: blur(6px);
    transition: 0.3s;
}

/* HOVER PLAY */
.ts-play:hover{
    background: rgba(103, 104, 70, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}
/**/
@media(max-width: 992px){
    .ts-cards{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .ts-cards{
        grid-template-columns: 1fr;
    }
}
/**/

/* SECTION */
.core-section {
    padding: 60px 5%;
    background: radial-gradient(circle at top, #ffffff, #eef2e3);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* HEADING */
.core-heading {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-style: italic;
    color: #411900;
    margin-bottom: 60px;
}

/* GRID */
.core-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.core-card {
    width: 400px !important;
    min-height: 340px;
    perspective: 1200px;
}

/* CARD INNER */
.core-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 22px;

    background: #676846;
    color: #FAFBED;

    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);

    transition: all 0.35s ease;

    display: flex;
    flex-direction: column;
    align-items: center;      /* 🔥 CENTER */
    text-align: center;       /* 🔥 CENTER */
    gap: 15px;

    overflow: hidden;
}

/* HOVER */
.core-card:hover .core-card-inner {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0,0,0,0.3);
}

/* GLOW BORDER */
.core-card-inner::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, #411900, #d4a373, #411900);
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
}

.core-card:hover .core-card-inner::before {
    opacity: 1;
}

/* ICON */
.icon-box {
    font-size: 28px;
    width: 70px;
    height: 70px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FAFBED;
    color: #411900;

    margin-bottom: 10px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.core-card:hover .icon-box {
    transform: translateY(-8px) scale(1.15);
    background: #411900;
    color: #FAFBED;
}

/* TITLE (BIGGER) */
.core-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;  /* 🔥 BADA */
    font-style: italic;
    line-height: 1.3;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* TEXT (BIGGER) */
.core-card p {
    font-size: 17px;  /* 🔥 BADA */
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;

    display: -webkit-box;
    -webkit-line-clamp: 4;  /* overflow control */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* FLOAT ANIMATION */
.core-card-inner {
    animation: float 6s ease-in-out infinite;
}

.core-card:nth-child(2) .core-card-inner { animation-delay: 0.5s; }
.core-card:nth-child(3) .core-card-inner { animation-delay: 1s; }
.core-card:nth-child(4) .core-card-inner { animation-delay: 1.5s; }
.core-card:nth-child(5) .core-card-inner { animation-delay: 2s; }
.core-card:nth-child(6) .core-card-inner { animation-delay: 2.5s; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .core-heading {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .core-heading {
        font-size: 30px;
    }

    .core-card {
        width: 100% !important;
    }
}