*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

:root{
    --header-height: 120px;
}

/* TOP HEADER */
.top-header{
    background:#222;
    color:#fff;
    font-size:14px;
    padding:6px 0;
    position:fixed;
    top:0;
    width:100%;
    z-index:1001;
    height:32px;
    line-height:32px;
}

/* NAVBAR */
.navbar{
    background:#fff;
    position:fixed;
    top:32px;
    width:100%;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:14px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */
.logo img{      
    width:180px;
    display:block;
}

.site-header{
    position: fixed;
    top:0;
    width:100%;
    z-index:1000;
}

/* Mobile logo size */
@media(max-width:992px){
    .logo img{
        height:45px;
    }
}

/* MENU (DESKTOP) */
.nav-menu{
    display:flex;
    gap:30px;
}

.nav-menu a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}

.nav-menu a:hover{
    color:#d4af37;
}

/* ICONS */
.menu-icon{
    display:none;
    font-size:26px;
    cursor:pointer;
}

.close-btn{
    display:none;
    font-size:32px;
    cursor:pointer;
    margin-bottom:20px;
    align-self:flex-end;
}

/* MOBILE */
/* ===== MOBILE WOW MENU ===== */
@media (max-width:992px){

    .menu-icon{
        display:block;
        color:#333;
    }

    /* Overlay */
    .menu-overlay{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:rgba(0,0,0,0.6);
        backdrop-filter: blur(4px);
        opacity:0;
        visibility:hidden;
        transition:0.4s;
        z-index:998;
    }

    .menu-overlay.active{
        opacity:1;
        visibility:visible;
    }

    .nav-menu{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        height:100vh;
        background:linear-gradient(180deg,#ffffff,#f7f7f7);
        flex-direction:column;
        padding:30px 25px;
        gap:10px;
        transition:0.45s cubic-bezier(0.68,-0.55,0.27,1.55);
        box-shadow:-8px 0 25px rgba(0,0,0,0.25);
        z-index:999;
    }

    .nav-menu.active{
        right:0;
    }

    .close-btn{
        display:block;
        font-size:34px;
        color:#333;
        align-self:flex-end;
        margin-bottom:30px;
        transition:0.3s;
    }

    .close-btn:hover{
        transform:rotate(90deg);
        color:#d4af37;
    }

    .nav-menu a{
        display:flex;
        align-items:center;
        gap:14px;
        padding:14px 16px;
        font-size:20px;
        font-weight:600;
        color:#333;
        border-radius:10px;
        transition:0.35s;
        position:relative;
    }

    .nav-menu a i{
        font-size:20px;
        color:#d4af37;
    }

    .nav-menu a:hover{
        background:#fff;
        transform:translateX(6px);
        box-shadow:0 8px 18px rgba(0,0,0,0.12);
    }

    .nav-menu a.active{
        background:linear-gradient(135deg,#d4af37,#b8962e);
        color:#fff;
        box-shadow:0 10px 22px rgba(212,175,55,0.45);
    }

    .nav-menu a.active i{
        color:#fff;
    }
}

/* DESKTOP NAV - ICON HIDE */
@media (min-width:993px){
    .nav-menu a i{
        display:none;
    }
}

/* MOBILE MENU ICON SHOW */
@media (max-width:992px){
    .nav-menu a i{
        display:inline-block;
        font-size:18px;
        color:#d4af37;
    }
}

/* Desktop spacing fix */
@media (min-width:993px){
    .nav-menu a{
        padding:0;
        gap:0;
    }
}

/* ===== SERVICES DROPDOWN ===== */
.nav-dropdown{
    position:relative;
}

/* Button */
.dropdown-toggle{
    background:none;
    border:none;
    font-size:16px;
    font-weight:600;
    color:#333;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
}

.dropdown-toggle .arrow{
    font-size:12px;
    transition:0.3s;
}

/* Desktop dropdown */
@media(min-width:993px){
    .dropdown-menu{
        position:absolute;
        top:140%;
        left:0;
        background:#fff;
        width:220px;
        border-radius:10px;
        box-shadow:0 15px 30px rgba(0,0,0,0.15);
        overflow:hidden;
        opacity:0;
        visibility:hidden;
        transform:translateY(10px);
        transition:0.35s;
        z-index:999;
    }

    .nav-dropdown:hover .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-dropdown:hover .arrow{
        transform:rotate(180deg);
    }

    .dropdown-menu a{
        padding:14px 18px;
        display:block;
        color:#333;
        font-weight:600;
        transition:0.3s;
    }

    .dropdown-menu a:hover{
        background:linear-gradient(135deg,#d4af37,#b8962e);
        color:#fff;
    }
}

/* ===== MOBILE DROPDOWN ===== */
@media(max-width:992px){

    .dropdown-toggle{
        width:100%;
        padding:14px 16px;
        border-radius:10px;
    }

    .dropdown-menu{
        max-height:0;
        overflow:hidden;
        transition:max-height 0.4s ease;
        margin-left:10px;
    }

    .dropdown-menu a{
        padding:12px 16px;
        font-size:15px;
        color:#555;
        border-left:3px solid #d4af37;
        margin:6px 0;
        background:#fff;
        border-radius:8px;
    }

    .dropdown-menu.active{
        max-height:500px;
    }

    .dropdown-toggle.active{
        background:linear-gradient(135deg,#d4af37,#b8962e);
        color:#fff;
        box-shadow:0 8px 20px rgba(212,175,55,0.45);
    }

    .dropdown-toggle.active .arrow{
        transform:rotate(180deg);
    }
}

/* DESKTOP - SERVICES ICON HIDE */
@media (min-width: 993px){
    .dropdown-toggle i{
        display: none;
    }
}

/* MOBILE - SERVICES ICON SHOW */
@media (max-width: 992px){
    .dropdown-toggle i{
        display: inline-block;
        font-size: 18px;
        color: #d4af37;
    }
}

/* ============================= */
/* SERVICES DROPDOWN ARROW FIX */
/* ============================= */
/* Base reset */
.dropdown-toggle{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

/* Arrow default OFF */
.dropdown-toggle .arrow{
    display: none;
}

/* DESKTOP ONLY (992px se upar) */
@media (min-width: 993px){

    .dropdown-toggle .arrow{
        display: inline-block;
        font-size: 25px;
        color: #000;          
        position: relative;
        top: 1px;            
        line-height: 1;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .nav-dropdown:hover .arrow{
        transform: rotate(180deg);
        transition: 0.3s;
    }
}

/* MOBILE (arrow completely hidden) */
@media (max-width: 992px){
    .dropdown-toggle .arrow{
        display: none !important;
    }
}

.dropdown-toggle .arrow{
    font-size:12px;
    transition:0.3s;
}

/* =============================== */
/* LAPTOP / DESKTOP NAV FIX ONLY  */
/* =============================== */
@media (min-width: 1024px){

    /* Nav items ek straight line */
    .nav-menu{
        display: flex;
        align-items: center;
        gap: 32px;
        flex-wrap: nowrap;
    }

    /* All menu items same height */
    .nav-menu > a,
    .nav-dropdown{
        display: flex;
        align-items: center;
        height: 100%;
    }

    /* Services button */
    .dropdown-toggle{
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        padding: 0;
    }

    /* Bigger arrow (desktop only) */
    .dropdown-toggle .arrow{
        display: inline-block;
        font-size: 25px;  
        color: #000;
        position: relative;
        top: 1px;
        transition: transform 0.3s ease;
    }

    .nav-dropdown:hover .arrow{
        transform: rotate(180deg);
    }
}

/* ======================================= */
/* FINAL SERVICES ARROW FIX (DESKTOP ONLY) */
/* ======================================= */
@media (min-width: 993px){

    .nav-dropdown{
        display: flex;
        align-items: center;
    }

    .dropdown-toggle{
        display: inline-flex;
        align-items: center;
        gap: 0;                
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        line-height: 1;
        cursor: pointer;
    }

    .dropdown-toggle .arrow{
        margin-left: 0;        
        padding-left: 0;
        font-size: 24px;        
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: translateY(1px); 
        transition: transform 0.3s ease;
    }

    .nav-dropdown:hover .arrow{
        transform: translateY(1px) rotate(180deg);
    }
}

/* Mobile me arrow bilkul hide */
@media (max-width: 992px){
    .dropdown-toggle .arrow{
        display: none !important;
    }
}

/* =============================== */
/* DESKTOP MENU FONT SIZE INCREASE */
/* =============================== */
@media (min-width: 993px){

    /* Normal menu links */
    .nav-menu > a{
        font-size: 18px;        
        font-weight: 600;
    }

    /* Services button text */
    .dropdown-toggle{
        font-size: 18px;        
        font-weight: 600;
    }

    /* Dropdown arrow thoda balanced */
    .dropdown-toggle .arrow{
        font-size: 26px;       
    }
}

/* CONTENT */
.content{
    margin-top:140px;
    height:2000px;
    padding:40px;
}

/* BANNER SECTION */
.hero-slider{
    width:100%;
    position:relative;
    overflow:hidden;
    height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
}

/* SLIDES */
.slides{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

/* DARK OVERLAY */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

/* CONTENT */
.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    max-width:700px;
    padding:20px;
}

.slide-content h1{
    font-size:52px;
    margin-bottom:15px;
}

.slide-content p{
    font-size:18px;
    margin-bottom:25px;
}

/* ARROWS */
.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:#fff;
    cursor:pointer;
    padding:10px;
    z-index:10;
}

.arrow.prev{ left:20px; }
.arrow.next{ right:20px; }

/* DOTS */
.dots{
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
}

.dots span{
    height:12px;
    width:12px;
    background:#bbb;
    display:inline-block;
    border-radius:50%;
    margin:0 6px;
    cursor:pointer;
}

.dots span.active{
    background:#d4af37;
}

/* RESPONSIVE */
@media(max-width:992px){
    .slide-content h1{ font-size:36px; }
    .slide-content p{ font-size:16px; }
}

@media(max-width:576px){
    .hero-slider{ height:70vh; }
    .slide-content h1{ font-size:28px; }
    .slide-content p{ font-size:14px; }
}

@media(max-width:992px){
    :root{
        --header-height: 100px;
    }
}

@media(max-width:576px){
    :root{
        --header-height: 90px;
    }
}

@media(max-width:768px){
    .arrow{
        display:none;
    }
}

@media(max-width:768px){
    .slide-content{
        width:90%;
        max-width:90%;
        padding:15px;
    }
}

@media(max-width:768px){
    .hero-slider{
        height:70vh;    
        padding-top:0;    
    }
}

@media(max-width:768px){

    /* Hide arrows */
    .arrow{
        display:none;
    }

    /* Fix slider height & scroll */
    .hero-slider{
        height:70vh;
        padding-top:0;
    }

    /* Increase text width */
    .slide-content{
        width:90%;
        max-width:90%;
        padding:15px;
    }

    .slide-content h1{
        font-size:28px;
    }

    .slide-content p{
        font-size:14px;
    }
}

/* ABOUT US */
.about-us{
    padding:20px 20px;
    background:#f8f9fa;
}

.about-container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
    font-weight:700;
}

.section-title span{
    color:#d4af37;
}

/* SINGLE CARD */
.about-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
    transition:0.5s ease;
}

.about-card:hover{
    transform:translateY(-6px);
    box-shadow:0 35px 80px rgba(0,0,0,0.25);
}

/* IMAGE */
.about-card-image{
    overflow:hidden;
    position:relative;
}

.about-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.7s ease;
}

/* Desktop hover */
.about-card:hover .about-card-image img{
    transform:scale(1.12);
}

/* Mobile / touch active state */
.about-card-image.zoom img{
    transform:scale(1.12);
}

/* CONTENT */
.about-card-content{
    padding:55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-card-content h3{
    font-size:30px;
    margin-bottom:15px;
}

.about-card-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
    color:#555;
}

/* POINTS */
.about-points{
    list-style:none;
    margin:25px 0;
}

.about-points li{
    margin-bottom:12px;
    font-size:16px;
    font-weight:500;
}

.about-points i{
    color:#d4af37;
    margin-right:10px;
}

/* BUTTON */
.about-btn{
    align-self:flex-start;
    margin-top:10px;
    padding:14px 38px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:30px;
    transition:0.4s ease;
}

.about-btn:hover{
    background:#084298;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,0.4);
}

/* RESPONSIVE */
@media(max-width:992px){
    .about-card{
        grid-template-columns:1fr;
    }

    .about-card-image{
        height:300px;
    }

    .section-title{
        font-size:36px;
    }

    .about-card-content{
        padding:35px;
    }
}

@media(max-width:576px){
    .section-title{
        font-size:28px;
    }

    .about-card-content h3{
        font-size:22px;
    }

    .about-card-content p,
    .about-points li{
        font-size:14px;
    }
}

/* SERVICES SECTION */
.services-section{
    padding:20px 20px;
    background:#f8f9fa;
}

.services-container{
    max-width:1300px;
    margin:auto;
}

/* FILTER WRAPPER */
.filter-wrapper{
    margin-bottom:50px;
    border-radius:16px;
    overflow:hidden;
}

/* HEADER */
.filter-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    background:#fff;
    border-bottom:2px solid #d4af37;
}

.filter-header h3{
    font-size:20px;
    color:#d4af37;
    margin:0;
}

.filter-toggle{
    display:none;
    font-size:20px;
    cursor:pointer;
    color:#d4af37;
}

/* FILTER BOX */
.filter-box{
    background:#fff;
    padding:25px;
    box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

/* GRID */
.filter-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.filter-grid select,
.filter-grid input{
    padding:12px 14px;
    font-size:14px;
    border:1px solid #ddd;
    border-radius:8px;
    width:100%;
}

/* BUTTON */
.filter-btn{
    background:#d4af37;
    color:#fff;
    font-weight:600;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:0.3s;
}

.filter-btn:hover{
    background:#d4af37;
    box-shadow:0 6px 18px rgba(255,122,0,0.4);
}

/* CARDS GRID */
.service-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* SINGLE CARD */
.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */
.card-image{
    position:relative;
    overflow:hidden;
}

.card-image img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:0.6s ease;
}

.service-card:hover .card-image img{
    transform:scale(1.08);
}

.property-id{
    position:absolute;
    top:10px;
    right:10px;
    background:#666;
    color:#fff;
    font-size:12px;
    padding:4px 8px;
    border-radius:4px;
}

/* CONTENT */
.card-content{
    padding:16px 18px 18px; 
    display:flex;
    flex-direction:column;
}

/* TITLE */
.card-content h4{
    font-size:16px;
    margin-bottom:6px;
}

/* LOCATION */
.location{
    font-size:14px;
    color:#555;
    margin-bottom:8px;
}

/* PRICE */
.price{
    font-size:18px;
    font-weight:700;
    margin:8px 0 14px; 
}

/* BUTTONS */
.card-buttons{
    display:flex;
    gap:10px;
    margin-top:0; 
}

.btn-outline,
.btn-fill{
    flex:1;
    padding:10px 12px;
    font-size:14px;
    font-weight:600;
    border-radius:8px;
    text-align:center;
    text-decoration:none;
    transition:0.3s ease;
}

/* BUTTON STYLES */
.btn-outline{
    border:1px solid #ddd;
    color:#333;
    background:#fff;
}

.btn-outline:hover{
    border-color:#d4af37;
    color:#d4af37;
}

.btn-fill{
    background:#d4af37;
    color:#fff;
}

.btn-fill:hover{
    background:#d4af37;
    box-shadow:0 6px 15px rgba(255,122,0,0.4);
}

/* RESPONSIVE */
@media(max-width:1200px){
    .service-cards{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:992px){
    .service-cards{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:576px){
    .service-cards{ grid-template-columns:1fr; }

    .card-buttons{
        flex-direction:column;
    }

    .btn-outline,
    .btn-fill{
        padding:12px;
        font-size:15px;
    }
}

/* RESPONSIVE */
@media(max-width:992px){
    .filter-grid{
        grid-template-columns:1fr 1fr;
    }

    .filter-toggle{
        display:block;
    }

    .filter-box{
        display:none;
    }

    .filter-box.active{
        display:block;
        animation:slideDown 0.4s ease;
    }
}

@media(max-width:576px){
    .filter-grid{
        grid-template-columns:1fr;
    }

    .filter-btn{
        padding:14px;
        font-size:16px;
    }
}

/* ANIMATION */
@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* CONTACT SECTION – LIGHT DARK PREMIUM */
.contact-section{
    position:relative;
    background:url("imageeee/banner2.jpg") center/cover no-repeat;
    padding:80px 20px;
}

/* LIGHTER OVERLAY */
.contact-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        rgba(15,15,15,0.82),
        rgba(30,30,30,0.75)
    );
}

.contact-container{
    position:relative;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    color:#f2f2f2;
    align-items:center;
}

/* LEFT INFO */
.contact-info{
    padding:35px;
}

.contact-info h2{
    font-size:40px;
    margin-bottom:30px;
    font-weight:700;
}

.contact-info span{
    color:#d4af37;
}

.info-box{
    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-bottom:22px;
}

.info-box i{
    font-size:18px;
    background:#d4af37;
    color:#111;
    padding:13px;
    border-radius:50%;
    box-shadow:0 6px 16px rgba(212,175,55,0.35);
}

.info-box p{
    font-size:15px;
    line-height:1.6;
    color:#e0e0e0;
}

/* FORM CARD */
.contact-form{
    background:#151515;
    color:#eee;
    padding:38px;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.55);
    transition:0.35s ease;
}

