* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
   margin: 0;
    background: linear-gradient(135deg, #f4e5d4, #a98e7d);
    color: #3b2f2f;   /* elegant dark brown */
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    color: #3b2f2f;
}

p, span {
    color: #6b5a4a;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 50px;   /* ⬅️ increased height */
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nav-links a {
    color: #3b2f2f !important;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c2a46d !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 110px;   
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    transition: all 0.4s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-logo span {
    font-size: 26px;     /* ⬅️ bigger brand name */
    font-weight: 600;
    letter-spacing: 1px;
}



.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
}

.hero {
    margin-top: 120px;   /* ⬅️ increase space so hero doesn't hide */
}

.hero-content p {
    color: #f0f4ff; 
    font-size: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
}

.service-card {
    padding: 30px;
    background: white;
    color: #0b1e36;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 20px;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
}

button, .hero-btn {
    background: linear-gradient(135deg, #d8c3a5, #c2a46d);
    color: #3b2f2f;
    font-weight: 600;
}

/* Filter buttons */
.filter-buttons {
    text-align: center;
    margin-bottom: 30px;
}

.filter-buttons button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: #0b3a5a;
    color: white;
}

.filter-buttons button.active {
    background: #00c6ff;
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.project-grid img {
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.4s;
}

.project-grid img:hover {
    transform: scale(1.08);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 16px 20px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 25px #25D366;
    z-index: 1000;
}

/* Hero */
.hero {
    
    position: relative;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.hero-content h1 {
    font-size: 64px;
    color: #ffffff;              /* ✅ Pure white */
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);   /* ✅ Readable on video */
}

.hero-content span {
    color: #d4af37;   /* gold */
    text-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* Sections */
section {
    padding: 120px;
    text-align: center;
    color: #0b1e36;
    scroll-margin-top: 140px;
    margin-bottom: 0;
}

/* Glass */
.glass {
    backdrop-filter: blur(12px);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    max-width: 900px;
    margin: auto;
    padding: 25px;
}

.glass,
.service-card,
.project-item,
.logo-item,
.testimonial-card {
    background: #ffffff;
    color: #3b2f2f;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 20px;
}

.tab-btn {
    background: #efe6dc;
    color: #3b2f2f;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #d8c3a5, #c2a46d);
    color: #3b2f2f;
}

.hero-content h1 {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-content span {
    color: #e6d3a3;   /* soft gold */
    text-shadow: 0 0 20px rgba(230,211,163,0.6);
}

.hero-content p {
    color: #f5efe7;
}

/* Gallery */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.project-grid img {
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.4s;
}

.project-grid img:hover {
    transform: scale(1.08) rotate(1deg);
}

/* Our Work */
.projects-section {
    padding: 60px 20px;
    text-align: center;
}

.section-sub {
    color: #666;
    margin-bottom: 30px;
}

/* Tabs */
.project-tabs {
    margin-bottom: 40px;
}



#booking {
    margin-top: 80px;
}

#booking {
    max-width: 900px;      /* ⬅️ limits width */
    margin: 40px auto;     /* ⬅️ centers it */
    padding: 30px 30px;    /* ⬅️ reduces height */
}

.tab-btn {
    border: none;
    background: #eaf1f8;
    color: #0b1e36;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.project-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.project-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.project-overlay h4 {
    color: #ffffff !important;     /* ✅ pure white */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.project-overlay span {
    color: #e6d3a3 !important;     /* ✅ luxury gold */
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Hover overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.1)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    text-align: center;
    opacity: 1;              /* ✅ ALWAYS visible */
    transition: 0.4s;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    opacity: 1;
}


/* Lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
}

/* Form */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin: 8px 0;
    padding: 12px;
    border-radius: 10px;
    border: 1.5px solid #cfd8e3;   /* ✅ visible border */
    font-size: 16px;
    outline: none;
    background: white;
}

/* Focus effect */
form input:focus, form textarea:focus {
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0,191,255,0.15);
}

form button {
    padding: 14px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
}

/* Form animation */
#booking {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Input group */
.input-group {
    position: relative;
    margin-bottom: 22px;
}

/* Inputs */
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 45px 14px 15px;
    border-radius: 12px;
    border: 1.5px solid #d8cfc4;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    background: #fff;
}

/* Focus glow */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #c2a46d;
    box-shadow: 0 0 0 4px rgba(194,164,109,0.2);
}

/* Floating label */
.input-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a7a68;
    pointer-events: none;
    transition: 0.3s;
    background: white;
    padding: 0 6px;
}

/* When typing */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: #c2a46d;
}

/* Icons */
.input-group .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

/* Button */
.book-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #d8c3a5, #c2a46d);
    color: #3b2f2f;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Shake animation */
.shake {
    animation: shake 0.4s;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-6px); }
    100% { transform: translateX(0); }
}


/* Partners Section */
.partners-section {
    text-align: center;
    padding: 120px;
}

.partners-sub {
    color: #555;
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.partner-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.4s;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Slider container */
.logo-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 100%;
    animation: scrollLogos 30s linear infinite;
}

.logo-slider:hover {
   animation-play-state: paused;
}

/* Each logo card */
.logo-item {
    position: relative;
    min-width: 200px;
    height: 120px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.logo-item img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: none;       /* ✅ keep original color */
    opacity: 1;         /* ✅ full color */
    transition: 0.4s;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Authorized badge */
.logo-item.dealer .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* Slider outer wrapper */
.logo-slider-wrapper {
    width: 100%;
    overflow: hidden;   /* ✅ hides extra logos */
    position: relative;
}

/* Moving track */
.logo-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;   /* ✅ important */
    animation: scrollLogos 35s linear infinite;
}

/* Pause on hover */
.logo-slider-wrapper:hover .logo-slider-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f7f3ee, #f2ece6);
    color: #3b2f2f;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}



/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.footer-contact,
.footer-contact a {
    color: #3b2f2f;   /* elegant dark brown */
}

.footer-contact a {
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;   /* luxury gold on hover */
}