:root {
    --primary: #27ae60;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --gray: #f8f9fa;
    --gold: #d4af37;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--gray);
    color: #333;
    line-height: 1.7;
}

/* Navbar Container */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 2rem; /* Added consistent padding */
}

/* When page is scrolled */
.navbar.scrolled {
    background: #fff !important;
    padding: 0.5rem 2rem; /* Keeps horizontal spacing consistent */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Brand / Logo */
.navbar-brand {
    font-family: "Playfair Display", serif; /* Gives a premium, hotel feel */
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark, #222) !important;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary, #c5a24d) !important;
}

/* Navbar Links */
.nav-link {
    font-weight: 500;
    color: var(--dark, #222) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Hover Animation for Links */
.nav-link:hover {
    background: var(--primary, #c5a24d);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Optional: Active Link Styling */
.nav-link.active {
    background: var(--primary, #c5a24d);
    color: #fff !important;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/home.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(39, 174, 96, 0.7), rgba(52, 73, 94, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 1.5rem auto;
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-cta {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-cta:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

/* Features */
.feature i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    transition: transform 0.3s;
}

.feature:hover i {
    transform: scale(1.2);
}

/* Contact + Slider */
.contact-slider {
    padding: 5rem 0;
    background: white;
}

.contact-box {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid #e9ecef;
}

.contact-box h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    position: relative;
}

.contact-box h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-box p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.contact-box a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.slider-img {
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s;
}

.carousel-item img:hover {
    transform: scale(1.03);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card .card-body {
    padding: 1.8rem;
}

.service-card h5 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.btn-outline-success {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-outline-success:hover {
    background: var(--primary);
    color: white;
}

/* Map */
.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==================== FEATURE CARDS - MODERN STYLE ==================== */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 130px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #219653);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.15) !important;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(33, 150, 83, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.feature-card:hover .icon-wrapper {
    background: var(--primary);
    transform: scale(1.1);
}

.feature-card:hover .icon-wrapper i {
    color: white !important;
}

.feature-card h6 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.feature-card small {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.2rem 0.8rem;
        min-height: 110px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .feature-card h6 {
        font-size: 1rem;
    }
}

/* Large Glamorous Footer */
.footer {
    background: linear-gradient(135deg, var(--dark), #1a252f);
    color: var(--light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
}

.footer a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .slider-img {
        height: 280px;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .service-card img {
        height: 200px;
    }
}



/* ==================== CONTACT FORM STYLING ==================== */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 18px 45px rgba(39, 174, 96, 0.15);
    transform: translateY(-5px);
}

.contact-form-card .form-control {
    border: 2px solid #e0e0e0;
    background: #f8f9fa;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.75rem 1.2rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.2);
    outline: none;
}

.contact-form-card .form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

.contact-form-card .btn-success {
    background: linear-gradient(135deg, var(--primary), #219653);
    border: none;
    padding: 0.9rem;
    font-size: 1.05rem;
    transition: all 0.4s;
}

.contact-form-card .btn-success:hover {
    background: linear-gradient(135deg, #219653, var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
}

.contact-form-card .invalid-feedback {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.contact-form-card .form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

/* Success Animation */
.success-message {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== ABOUT US SECTION ==================== */
.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-img-wrapper img {
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.stats-badge {
    transform: translateY(20px);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ==================== FAQ ACCORDION STYLING ==================== */
.accordion-button {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: var(--dark) !important;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: #f8f9fa;
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.accordion-item {
    border: 1px solid #e9ecef !important;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
}



 .page-header {
      background: linear-gradient(135deg, #4a90e2, #0078d7);
      color: white;
    height: 100px;
      text-align: center;
      position: relative;
      margin-top: 70px;
      padding-top: 10px;
  
    }

    .breadcrumb {
      font-size: 14px;
      opacity: 0.9;
      margin-bottom: 10px;
    }

    .breadcrumb a {
      color: #fff;
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .page-header h1 {
      font-size: 36px;
      margin: 0;
      font-weight: 600;
    }

    .page-header p {
      font-size: 16px;
      opacity: 0.9;
      margin-top: 10px;
    }