.contact-form:hover{
    transform:translateY(-5px);
}

.contact-form h2{
    font-size:32px;
    margin-bottom:22px;
}

.contact-form span{
    color:#d4af37;
}

/* FORM GRID */
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:14px 15px;
    border:1px solid #333;
    border-radius:9px;
    font-size:14px;
    background:#1f1f1f;
    color:#fff;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#aaa;
}

/* FOCUS */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#d4af37;
    background:#222;
    box-shadow:0 0 0 2px rgba(212,175,55,0.22);
}

/* PHONE FIELD */
.phone-field{
    display:flex;
}

.phone-field span{
    padding:14px 16px;
    background:#d4af37;
    color:#111;
    border-radius:9px 0 0 9px;
    font-weight:700;
}

.phone-field input{
    border-radius:0 9px 9px 0;
    border-left:none;
}

/* TEXTAREA */
textarea{
    min-height:120px;
    resize:none;
    margin-bottom:18px;
}

/* BUTTON */
.contact-form button{
    width:100%;
    padding:15px;
    background:linear-gradient(135deg,#d4af37,#c09a2b);
    color:#111;
    border:none;
    font-size:15px;
    font-weight:700;
    border-radius:35px;
    cursor:pointer;
    transition:0.35s ease;
}

.contact-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(212,175,55,0.4);
}

