:root {
    --maroon: #800000;
    --saffron: #FF9933;
    --dark: #1a1a1a;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, .navbar-brand, .nav-link, .btn {
    font-family: 'Montserrat', sans-serif;
}

/* Logo Fixing */
.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text { font-size: 1.2rem; font-weight: 800; line-height: 1; }
.brand-sub { font-size: 0.7rem; font-weight: 600; color: #666; }

/* Hero Section */
.hero-parallax {
    height: 70vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    align-items: center;
}

.glass-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-top: 5px solid var(--saffron);
}

/* Service Cards */
.service-img-style {
    height: 200px;
    object-fit: cover;
}

.service-card {
    transition: 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.text-maroon { color: var(--maroon); }

.section-padding { padding: 80px 0; }

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    height: 80vh; /* Full screen height */
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-img {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Black Overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Yahan se blackness control karein (0.6) */
    display: flex;
    align-items: center;
    z-index: 2; /* Content slider ke upar dikhega */
}

/* Glass form positioning */
.glass-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    z-index: 3;
}
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contactPageForm .form-control, #contactPageForm .form-select {
    border: 1px solid #ddd;
    padding: 12px;
}

#contactPageForm .form-control:focus {
    border-color: var(--maroon);
    box-shadow: none;
}

/* Gallery Images ko Rectangle banane ke liye */
.gallery-slider img {
    width: 100%;
    height: 220px;      /* Rectangle height */
    object-fit: cover;  /* Isse photo chipki hui nahi dikhegi */
    border-radius: 10px;
    padding: 5px;
}

/* Slick arrows ko thoda visible banane ke liye */
.slick-prev:before, .slick-next:before {
    color: #800000 !important; /* Maroon color arrows */
}

.bg-maroon { background-color: var(--maroon); }
.modal-content { border-radius: 15px; }
.btn-outline-danger:hover { color: white !important; }
.gap-2 { gap: 0.5rem !important; }
.btn-sm { font-size: 0.8rem; padding: 5px 10px; }

/* Service Image Hover Effect */
.service-card a {
    display: block;
    overflow: hidden;
}
.service-card img {
    transition: transform 0.5s ease;
}
.service-card:hover img {
    transform: scale(1.1); /* Photo halki si zoom hogi */
}

/* Footer Styling */
.hover-gold:hover {
    color: var(--saffron) !important;
    padding-left: 5px;
    transition: 0.3s;
}

.footer-links a {
    transition: all 0.3s;
}

footer hr {
    height: 1px;
    opacity: 0.1;
}

/* Purani wa-float CSS ko delete kar dena */

.btn-floating-custom {
    position: fixed;
    bottom: 25px;
    padding: 12px 22px;
    color: white !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s transform ease;
}

/* Left WhatsApp */
.whatsapp-left {
    left: 20px;
    background-color: #25d366;
}

/* Right Call */
.call-right {
    right: 20px;
    background-color: #800000; /* Maroon Theme Color */
    border: 1px solid #FF9933; /* Saffron Border */
}

.btn-floating-custom:hover {
    transform: translateY(-5px);
    color: white;
}

/* Mobile setting: Screen choti hone par sirf icons dikhenge */
@media (max-width: 576px) {
    .btn-floating-custom {
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
}