﻿/* =========================
   GLOBAL RESET (SAFE)
   ========================= */

html,
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    width: 100%;
    overflow-x: hidden;
}


.bg-purple {
    background: linear-gradient(135deg, #7e3ff2, #b46ff8);
}

/* =========================
   SECTIONS
   ========================= */

.section {
    width: 100%;
}

/* =========================
   FULL-BLEED SECTION
   ========================= */

.section-fluid {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
}

/* =========================
   ROWS
   ========================= */

.section-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* =========================
   COLUMNS
   ========================= */

.section-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.25rem;
}

.inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* =========================
   2 COLUMN LAYOUT (DESKTOP)
   ========================= */

@media (min-width: 992px) {
    .section-row.section-2col {
        flex-direction: row;
    }

    .section-2col .section-col {
        width: 50%;
        padding: 5rem 4vw;
    }
}

/* =========================
   OPTIONAL THEMES
   ========================= */

.section-dark {
    background-color: #020617;
    color: #ffffff;
}

.section-light {
    background-color: #ffffff;
    color: #020617;
}

.section-muted {
    background-color: #f8fafc;
    color: #020617;
}

/* -------- SECTION TITLES -------- */
.section-title-wrapper {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    color: black;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

    .section-title::after {
        content: "";
        display: block;
        height: 4px;
        width: 60%;
        margin: 8px auto 0 auto;
        border-radius: 4px;
        background: linear-gradient(90deg, #ff2fd6, #2ff8ff);
        box-shadow: 0 0 10px rgba(255, 47, 214, 0.5);
    }


.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: black;
    margin-top: 2px;
    margin-bottom: 0;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1, h2, h3, h4, h5, h6 {
    color: #020617; /* black */
}
p {
    color: #020617;
}

.h-white h1,
.h-white h2,
.h-white h3,
.h-white h4,
.h-white h5,
.h-white h6 {
    color: #ffffff;
}
.h-white p {
    color: #ffffff;
}

.h-gray h1,
.h-gray h2,
.h-gray h3,
.h-gray h4,
.h-gray h5,
.h-gray h6 {
    color: #9ca3af;
}

.h-white p {
    color: #9ca3af;
}



/* =========================
   MOBILE TYPOGRAPHY
   ========================= */

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    h4 {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    h5 {
        font-size: 1rem;
        line-height: 1.4;
    }

    h6 {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.btn1 {
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 700;
    background: linear-gradient(135deg, #7e3ff2, #b46ff8);
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(98, 54, 255, 0.6);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 320px; /* ✅ max width */
    width: 100%; /* allows centering within max-width */

    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
    align-self: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



    .btn1 i {
        margin-right: 10px;
        font-size: 1.1rem;
    }

    .btn1:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 10px rgba(98, 54, 255, 0.6);
        text-decoration: none;
    }


.btn2 {
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 700;
    background: #ffffff; /* 🔁 reversed */
    color: #7e3ff2 !important; /* 🔁 reversed */

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* neutral shadow */

    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
    align-self: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .btn2 i {
        margin-right: 10px;
        font-size: 1.1rem;
    }

    .btn2:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        text-decoration: none;
    }



/* =========================
   ABOUT SLIDER
   ========================= */

.about-slider {
    position: relative;
    min-height: 320px; /* IMPORTANT: lock container height */
}

.about-slide {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */

    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: rotateY(90deg);
    backface-visibility: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease;
    font-size: 1.95rem;
    line-height: 1.7;
    font-weight: 500;
    background: linear-gradient(135deg, #7e3ff2, #b46ff8);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    pointer-events: none;
}

    .about-slide.active {
        opacity: 1;
        transform: rotateY(0deg);
        pointer-events: auto;
    }



.about-slide-text {
    text-align: justify;
    color: #ffffff;
}

    .about-slide-text h1,
    .about-slide-text h2,
    .about-slide-text h3,
    .about-slide-text h4,
    .about-slide-text h5,
    .about-slide-text h6 {
        color: #ffffff;
    }
    .about-slide-text p {
        color: #ffffff;
    }


.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none; /* remove background */
    border: none;
    border-radius: 0; /* no circular background */

    padding: 6px;
    font-size: 1.4rem;
    color: #020617;
    cursor: pointer;
    user-select: none;
}



    .about-slider-arrow.left {
        left: 6px;
    }

    .about-slider-arrow.right {
        right: 6px;
    }


@media (max-width: 768px) {
    .about-slider {
        position: relative;
        min-height: 230px;
        max-width: 100%;
        padding: 10px 20px;
        perspective: none;
    }

    .about-slide {

        position: absolute;
        display: none;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
        font-size: 1.1rem;
        line-height: 1.6;
    }

        .about-slide.active {
            display: block;
        }

    /* Hide arrows on mobile (better UX) */
    .about-slider-arrow {
        display: none;
    }
}
/* =========================
   HERO
   ========================= */

.hero-weare {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.35;
    color: #000;
}


.hero-brand {
    font-weight: 900;
    font-size: 2.6rem;
    background: linear-gradient(135deg, #7e3ff2, #b46ff8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subline {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
}

/* Responsive iframe */
.hero-right-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .hero-right-bottom iframe {
        width: 80%;
        aspect-ratio: 16 / 9; /* ✅ fixes distortion */
        border: none;
        border-radius: 12px;
    }

/* =========================
   STATS – RESPONSIVE ROW
   ========================= */

/* Individual stat */
.stat-item {
    min-width: 160px;
}


/* =========================
   BLOG GRID (MINIMAL)
   ========================= */

.blog-card {
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
}

.blog-card-excerpt {
    flex-grow: 1; 
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.blog-card-content .btn1 {
    margin-top: auto;
}

@media (max-width: 900px) {
    .blog-section .inline {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CITY TABS
   ========================= */

.city-tabs {
    overflow-x: auto;
    margin-bottom: 2.5rem;
}

    .city-tabs .nav-tabs {
        border: none;
        display: flex;
        gap: 0.75rem;
        justify-content: center;
    }

    .city-tabs .nav-link {
        border: none;
        border-radius: 999px;
        padding: 0.5rem 1.25rem;
        font-weight: 600;
        color: #374151;
        background: rgba(24, 119, 242, 0.1);
        white-space: nowrap;
    }

        .city-tabs .nav-link.active {
            background: linear-gradient(135deg, #7e3ff2, #b46ff8);
            color: #ffffff;
        }

/* =========================
   CITY CARD
   ========================= */

.city-card {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
}

.city-card-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* Image */
.city-image {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin: 1.5rem 0;
}

/* Text */
.city-card h3 {
    margin-bottom: 1rem;
}

.city-details p {
    margin-bottom: 0.75rem;
    color: #374151;
}

.city-details i {
    margin-right: 6px;
    color: #7e3ff2;
}

/* =========================
   CITY SOCIAL BUTTONS
   ========================= */

.city-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Base button */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

    /* Facebook */
    .social-btn.facebook {
        color: #1877f2;
        background: rgba(24, 119, 242, 0.1);
    }

    /* Instagram */
    .social-btn.instagram {
        color: #e1306c;
        background: rgba(225, 48, 108, 0.1);
    }

    .social-btn:hover,
    .social-btn:focus,
    .social-btn:active {
        text-decoration: none;
    }

/* Hover (desktop only) */
@media (hover: hover) {
    .social-btn:hover {
        transform: translateY(-2px);
    }
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    background-color: #020617;
    color: #9ca3af;
}

    /* Links */
    .site-footer a {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
    }

    /* Icons */
    .site-footer i {
        color: #ffffff;
    }

/* Copyright */
.footer-copy {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Legal links (Privacy / Terms) */
.footer-legal {
    font-size: 0.8rem;
    color: #9ca3af;
    opacity: 0.8;
}

    .footer-legal a {
        color: #9ca3af;
        font-size: 0.8rem;
        font-weight: 400;
    }


/* Hover (desktop only) */
@media (hover: hover) {
    .site-footer a:hover {
        opacity: 0.8;
    }

    
}