/* ================= RESPONSIVE ================= */
/* TABLET */
@media(max-width:992px){
    .contact-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .contact-info{
        padding:25px;
        text-align:left;
    }

    .contact-info h2,
    .contact-form h2{
        font-size:28px;
    }
}

/* MOBILE */
@media(max-width:576px){
    .contact-section{
        padding:60px 15px;
    }

    .contact-info,
    .contact-form{
        padding:22px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:14px;
    }

    .contact-info h2{
        font-size:24px;
    }

    .contact-form h2{
        font-size:24px;
    }

    .info-box p{
        font-size:14px;
    }
}

/* LARGE SCREENS */
@media(min-width:1400px){
    .contact-container{
        max-width:1350px;
    }
}

/* ================= TESTIMONIALS ================= */
.testimonials{
  background:#fafafa;
  padding:20px 20px;
}

.testimonials-container{
  max-width:1200px;
  margin:auto;
}

.testimonials{
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  gap:24px;
  padding:14px 0 28px; 
  transition:transform 0.6s ease-in-out;
}

.testimonial-viewport{
  width:100%;
  overflow-x:hidden;
  overflow-y:hidden;
}

.section-title{
  text-align:center;
  font-size:34px;
  margin-bottom:20px;
}

.section-title span{
  color:#d4af37;
}

