/* theme variables for consistent colors and easy tweaking */
:root {
    --primary: #1d0038;
    --secondary: #1d0038;
    --accent: #fbbf24;
    --light-bg: #f8fafc;
    --lighter-bg: #f0f4f8;
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: var(--lighter-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 80vw; /* restrict overall content width to 80% of viewport */
}

/* ensure full width on very large screens while retaining 80% rule */
@media (min-width: 1500px) {
    .container {
        width: 1200px;
    }
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* move logo further left by giving it automatic right margin */
.navbar .logo {
    margin-right: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 70px; /* increased size */
    width: auto;
    border-radius: 5px;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* slightly smaller on mobile */
    }
}

.logo-text {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    
    padding: 120px 20px;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* slanted bottom divider for hero/slider */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
   
    transform: skewY(-3deg);
    transform-origin: top left;
}

/* Page Hero Section */
.page-hero {
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 14px 40px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    background: var(--accent);
    color: var(--secondary);
}

/* Services Section */
.services {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--secondary);
    font-weight: 700;
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

/* generic section heading underline */
section h2 {
    position: relative;
}
section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 20px;
    background: white;
}

.featured-services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 700;
    position: relative;
}

.featured-services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* legacy card layout (kept for other pages) */
.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* alternative full-image hero cards used on home page */
.featured-services-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.service-card-alt {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-alt:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.service-card-alt .card-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-card-alt h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card-alt p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-alt .card-btn {
    background: white;
    color: #1e40af;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card-alt .card-btn:hover {
    background: #fbbf24;
    color: #1e40af;
}

/* make cards slightly shorter on small screens */
@media (max-width: 768px) {
    .service-card-alt {
        height: 300px;
    }
    .service-card-alt .card-overlay {
        padding: 1.5rem;
    }
}

.featured-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
    display: flex;
    flex-direction: column;
}

.featured-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.featured-service-card .service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.featured-service-card .service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-service-card h3 {
    color: #1e40af;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.service-pricing span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f59e0b;
}

.service-btn {
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.service-card {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.service-card h3 {
    color: #1e40af;
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    min-height: 60px;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f59e0b;
    margin-top: 1rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.price-details span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d0038;
    background: #eff6ff;
    padding: 0.7rem;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
}

/* Hours Section */
.hours {
    padding: 100px 20px;
    background: var(--light-bg);
}

.hours h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.hours-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hours-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.day-hours {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1d0038;
    transition: all 0.3s ease;
}

.day-hours:hover {
    background: #eff6ff;
}

.day-hours h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.day-hours p {
    color: #475569;
    font-size: 1rem;
    font-weight: 500;
}

.hours-note {
    background: #eff6ff;
    padding: 2.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #bfdbfe;
}

.hours-note p {
    margin-bottom: 1rem;
    color: #334155;
    line-height: 1.8;
}

.hours-note p strong {
    color: #1e40af;
    font-weight: 700;
}

/* Latest Packages Section (home page featured) */
.latest-packages {
    padding: 100px 20px;
    background: white;
}

.latest-packages .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.latest-packages .package-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.latest-packages .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.latest-packages .package-card .card-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.latest-packages .package-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.latest-packages .package-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.latest-packages .package-card .card-btn {
    background: white;
    color: #1e40af;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.latest-packages .package-card .card-btn:hover {
    background: #fbbf24;
    color: #1e40af;
}

/* make cards slightly shorter on small screens */
@media (max-width: 768px) {
    .service-card-alt {
        height: 300px;
    }
    .service-card-alt .card-overlay {
        padding: 1.5rem;
    }
    /* latest packages mobile fix */
    .latest-packages .package-card {
        height: 300px;
    }
    .latest-packages .package-card .card-overlay {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: var(--lighter-bg);
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-slider .slider-container {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.testimonials-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.testimonials-slider .slider-btn.prev {
    left: -10px;
}

.testimonials-slider .slider-btn.next {
    right: -10px;
}

.testimonials-slider .slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-slider .testimonial-card {
    flex: 0 0 100%;
    max-width: 600px;
    margin: 50px;
    flex-shrink: 0;
}

.testimonials-slider .testimonial-card:last-child {
    margin-right: 0;
}

.testimonials-slider .slider-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary);
    padding: 0 1rem;
    transition: color 0.3s ease;
}

.testimonials-slider .slider-btn:hover {
    color: var(--primary);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--accent);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.12);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    color: #1e40af;
    font-weight: 700;
}

/* FAQs Section */
.faqs {
    padding: 100px 20px;
    background: white;
}

.faqs h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1d0038;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.1);
}

.faq-question {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 700;
}

.faq-question:hover {
    color: #f59e0b;
}

.faq-answer {
    color: #475569;
    line-height: 1.8;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links h3 {
    color: white;
    font-weight: 700;
}

.socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    border: none;
    transition: all 0.4s ease;
}

