/* Enhanced Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
    color: #333;
    line-height: 1.6;
}

/* Offer Popup Styles */
.offer-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.5s;
}

.offer-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideIn 0.5s;
}

.offer-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.offer-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #dc3545;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    border-radius: 50%;
    transform: rotate(15deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.offer-body {
    padding: 20px;
    text-align: center;
}

.offer-body h4 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
}

.offer-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.offer-item {
    flex: 1;
    min-width: 120px;
    margin: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-item h5 {
    margin-top: 0;
    color: #0d6efd;
    font-size: 16px;
}

.original-price {
    text-decoration: line-through;
    color: #dc3545;
    margin: 5px 0;
    font-size: 14px;
}

.offer-price {
    font-weight: bold;
    color: #198754;
    margin: 5px 0;
    font-size: 16px;
}

.offer-note {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 20px;
}

.offer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-popup:hover {
    transform: scale(1.2);
}

/* Improved Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.hero-title {
    animation: fadeInDown 1.2s ease-out;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    color: #000000;
}

.hero-subtitle {
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    animation: fadeIn 1.5s ease-out;
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* Enhanced Package Cards */
.package-card {
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 1.25rem;
    font-weight: bold;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.per-person {
    font-size: 1rem;
    color: #666;
}

/* Improved Testimonial Cards */
/* Enhanced Testimonial Styles */
.testimonials-section {
    background-color: #f8f9fa;
    position: relative;
}

.testimonial-card {
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    color: #0d6efd;
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-img-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Responsive Improvements */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 80%;
    }
    
    .offer-popup-content {
        margin: 15% auto;
        width: 90%;
        max-width: 320px;
    }
    
    .offer-header h3 {
        font-size: 20px;
    }
    
    .discount-badge {
        font-size: 14px;
        padding: 10px;
        top: -10px;
        right: -10px;
    }
    
    .offer-body {
        padding: 15px 10px;
    }
    
    .offer-body h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .offer-items {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .offer-item {
        margin: 5px 0;
        padding: 10px;
    }
    
    .offer-item h5 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .original-price, .offer-price {
        font-size: 13px;
        margin: 3px 0;
    }
    
    .offer-note {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .offer-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .offer-buttons .btn {
        width: 100%;
        padding: 8px;
        font-size: 13px;
    }
}

/* Gallery Styles */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-image-container img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-image-container:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    color: white;
    font-size: 1.5rem;
    background-color: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallery-overlay a:hover {
    background-color: var(--bs-primary);
}

/* Contact Form Styles */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

.social-icons a {
    color: #333;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--bs-primary);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Team Member Styles */
.team-img {
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-10px);
}

/* About Image Styles */
.about-image-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.about-image-container img {
    transition: transform 0.5s ease;
    width: 100%;
}

.about-image-container:hover img {
    transform: scale(1.03);
}

/* Package Images Styles */
.package-image, .group-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.package-image img, .group-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.package-image:hover, .group-image:hover {
    transform: translateY(-5px);
}

.package-image:hover img, .group-image:hover img {
    transform: scale(1.05);
}


/* Unique WhatsApp Button Design */
#whatsappBillBtn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#whatsappBillBtn:hover {
    background-color: #1DA851; /* Darker green on hover */
    transform: translateY(-2px);
}

#whatsappBillBtn i {
    font-size: 1.2rem;
}


/* Feature Cards */
.feature-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: #0d6efd;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
}


/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/camping-night.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 80%;
        margin: 0 !important;
    }
}

/* Enhanced Navbar */
.custom-navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Navbar scroll effect */
.navbar-scrolled {
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Enhanced Footer */
.footer-section {
    background-color: #212529;
    position: relative;
}

.footer-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #0d6efd;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #0d6efd;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0d6efd;
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-buttons .btn {
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Package Cards */
.package-card {
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 1.25rem;
    font-weight: bold;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.per-person {
    font-size: 1rem;
    color: #666;
}

/* Improved Testimonial Cards */
/* Enhanced Testimonial Styles */
.testimonials-section {
    background-color: #f8f9fa;
    position: relative;
}

.testimonial-card {
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    color: #0d6efd;
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-img-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Responsive Improvements */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 80%;
    }
    
    .offer-popup-content {
        margin: 15% auto;
        width: 90%;
        max-width: 320px;
    }
    
    .offer-header h3 {
        font-size: 20px;
    }
    
    .discount-badge {
        font-size: 14px;
        padding: 10px;
        top: -10px;
        right: -10px;
    }
    
    .offer-body {
        padding: 15px 10px;
    }
    
    .offer-body h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .offer-items {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .offer-item {
        margin: 5px 0;
        padding: 10px;
    }
    
    .offer-item h5 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .original-price, .offer-price {
        font-size: 13px;
        margin: 3px 0;
    }
    
    .offer-note {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .offer-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .offer-buttons .btn {
        width: 100%;
        padding: 8px;
        font-size: 13px;
    }
}

/* Gallery Styles */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-image-container img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-image-container:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    color: white;
    font-size: 1.5rem;
    background-color: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallery-overlay a:hover {
    background-color: var(--bs-primary);
}

/* Contact Form Styles */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

.social-icons a {
    color: #333;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--bs-primary);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Team Member Styles */
.team-img {
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-10px);
}

/* About Image Styles */
.about-image-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.about-image-container img {
    transition: transform 0.5s ease;
    width: 100%;
}

.about-image-container:hover img {
    transform: scale(1.03);
}

/* Package Images Styles */
.package-image, .group-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.package-image img, .group-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.package-image:hover, .group-image:hover {
    transform: translateY(-5px);
}

.package-image:hover img, .group-image:hover img {
    transform: scale(1.05);
}


/* Unique WhatsApp Button Design */
#whatsappBillBtn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#whatsappBillBtn:hover {
    background-color: #1DA851; /* Darker green on hover */
    transform: translateY(-2px);
}

#whatsappBillBtn i {
    font-size: 1.2rem;
}


/* Feature Cards */
.feature-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: #0d6efd;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
}


/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/camping-night.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 80%;
        margin: 0 !important;
    }
}

/* Enhanced Navbar */
.custom-navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Navbar scroll effect */
.navbar-scrolled {
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Enhanced Footer */
.footer-section {
    background-color: #212529;
    position: relative;
}

.footer-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #0d6efd;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #0d6efd;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0d6efd;
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}