.testimonial-viewport::-webkit-scrollbar{
  display:none;
}

.testimonial-viewport{
  scrollbar-width:none; 
}

/* WRAPPER */
.testimonial-wrapper{
  position:relative;
  display:flex;
  align-items:center;
  gap:20px;
  padding:20px 0; 
}

/* VIEWPORT */
.testimonial-viewport{
  width:100%;
  overflow-x:hidden;   
  overflow-y:visible;  
}

/* TRACK */
.testimonial-track{
  display:flex;
  gap:24px;
  padding:10px 0; 
  transition:transform 0.6s ease-in-out;
}

/* CARD */
.testimonial-card{
  flex:0 0 calc(33.333% - 16px);
  background:#fff;
  border-radius:22px;
  padding:34px;
  position:relative;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.12),
    0 8px 18px rgba(0,0,0,0.08);

  transition:transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 32px 70px rgba(0,0,0,0.16),
    0 12px 28px rgba(0,0,0,0.10);
}

.testimonial-card::after{
  content:"";
  position:absolute;
  left:12%;
  right:12%;
  bottom:-14px;
  height:22px;
  background:rgba(0,0,0,0.12);
  filter:blur(22px);
  z-index:-1;
  border-radius:50%;
}

.testimonial-card p{
  font-size:15px;
  line-height:1.7;
  color:#444;
  margin-bottom:22px;
}