.social-icon:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0a66c2 100%);
}

.social-icon.tiktok:hover {
    background: linear-gradient(135deg, #000000 0%, #25f4ee 100%);
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(30, 64, 175, 0.15);
}

/* lightbox modal styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.contact.contact-cta {
    background-color: transparent;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.contact.contact-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item h3 {
    color: #1e40af;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-item p {
    color: #475569;
    line-height: 1.8;
}

.info-item a {
    color: #1d0038;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.info-item a:hover {
    color: #f59e0b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 13px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #334155;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #1d0038;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}


/* ===========================
   MOBILE RESPONSIVENESS
=========================== */

/* Small Phones */
@media (max-width: 576px) {

    /* Hero */
    .page-hero h1 {
        font-size: 2rem !important;
    }

    .page-hero p {
        font-size: 1rem !important;
    }

    /* Contact Main Layout */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* Contact Info */
    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    /* Form */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1rem;
        padding: 10px;
    }

    /* Buttons Stack */
    .button-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .submit-btn {
        width: 100%;
    }

    /* Map Section */
    .contact-info-section > .container > div {
        grid-template-columns: 1fr !important;
    }

    iframe {
        height: 250px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}


/* Tablets */
@media (max-width: 900px) {

    /* Contact Layout */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Map Grid */
    .contact-info-section > .container > div {
        grid-template-columns: 1fr;
    }

    iframe {
        height: 320px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Large Screens */
@media (min-width: 1400px) {

    .container {
        max-width: 1300px;
    }

    .contact-form {
        padding: 2.5rem;
    }
}

.submit-btn {
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
}

.email-btn {
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
}

@media (max-width: 768px) {
    .button-group {
        grid-template-columns: 1fr;
    }
}

/* Slider Section */
.slider-section {
    padding: 0;
    background: #1a1a1a;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 1rem; /* spacing between slides */
}

.slider-track .slide:last-child {
    margin-right: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.5) 0%, rgba(37, 99, 235, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.overlay-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    padding: 14px 40px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.3);
}

.overlay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 99, 235, 0.7);
    color: white;
    border: none;
    font-size: 28px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #1d0038;
    padding: 12px 20px;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
    padding: 2.5rem;
    font-weight: 500;
}

/* Footer layout for contact details */
.footer-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1;
    min-width: 200px;
    text-align: left;
}
.footer-col h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
.footer-col p, .footer-col a {
    color: #cbd5e1;
    margin: 0.35rem 0;
    text-decoration: none;
}
.footer a {
    color: #fbbf24;
    text-decoration: none;
}
.footer a:hover { text-decoration: underline; }

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid #1d0038;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d0038, #3b82f6, #60a5fa);
}

/* Individual card colors */
.stat-card:nth-child(1) {
    border-left-color: #ec4899;
}

.stat-card:nth-child(1)::before {
    background: linear-gradient(90deg, #ec4899, #f472b6, #f9a8d4);
}

.stat-card:nth-child(1) .stat-number {
    color: #ec4899;
}

.stat-card:nth-child(2) {
    border-left-color: #8b5cf6;
}

.stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa, #c4b5fd);
}

.stat-card:nth-child(2) .stat-number {
    color: #8b5cf6;
}

.stat-card:nth-child(3) {
    border-left-color: #06b6d4;
}

.stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, #06b6d4, #22d3ee, #67e8f9);
}

.stat-card:nth-child(3) .stat-number {
    color: #06b6d4;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #1d0038;
    margin-bottom: 0.5rem;
    display: block;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

/* Mobile Phones */
@media (max-width: 576px) {

    .stats-section {
        padding: 2.5rem 0;
        margin: 1.5rem 0;
    }

    .stats-grid {
        gap: 1.2rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
        border-left-width: 4px;
    }

    .stat-icon {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2rem;
        min-height: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Tablets */
@media (max-width: 900px) {

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Large Screens */
@media (min-width: 1400px) {

    .stats-grid {
        max-width: 1200px;
        margin: auto;
    }

    .stat-card {
        padding: 2.5rem;
    }

    .stat-number {
        font-size: 3.4rem;
    }
}


    .footer { padding: 2rem 1rem; }




/* =========================
   NAVBAR
========================= */

.navbar {
    background: linear-gradient(135deg, #1d0038, #1d0038);
    padding: 15px 0;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Desktop Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffd54f;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    list-style: none;
    min-width: 180px;
    display: none;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 10px 15px;
    display: block;
}

.dropdown-menu a:hover {
    background: #f3e5f5;
    color: #1d0038;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1d0038, #1d0038);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        text-align: center;
        padding: 0;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 15px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: white;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    z-index: 999;
    border-radius: 6px;
}

.dropdown-menu li {
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f8f8f8;
}

/* Show on hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}




