@charset "utf-8";
/* CSS Document */
/* --- 1. GENERAL RESET & FONTS --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Arial', sans-serif; 
    line-height: 1.6; 
    color: #333; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; /* Keeps footer at bottom */
}
img { max-width: 100%; height: auto; display: block; }
main { flex: 1; } /* Pushes footer down */

/* --- 2. HEADER & NAV --- */

/* Header Base - Deep Midnight Purple */
.magic-header {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    border-bottom: 2px solid #5d54a4; /* Soft purple border */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styling */
.logo { text-decoration: none; }

.logo-main {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); /* Blue glow */
}

.logo-sub {
    color: #00d4ff; /* Electric Blue */
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.4s;
}

.nav-links a:hover {
    color: #00d4ff; /* Glow Blue */
    text-shadow: 0 0 8px #00d4ff;
}

/* 1. Hide the button on Desktop/Laptop by default */
.nav-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
}

/* 2. Show the button ONLY on Tablet and Mobile (768px and below) */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block; /* The icon appears now */
    }

    .nav-links {
        display: none; /* Hide the long list of links */
    }
    
    /* This class is used by your JavaScript to show the menu */
    .nav-links.active {
        display: block;
    }
}

/* The Glowing "Book Now" Button */
.magic-btn {
    background: transparent;
    border: 2px solid #00d4ff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    color: #00d4ff !important;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.magic-btn:hover {
    background: #00d4ff !important;
    color: #0f0c29 !important;
    box-shadow: 0 0 20px #00d4ff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden by default on mobile */
        /* ... your other mobile styles ... */
    }

    /* This is what the JS "turns on" */
    .nav-links.active {
        display: block !important; 
    }
}

/* Responsive Mobile Style */
@media (max-width: 768px) {
    .nav-toggle { display: block; color: #fff; background: none; border: none; font-size: 1.5rem; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #24243e; /* Solid Purple-Blue for Mobile */
        padding: 30px 0;
        text-align: center;
    }
    
    .nav-links.active { display: block; }
    .nav-links ul { flex-direction: column; gap: 25px; }
}

/* --- 3. SECTIONS (General) --- */

.hero-section {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%); /* Deep Purple Gradient */
    padding: 80px 20px;
    color: #ffffff;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Centers text vertically with the image */
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1; /* Takes up 50% width */
}

.glow-text {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6); /* Electric Blue Glow */
}

.blue-subtitle {
    color: #00d4ff; /* Electric Blue */
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-main {
    background: #00d4ff;
    color: #0f0c29;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #302b63;
}

/* Image Styling */
.hero-image {
    flex: 1; /* Takes up 50% width */
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
   
}

/* --- MOBILE VIEW --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column; /* Stacks text on top of image */
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: -1; /* Puts image ABOVE text on mobile for better impact */
    }

    .glow-text {
        font-size: 2.5rem;
    }
}



.services-section {
    background: #0f0c29; /* Matches the hero background */
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensures images don't stretch */
    filter: grayscale(20%);
    transition: 0.3s;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #00d4ff; /* Electric Blue */
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover Effects - The Magic Touch */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.service-card:hover .card-image img {
    filter: grayscale(0%);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-ribbon {
    background-color: #ffffff;
    padding: 40px 0; /* Significantly reduced height */
    border-bottom: 1px solid #eee;
}

.ribbon-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around; /* Spreads items evenly across the row */
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

/* Bigger Red Icons */
.big-suit {
    color: #cc0000;
    font-size: 3.5rem; /* Large, bold icons */
    line-height: 1;
}

.ribbon-text h3 {
    font-size: 1.1rem;
    color: #302b63;
    margin: 0;
    text-transform: uppercase;
}

.ribbon-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Mobile: Stack them slightly but keep it tight */
@media (max-width: 768px) {
    .ribbon-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .ribbon-item {
        flex-direction: column;
        gap: 5px;
    }
}

/* About Section Base */
.about-section {
    background-color: #f4f4f4; /* Light Grey Background */
    padding: 100px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side Text */
.about-text {
    flex: 1.2;
}

.red-title-small {
    color: #cc0000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 10px;
}

.dark-subtitle {
    color: #111;
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-outline-dark {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-outline-dark:hover {
    background: #111;
    color: #fff;
}

/* Right Side Image */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    /* Adding a subtle border to help it stand out on the grey */
    border: 8px solid #ffffff; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Responsive View --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .dark-subtitle {
        font-size: 2rem;
    }
}

/* --- 4. TESTIMONIALS (With Dark Overlay) --- */

.testimonial-section {
    position: relative;
    /* Replace 'your-image.jpg' with your actual image path */
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                url('../assets/img/image1.jpg') no-repeat center center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.testimonial-overlay {
    width: 100%;
    padding: 60px 20px;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}



.t-slide.active {
    opacity: 1;
    position: relative;
}

.t-text {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.t-name {
    color: #00d4ff; /* Magical Blue */
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.t-date {
    font-size: 0.85rem;
    color: #bbb;
    display: block;
}

/* Update the main container to allow growth */
.testimonial-content {
    position: relative;
    width: 100%;
    min-height: 250px; /* Instead of fixed height */
}

/* Ensure the slides don't cut off */
.t-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    padding-bottom: 20px; /* Extra room for the date */
}

/* --- MOBILE SPECIFIC FIX --- */
@media (max-width: 768px) {
    .testimonial-section {
        min-height: 500px; /* Gives the whole section more room */
        padding: 40px 10px;
    }

    .testimonial-content {
        min-height: 400px; /* Increase this if the text is very long */
    }

    .t-text {
        font-size: 1.1rem; /* Slightly smaller text so it fits better */
        line-height: 1.5;
    }
}


/* --- 5. FOOTER (Responsive & Clean) --- */
.magic-footer {
    /* Matching the Header Gradient */
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #ffffff;
    padding: 60px 20px 40px;
    border-top: 2px solid #5d54a4;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    color: #00d4ff; /* Electric Blue */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 2rem;
    color: #fff;
    transition: 0.3s;
}

.fb:hover { color: #1877F2; }
.yt:hover { color: #FF0000; }

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* --- 6. MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    nav ul { flex-direction: column; text-align: center; gap: 10px; }
    section { padding: 40px 15px; }
    .footer-grid { text-align: center; }
}

.narrow-carousel {
    background: #0f0c29;
    padding: 60px 0;
    text-align: center;
}

.carousel-title {
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    max-width: 900px; /* This makes it "Narrow" */
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-viewport {
    overflow: hidden; /* Hides the images not in view */
    border: 3px solid #00d4ff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.carousel-slide {
    min-width: 100%; /* Shows 1 image at a time. Change to 33.3% for 3 images */
    height: 400px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps images from looking stretched */
}

/* Nav Buttons */
.c-prev, .c-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00d4ff;
    border: none;
    color: #0f0c29;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-weight: bold;
    z-index: 10;
}

.c-prev { left: 0; }
.c-next { right: 0; }

.c-prev:hover, .c-next:hover { background: #fff; }