/* CLIENT */
.client-info{
  display:flex;
  align-items:center;
  gap:14px;
}

.client-info img{
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #d4af37;
}

.client-info h4{
  font-size:16px;
  color:#111;
}

.client-info span{
  font-size:13px;
  color:#d4af37;
  font-weight:600;
}

/* ARROWS */
.test-arrow{
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#d4af37;
  color:#111;
  font-size:22px;
  cursor:pointer;
  flex-shrink:0;
}

/* TABLET */
@media(max-width:992px){
  .testimonial-card{
    flex:0 0 calc(50% - 12px);
  }
}

/* MOBILE */
@media(max-width:576px){
  .testimonial-card{
    flex:0 0 100%;
  }

  .test-arrow{
    display:none;
  }
}

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.site-footer{
    background:linear-gradient(180deg,#f7f7f7,#eeeeee);
    padding:30px 20px 0;
    border-top:1px solid #e3e3e3;
}

/* MAIN GRID */
.footer-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:2.2fr 1.2fr 1.6fr;
    gap:80px;
    color:#111;
    align-items:flex-start;
}

/* BRAND */
.footer-col.brand img{
    width:160px;
    margin-bottom:18px;
}

.footer-col.brand p{
    font-size:15.5px;
    line-height:1.8;
    color:#444;
    max-width:420px;
}

/* HEADINGS */
.footer-col h4{
    font-size:18px;
    margin-bottom:22px;
    color:#111;
    position:relative;
}

.footer-col h4::after{
    content:"";
    width:45px;
    height:2px;
    background:#d4af37;
    position:absolute;
    bottom:-8px;
    left:0;
}

/* LINKS */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    font-size:15px;
    color:#333;
    transition:0.3s ease;
}

.footer-col ul li a:hover{
    color:#d4af37;
    padding-left:6px;
}

/* CONTACT */
.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    margin-bottom:14px;
    color:#333;
}

.footer-contact i{
    color:#d4af37;
    font-size:16px;
}

/* SOCIAL ICONS */
.footer-social{
    margin-top:22px;
    display:flex;
    gap:16px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1.5px solid #d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#d4af37;
    font-size:17px;
    transition:all 0.35s ease;
}

.footer-col.brand p br + br {
    margin-top:6px;
}

.footer-social a:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

/* BOTTOM BAR */
.footer-bottom{
    margin-top:30px;
    padding:20px 10px;
    text-align:center;
    font-size:14px;
    color:#555;
    border-top:1px solid #ddd;
    background:#f1f1f1;
}

.footer-bottom span{
    color:#d4af37;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
/* ================= TABLET FIX (576px – 992px) ================= */
@media (max-width: 992px) and (min-width: 577px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* BRAND FULL WIDTH */
    .footer-col.brand{
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col.brand img{
        margin: 0 auto 15px;
    }

    .footer-col.brand p{
        margin: auto;
        max-width: 600px;
    }

    /* HEADINGS CENTER */
    .footer-col h4{
        text-align: center;
    }

    .footer-col h4::after{
        left: 50%;
        transform: translateX(-50%);
    }

    /* QUICK LINKS */
    .footer-col ul{
        text-align: center;
    }

    /* CONTACT CENTER */
    .footer-contact p{
        justify-content: center;
    }

    /* SOCIAL CENTER */
    .footer-social{
        justify-content: center;
    }
}

/* MOBILE */
/* ================= MOBILE PERFECT FIX (≤575px) ================= */
@media (max-width: 576px){

    .site-footer{
        padding:20px 15px 0;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:32px;
        text-align:center;
    }

    /* BRAND */
    .footer-col.brand img{
        margin:0 auto 12px;
        width:140px;
    }

    .footer-col.brand p{
        max-width:100%;
        font-size:14.5px;
        line-height:1.65;
    }

    /* HEADINGS */
    .footer-col h4{
        text-align:center;
        margin-bottom:18px;
    }

    .footer-col h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    /* LINKS */
    .footer-col ul li{
        margin-bottom:10px;
    }

    .footer-col ul li a{
        font-size:14.5px;
    }

    /* CONTACT */
    .footer-contact p{
        justify-content:center;
        font-size:14.5px;
    }

    /* SOCIAL */
    .footer-social{
        justify-content:center;
        margin-top:16px;
    }

    .footer-social a{
        width:38px;
        height:38px;
        font-size:15px;
    }

    /* BOTTOM BAR */
    .footer-bottom{
        margin-top:45px;
        font-size:13px;
        line-height:1.6;
    }
}

.footer-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:2.2fr 1.2fr 1.2fr 1.6fr;
    gap:70px;
    color:#111;
    align-items:flex-start;
}

.property-links{
    list-style:none;
    padding:0;
}

.property-links li{
    margin-bottom:12px;
}

.property-links li a{
    text-decoration:none;
    font-size:15px;
    color:#333;
    transition:0.3s ease;
}

.property-links li a:hover{
    color:#d4af37;
    padding-left:6px;
}

/* ================= TABLET PERFECT FIX (577px – 992px) ================= */
@media (max-width: 992px) and (min-width: 577px){

    .footer-container{
        grid-template-columns: 1fr 1fr 1fr;
        gap:40px;
    }

    /* BRAND FULL WIDTH ON TOP */
    .footer-col.brand{
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col.brand img{
        margin: 0 auto 15px;
    }

    .footer-col.brand p{
        margin:auto;
        max-width:600px;
    }

    /* CENTER HEADINGS */
    .footer-col h4{
        text-align:center;
    }

    .footer-col h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    /* CENTER LISTS */
    .footer-col ul{
        text-align:center;
    }

    /* CONTACT & SOCIAL CENTER */
    .footer-contact p{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }
}
@media (max-width: 576px){

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .property-links li a{
        font-size:14.5px;
    }
}

/* LARGE SCREENS */
@media(min-width:1400px){
    .footer-container{
        max-width:1400px;
    }
}

.no-link-style {
  color: inherit;          
  text-decoration: none;   
}

.no-link-style:hover,
.no-link-style:visited,
.no-link-style:active {
  color: inherit;
  text-decoration: none;
}

.float-btn {
  position: fixed;
  right: 15px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.float-btn img {
  width: 28px;
  height: 28px;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* WhatsApp */
.whatsapp {
  bottom: 90px;
  background-color: #25D366;
}

/* Call */
.call {
  bottom: 20px;
  background-color: #0A66C2;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .float-btn img {
    width: 24px;
    height: 24px;
  }
}

/* ABOUT US  */
/* ================= ABOUT PAGE BANNER ================= */
.about-banner{
  position:relative;
  width:100%;
  height:90vh;              /* BIG & PREMIUM */
  min-height:520px;         /* safety */
  max-height:900px;         /* ultra-large screen control */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* DARK OVERLAY */
.about-banner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

/* TEXT */
.about-banner-content{
  position:relative;
  text-align:center;
  color:#fff;
  z-index:2;
}

.about-banner-content h1{
  font-size:48px;
  font-weight:700;
  margin-bottom:10px;
}

.about-banner-content p{
  font-size:16px;
  color:#d4af37;
  font-weight:600;
}

/* TABLET */
@media(max-width:992px){
  .about-banner{
    height:65vh;
    min-height:420px;
  }

  .about-banner-content h1{
    font-size:36px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .about-banner{
    height:55vh;
    min-height:300px;
  }

  .about-banner-content h1{
    font-size:26px;
  }

  .about-banner-content p{
    font-size:14px;
  }
}

/* EXTRA LARGE SCREENS */
@media(min-width:1400px){
  .about-banner{
    height:85vh;
    max-height:950px;
  }
}

.about-page{
  padding:30px 20px;
  background:#f8f9fa;
}

.about-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* TEXT */
.about-text h1{
  font-size:42px;
  margin-bottom:20px;
  font-weight:700;
}

.about-text h1 span{
  color:#d4af37;
}

.about-text p{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:18px;
}

/* LIST */
.about-list{
  list-style:none;
  margin:25px 0;
  padding:0;
}

.about-list li{
  font-size:16px;
  margin-bottom:12px;
  font-weight:500;
}

.about-list i{
  color:#d4af37;
  margin-right:10px;
}

/* BUTTONS */
.about-buttons{
  display:flex;
  gap:15px;
  margin-top:25px;
}

.btn-primary{
  background:#d4af37;
  color:#fff;
  padding:14px 36px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.btn-primary:hover{
  background:#084298;
}

.btn-outline{
  border:2px solid #d4af37;
  color:#d4af37;
  padding:14px 36px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.btn-outline:hover{
  background:#d4af37;
  color:#fff;
}

/* IMAGE */
.about-image{
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.about-image:hover img{
  transform:scale(1.1);
}

/* ================= RESPONSIVE ================= */
/* TABLET */
@media(max-width:992px){
  .about-wrapper{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-text h1{
    font-size:34px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .about-page{
    padding:20px 15px;
  }

  .about-text h1{
    font-size:26px;
  }

  .about-text p,
  .about-list li{
    font-size:14px;
  }

  .about-buttons{
    flex-direction:column;
  }

  .btn-primary,
  .btn-outline{
    text-align:center;
    width:100%;
  }
}

/* LARGE SCREEN */
@media(min-width:1400px){
  .about-wrapper{
    max-width:1350px;
  }
}

/* ================= FOUNDER SECTION ================= */
.founder-section{
  padding:80px 20px;
  background:#f8f9fa;
}

.founder-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.founder-image{
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,0.25);
}

.founder-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.founder-image:hover img{
  transform:scale(1.08);
}

/* CONTENT */
.founder-content h5{
  color:#084298;
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
  font-weight:600;
}

.founder-content h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:25px;
}

.founder-content h2 span{
  color:#d4af37;
}

.founder-content p{
  font-size:16px;
  line-height:1.9;
  color:#555;
  margin-bottom:18px;
}

.founder-sign{
  margin-top:30px;
}

.founder-sign h4{
  font-size:18px;
  font-weight:700;
  color:#111;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){
  .founder-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .founder-content h2{
    font-size:34px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .founder-section{
    padding:55px 15px;
  }

  .founder-content h2{
    font-size:26px;
  }

  .founder-content p{
    font-size:14px;
  }

  .founder-sign h4{
    font-size:16px;
  }
}

/* LARGE SCREENS */
@media(min-width:1400px){
  .founder-container{
    max-width:1350px;
  }

  .founder-content h2{
    font-size:46px;
  }
}

/* ================= MISSION & VISION ================= */
.mv-section{
  padding:40px 20px;
  background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

.mv-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

/* CARD */
.mv-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,0.35);
  transition:0.5s ease;
  display:flex;
  flex-direction:column;
}

.mv-card:hover{
  transform:translateY(-12px);
}

/* IMAGE */
.mv-image{
  height:260px;
  overflow:hidden;
}

.mv-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.7s ease;
}

.mv-card:hover .mv-image img{
  transform:scale(1.15);
}

/* CONTENT */
.mv-content{
  padding:40px;
  text-align:center;
}

.mv-content h2{
  font-size:34px;
  margin-bottom:15px;
  font-weight:700;
}

.mv-content span{
  color:#d4af37;
}

.mv-content p{
  font-size:16px;
  line-height:1.8;
  color:#555;
}

/* DIFFERENT BORDER GLOW */
.mission{
  border-top:6px solid #d4af37;
}

.vision{
  border-top:6px solid #084298;
}

/* ANIMATION ON LOAD */
.mv-card{
  animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
/* TABLET */
@media(max-width:992px){
  .mv-container{
    grid-template-columns:1fr;
  }

  .mv-content h2{
    font-size:30px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .mv-section{
    padding:30px 15px;
  }

  .mv-image{
    height:200px;
  }

  .mv-content{
    padding:28px;
  }

  .mv-content h2{
    font-size:24px;
  }

  .mv-content p{
    font-size:14px;
  }
}

/* LARGE SCREEN */
@media(min-width:1400px){
  .mv-container{
    max-width:1350px;
  }

  .mv-image{
    height:300px;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-section{
  padding:30px 20px;
  background:#ffffff;
}

.why-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.why-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:30px;
}

.why-title span{
  color:#d4af37;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-bottom:30px;
}

/* CARD */
.why-card{
  background:#f8f9fa;
  padding:40px 25px;
  border-radius:20px;
  transition:0.4s ease;
  box-shadow:0 18px 40px rgba(0,0,0,0.1);
}

.why-card:hover{
  transform:translateY(-10px);
  background:#fff;
}

.why-card i{
  font-size:38px;
  color:#d4af37;
  margin-bottom:18px;
}

.why-card h4{
  font-size:20px;
  margin-bottom:12px;
}

.why-card p{
  font-size:15px;
  line-height:1.7;
  color:#555;
}

/* COUNTERS */
.counter-wrapper{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.counter-box{
  background:linear-gradient(135deg,#d4af37,#c09a2b);
  padding:35px 20px;
  border-radius:20px;
  color:#111;
  box-shadow:0 20px 45px rgba(0,0,0,0.2);
}

.counter-box h3{
  font-size:36px;
  margin-bottom:8px;
  font-weight:800;
}

.counter-box p{
  font-size:15px;
  font-weight:600;
}

/* ================= RESPONSIVE ================= */
/* TABLET */
@media(max-width:992px){
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .counter-wrapper{
    grid-template-columns:repeat(2,1fr);
  }

  .why-title{
    font-size:32px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .why-section{
    padding:70px 15px;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .counter-wrapper{
    grid-template-columns:1fr;
  }

  .why-title{
    font-size:26px;
  }
}

/* LARGE SCREEN */
@media(min-width:1400px){
  .why-container{
    max-width:1350px;
  }
}

/* PRIVACY-POLICY PAGE SECTION  */
/* PRIVACY POLICY SECTION */
.privacy-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
}

.privacy-container {
  max-width: 1200px;
  margin: auto;
}

.privacy-header {
  text-align: center;
  margin-bottom: 30px;
}

.privacy-header h2 {
  font-size: 38px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.privacy-header p {
  font-size: 17px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

/* GRID */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.privacy-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a3d62, #1e90ff);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.privacy-card:hover::before {
  opacity: 1;
}

.privacy-card * {
  position: relative;
  z-index: 1;
}

.privacy-card:hover {
  transform: translateY(-12px) scale(1.02);
}

/* ICON */
.privacy-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #0a3d62;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.4s;
}

.privacy-card:hover .icon {
  background: #ffffff;
  color: #0a3d62;
}

/* TEXT */
.privacy-card h3 {
  font-size: 22px;
  color: #0a3d62;
  margin-bottom: 10px;
  transition: 0.4s;
}

.privacy-card p {
  font-size: 15.5px;
  color: #666;
  line-height: 1.6;
  transition: 0.4s;
}

.privacy-card:hover h3,
.privacy-card:hover p {
  color: #ffffff;
}

/* FOOTER TEXT */
.privacy-footer {
  margin-top: 50px;
  text-align: center;
}

.privacy-footer p {
  font-size: 16px;
  color: #444;
}

.privacy-footer a {
  color: #0a3d62;
  font-weight: 600;
  text-decoration: none;
}

.privacy-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .privacy-header h2 {
    font-size: 30px;
  }

  .privacy-card {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {
  .privacy-header h2 {
    font-size: 26px;
  }

  .privacy-header p {
    font-size: 15px;
  }
}


/* GALLERY PAGE SECTION  */
/* ================================
   GALLERY SECTION
================================ */
.gallery-section { 
  padding: 30px 20px;
  background: #f5f7fb;
}

.gallery-container {
  max-width: 1300px;
  margin: auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-header h2 {
  font-size: 38px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 17px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ITEM */
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 61, 98, 0.9),
    rgba(10, 61, 98, 0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: 0.5s ease;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}

.gallery-overlay span {
  color: #dfefff;
  font-size: 14px;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 30px;
  }

  .gallery-overlay h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-header h2 {
    font-size: 26px;
  }

  .gallery-header p {
    font-size: 15px;
  }
}

@media (max-width: 992px){
  .gallery-item{
    height: 230px;
  }
}

@media (max-width: 576px){
  .gallery-item{
    height: 200px;
  }
}

/* TOP BRANDS  */
.top-brands{
  padding:45px 20px;
  background:#fff;
  overflow:hidden;
}

.top-brands h2{
  text-align:center;
  font-size:36px;
  font-weight:700;
  margin-bottom:30px;
}

.top-brands h2 span{
  color:#d4af37;
}

/* Slider */
.top-brands-slider{
  width:100%;
  overflow:hidden;
}

/* Track */
.top-brands-track{
  display:flex;
  align-items:center;
  gap:70px;
  width:max-content;
  animation: scrollBrands 30s linear infinite;
}

/* Logo box */
.top-brands-track div{
  min-width:160px;
  display:flex;
  justify-content:center;
  align-items:center;
  transition:0.3s ease;
}

/* Logo */
.top-brands-track img{
  max-width:150px;
  max-height:70px;
  object-fit:contain;
}

/* Hover */
.top-brands-track div:hover{
  transform:scale(1.08);
}

/* KEY ANIMATION */
@keyframes scrollBrands{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){
  .top-brands-track{
    gap:50px;
    animation-duration:35s;
  }

  .top-brands-track img{
    max-width:130px;
    max-height:60px;
  }
}

@media(max-width:576px){
  .top-brands h2{
    font-size:26px;
  }

  .top-brands-track{
    gap:35px;
    animation-duration:40s;
  }

  .top-brands-track div{
    min-width:120px;
  }

  .top-brands-track img{
    max-width:110px;
    max-height:50px;
  }
}
