/* ================= GLOBAL TYPOGRAPHY ================= */

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 1px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HEADER */
.main-header {
    background: #ffffff;
    padding: 15px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 50px;
}

/* NAV MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}
/* ================= MOBILE NAV FIX ================= */

@media (max-width: 768px) {

    .navbar {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #0f0f1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 120px;
        gap: 30px;

        transition: right 0.4s ease;
        z-index: 10000;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 10001;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #fff;
        transition: 0.3s ease;
    }

}
/* ================= ABOUT PAGE MOBILE FIX ================= */

@media (max-width: 768px) {

    .about-intro {
        padding: 60px 20px;
    }

    .about-container {
        width: 100%;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-main-text {
        font-size: 16px;
    }

    .about-text p {
        font-size: 15px;
    }

    /* Stack highlight cards */
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-box {
        padding: 20px;
    }

}
/* ================= PACKAGES HERO ================= */

.packages-hero {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
    position: relative;
    overflow: hidden;
}

.packages-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(155,77,255,0.25),
        transparent 60%
    );
    animation: pulseHero 6s ease-in-out infinite;
}

@keyframes pulseHero {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.packages-hero-content {
    position: relative;
    z-index: 2;
}

.packages-hero h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.packages-hero p {
    color: #ddd;
    margin-top: 15px;
}
/* ================= PRICING SECTION ================= */

.pricing-section {
    padding: 100px 60px;
    background: #ffffff;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card Base */
.pricing-card {
    width: 320px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.08),
        rgba(0,123,255,0.08)
    );

    transition: 0.4s ease;
    cursor: pointer;
    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.05);
}

/* Animated Border Glow */
.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s ease;
}

/* Hover Effect */
.pricing-card:hover {
    transform: translateY(-12px) scale(1.03);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.1),
        0 0 50px rgba(155,77,255,0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Price Style */
.price {
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0;

    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}/* ================= SERVICES SECTION ================= */

.services-section {
    padding: 100px 60px;
    background: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

.services-heading {
    text-align: center;
    margin-bottom: 60px;
}

.services-heading h2 {
    font-size: 40px;

    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 15px;
}

.services-heading p {
    color: #555;
    font-size: 18px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Cards */
.service-card {
    padding: 40px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.06),
        rgba(0,123,255,0.06)
    );

    transition: 0.4s ease;
    position: relative;
}

/* Icon */
.service-icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: #9b4dff;
}

/* Hover */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 30px rgba(155,77,255,0.25),
        0 0 50px rgba(0,123,255,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px;
    }
}
/* ================= TOP BAR ================= */

/* ================= PREMIUM TOP BAR ================= */

.top-bar {
    background: linear-gradient(90deg, #9b4dff, #007bff, #9b4dff);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;

    color: #ffffff;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Subtle Shine Overlay */
.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-25deg);
    animation: shineMove 6s infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shineMove {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ================= PREMIUM CONTACT STYLE ================= */

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 25px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Icon Circle */
.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

/* Contact Text */
.contact-text {
    letter-spacing: 0.5px;
}

/* Hover Effects */
.contact-item:hover {
    transform: translateY(-2px);
    text-shadow:
        0 0 8px rgba(255,255,255,0.8),
        0 0 15px rgba(155,77,255,0.7);
}

.contact-item:hover .icon-circle {
    background: rgba(255,255,255,0.25);
    box-shadow:
        0 0 10px rgba(155,77,255,0.8),
        0 0 20px rgba(0,123,255,0.6);
}

/* Facebook Icon Same Style */
.facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Make Icons Slightly Brighter */
.top-left span,
.top-right a {
    position: relative;
    z-index: 2;
}

/* Facebook Glow */
.top-right a {
    color: #ffffff;
    font-size: 15px;
    transition: 0.3s ease;
}

.top-right a:hover {
    transform: scale(1.2);
    text-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 20px rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 10px 20px;
    }
}

.top-left span {
    margin-right: 20px;
}

.top-right a {
    color: #ccc;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Glow Hover */
.top-right a:hover {
    color: #fff;
    text-shadow:
        0 0 6px rgba(155,77,255,0.8),
        0 0 12px rgba(0,123,255,0.6);
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 8px 20px;
    }
}
/* ================= ACTIVE NAV LINK ================= */

.nav-link.active {
    position: relative;
    color: #ffffff;
}

/* Gradient underline */
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #9b4dff, #007bff);
}

/* Subtle glow */
.nav-link.active {
    text-shadow:
        0 0 8px rgba(155,77,255,0.6),
        0 0 15px rgba(0,123,255,0.4);
}
/* ================= FOOTER SOCIAL ================= */

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    color: #ccc;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
    text-shadow:
        0 0 6px rgba(155,77,255,0.8),
        0 0 12px rgba(0,123,255,0.6);
}
/* ===== GRADIENT GLOW ON HOVER ===== */
.nav-link:hover {
    background: linear-gradient(90deg, #9b4dff 50%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 6px rgba(155, 77, 255, 0.7),
        0 0 12px rgba(0, 123, 255, 0.5);
}

/* ===== UNDERLINE APPEARS ONLY ON HOVER ===== */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #9b4dff 50%, #007bff 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
/* ================= HERO SLIDER ================= */

/* ================= HERO DEPTH OVERLAY ================= */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.2) 100%
    );
    z-index: 1;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 6s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Overlay dark effect */
.hero-slider::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
}

/* Center content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

/* ================= CTA BUTTON ================= */

.cta-btn {
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    color: white;
    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    transition: all 0.4s ease;
    box-shadow:
        0 0 10px rgba(155, 77, 255, 0.6),
        0 0 20px rgba(0, 123, 255, 0.4);
}

/* Glow hover */
.cta-btn:hover {
    box-shadow:
        0 0 20px rgba(155, 77, 255, 0.9),
        0 0 40px rgba(0, 123, 255, 0.7);
}

/* Light-on effect */
.cta-btn.active-light {
    box-shadow:
        0 0 40px rgba(155, 77, 255, 1),
        0 0 80px rgba(0, 123, 255, 0.9);
}

/* ================= VISION SECTION ================= */

.vision-section {
    padding: 100px 60px;
    background: #f9f9f9;
}

.vision-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE SIDE */
.vision-image {
    flex: 1;
}

.vision-image img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

/* TEXT SIDE */
.vision-text {
    flex: 1;
    padding: 50px;
    border-radius: 35px;
    background: linear-gradient(135deg, rgba(155,77,255,0.08), rgba(0,123,255,0.08));
    transition: all 0.4s ease;
}

/* Gradient Heading */
.vision-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.vision-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

/* Hover Glow on Text Box */
.vision-text:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 25px rgba(155, 77, 255, 0.4),
        0 0 45px rgba(0, 123, 255, 0.3);
}
.container {
    padding: 40px;
}

/* ================= PACKAGES SECTION ================= */

.packages-section {
    padding: 100px 60px;
    background: #f4f6fb;
    text-align: center;
}

.packages-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* PACKAGE CARD */
.package-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Badge */
.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #9b4dff, #007bff);
    color: white;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* Headings */
.package-card h2 {
    font-size: 24px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* List */
.package-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-card ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

/* Price */
.price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111;
}

/* ORDER BUTTON */
.order-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    transition: 0.4s ease;
    box-shadow:
        0 0 10px rgba(155, 77, 255, 0.6),
        0 0 20px rgba(0, 123, 255, 0.4);
}

/* Glow Effect */
.package-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 25px rgba(155, 77, 255, 0.4),
        0 0 50px rgba(0, 123, 255, 0.3);
}

.order-btn:hover {
    box-shadow:
        0 0 20px rgba(155, 77, 255, 0.9),
        0 0 40px rgba(0, 123, 255, 0.7);
}

/* Premium Package Slight Dark Background */
.premium {
    background: linear-gradient(135deg, #f5f2ff, #eef5ff);
}
/* ================= SAMPLE WEBSITES SECTION ================= */

.samples-section {
    padding: 100px 60px;
    background: #ffffff;
}

.samples-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Section Title */
/* ================= PREMIUM SECTION HEADINGS ================= */

.section-title {
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;

    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated Underline Accent */
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #9b4dff, #007bff);
    transition: 0.4s ease;
}

/* Hover Expand Effect */
.section-title:hover::after {
    width: 120px;
}

/* Grid Layout */
.sample-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* Card */
.sample-card {
    background: #f8f9ff;
    padding: 40px 30px;
    border-radius: 30px;
    width: 300px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sample-card img {
    max-width: 180px;
    margin-bottom: 25px;
}

.sample-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #111;
}

/* Visit Button */
.visit-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    transition: 0.4s ease;
    box-shadow:
        0 0 10px rgba(155, 77, 255, 0.6),
        0 0 20px rgba(0, 123, 255, 0.4);
}

/* Glow Hover */
.sample-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 30px rgba(155, 77, 255, 0.4),
        0 0 60px rgba(0, 123, 255, 0.3);
}

.visit-btn:hover {
    box-shadow:
        0 0 20px rgba(155, 77, 255, 0.9),
        0 0 40px rgba(0, 123, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .sample-grid {
        flex-direction: column;
        align-items: center;
    }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .packages-container {
        flex-direction: column;
    }
}

/* ================= MOBILE DEVICES ================= */
@media (max-width: 768px) {

    /* NAVBAR */
    .main-header {
    background: #ffffff;
    padding: 15px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000; /* ADD THIS */
}

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* HERO */
    .hero-slider {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    /* VISION SECTION */
    .vision-section {
        padding: 60px 20px;
    }

    .vision-container {
        flex-direction: column;
        gap: 40px;
    }

    .vision-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;

    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #9b4dff, #007bff);
    transition: 0.4s ease;
}

.vision-text h2:hover::after {
    width: 120px;
}

}
/* ================= HERO DEPTH OVERLAY ================= */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.2) 100%
    );
    z-index: 1;
}

/* ================= HERO TEXT FIX ================= */

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #ffffff;
    max-width: 750px;
    margin-bottom: 30px;
}

/* Stronger highlight word */
.highlight-word {
    display: block;
    font-size: 64px;
    font-weight: 800;

    background: linear-gradient(90deg, #9b4dff 40%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 15px rgba(155,77,255,0.6),
        0 0 30px rgba(0,123,255,0.4);
}

/* ================= COMPACT FOOTER ================= */

.main-footer {
    background: #0f0f1a;
    color: #ccc;
    padding: 30px 60px 15px;
    font-size: 14px;
    position: relative;
}

/* Gradient Top Line */
.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #9b4dff, #007bff);
}

/* Layout */
.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT */
.footer-left img {
    height: 35px;
}

/* CENTER */
.footer-center {
    text-align: center;
}

.footer-center p {
    margin: 3px 0;
}

/* RIGHT */
.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s ease;
}

/* Glow Hover */
.footer-right a:hover {
    color: #fff;
    text-shadow:
        0 0 6px rgba(155,77,255,0.8),
        0 0 12px rgba(0,123,255,0.6);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #777;
}

/* Subtle Fade Animation */
.main-footer {
    animation: fadeInFooter 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInFooter {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #111;
    transition: all 0.3s ease;
}

/* ================= NAVBAR ================= */

.main-header {
    background: #ffffff;
    padding: 15px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
}

/* DESKTOP MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #111;
    transition: 0.3s;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .main-header {
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;  /* HIDE MENU COMPLETELY */
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 25px 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .nav-menu.active {
        display: flex;  /* SHOW ONLY WHEN ACTIVE */
    }

    .hamburger {
        display: flex;  /* SHOW HAMBURGER */
    }
}
footer {
    text-align: center;
    padding: 20px;
    background: #0a3d62;
    color: white;
    margin-top: 40px;
}
/* ================= PRELOADER ================= */

/* ================= PRELOADER FINAL CLEAN ================= */

.preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    background: #0f0f1a;
    z-index: 999999999 !important;
}

.loader-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.loader-logo img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}


.loader-logo img {
    width: 120px;
    animation: logoPulse 1.8s infinite ease-in-out;
}

/* Glow Pulse Animation */
@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px #9b4dff);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px #9b4dff)
                drop-shadow(0 0 40px #007bff);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px #9b4dff);
    }
}

/* Hide Animation */
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
/* ================= BUTTON LOADING ================= */

.cta-btn.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.cta-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.4);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* ================= MISSION SECTION ================= */

.mission-section {
    padding: 30px 20px;
    background: #ffffff;
}
.mission-section {
    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.05),
        rgba(0,123,255,0.05)
    );
}
.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}
.mission-paragraph-box {
    padding: 35px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.08),
        rgba(0,123,255,0.06)
    );

    transition: 0.4s ease;
}

/* Paragraph text */
.mission-paragraph-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

/* Hover effect */
.mission-paragraph-box:hover {
    box-shadow:
        0 0 25px rgba(155,77,255,0.25),
        0 0 45px rgba(0,123,255,0.15);

    transform: translateY(-5px);
}

.mission-paragraph-box:hover {
    background: rgba(255,255,255,0.6);
    box-shadow:
        0 0 25px rgba(155,77,255,0.25),
        0 0 45px rgba(0,123,255,0.15);
    transform: translateY(-5px);
}
/* TEXT */
.mission-text {
    flex: 1;
}
/* ================= ABOUT PARAGRAPH GLOW BOX ================= */

.about-paragraph-box {
    padding: 40px;
    margin-top: 25px;
    border-radius: 30px;

    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.12),
        rgba(0,123,255,0.08)
    );

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 25px rgba(155,77,255,0.25),
        0 0 45px rgba(0,123,255,0.15);

    transition: 0.4s ease;
}

/* Strong hover glow */
.about-paragraph-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 0 35px rgba(155,77,255,0.45),
        0 0 60px rgba(0,123,255,0.35);
}

/* Paragraph spacing */
.about-paragraph-box p {
    margin-bottom: 15px;
}
/* ================= MISSION TEXT STYLE ================= */

.mission-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;

    background: linear-gradient(90deg, #9b4dff 60%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Underline Accent */
.mission-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #9b4dff, #007bff);
    transition: 0.4s ease;
}

.mission-text h2:hover::after {
    width: 120px;
}

/* Paragraph Glow */
.mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    text-shadow:
        0 0 8px rgba(155,77,255,0.15),
        0 0 15px rgba(0,123,255,0.08);
}

.mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* VISUAL SIDE */
.mission-visual {
    flex: 1;
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CENTER CORE */
.orbit-center {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b4dff, #007bff);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 28px;
    box-shadow:
        0 0 20px rgba(155,77,255,0.8),
        0 0 40px rgba(0,123,255,0.6);
    animation: pulseCore 2.5s infinite ease-in-out;
}

/* ================= GLASS MISSION CARD ================= */

.mission-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-mission-card {
    width: 220px;
    height: 220px;
    border-radius: 30px;

    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(15px);

    border: 2px solid rgba(155,77,255,0.3);

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 0 25px rgba(155,77,255,0.3),
        0 0 45px rgba(0,123,255,0.2);

    animation: floatCard 4s ease-in-out infinite;
    transition: 0.4s ease;
}

.glass-mission-card img {
    width: 80px;
}

.glass-mission-card:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 35px rgba(155,77,255,0.5),
        0 0 60px rgba(0,123,255,0.3);
}

/* Floating animation */
@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
/* ================= PREMIUM ROUNDED CARD WITH SHINE ================= */

.mission-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* Main Card */
.mission-card {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
}

/* Shine Effect Layer */
.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-25deg);
    animation: shineSweep 5s infinite;
    z-index: 3;
}

/* Shine animation */
@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Inner Flip Container */
.mission-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

/* Flip on hover */
.mission-card:hover .mission-card-inner {
    transform: rotateY(180deg);
}

/* Faces */
.mission-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    backface-visibility: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.18),
        rgba(0,123,255,0.18)
    );

    backdrop-filter: blur(15px);

    border: 2px solid rgba(155,77,255,0.4);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.1),
        0 0 35px rgba(155,77,255,0.4),
        0 0 60px rgba(0,123,255,0.3);

    transition: box-shadow 0.3s ease;
}

/* Back Side */
.mission-back {
    transform: rotateY(180deg);
}

/* Logo Sizes */
.mission-front img {
    width: 100px;
}

.mission-back img {
    width: 180px;
}

/* Stronger glow on hover */
.mission-card:hover .mission-face {
    box-shadow:
        0 20px 50px rgba(0,0,0,0.15),
        0 0 50px rgba(155,77,255,0.6),
        0 0 80px rgba(0,123,255,0.5);
}
.mission-card {
    animation: subtleFloat 5s ease-in-out infinite;
}

@keyframes subtleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}
/* ================= FLOATING WHATSAPP BUTTON ================= */

.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

/* Text */
.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button */
.whatsapp-btn {
    width: 65px;
    height: 65px;
    perspective: 800px;
    text-decoration: none;
}

/* Flip Container */
.whatsapp-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

/* Flip on hover */
.whatsapp-btn:hover .whatsapp-inner {
    transform: rotateY(180deg);
}

/* Faces */
.whatsapp-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    font-size: 28px;
    color: white;
}

/* Purple Front */
.whatsapp-front {
    background: linear-gradient(135deg, #9b4dff, #6a2ccf);
    box-shadow:
        0 0 20px rgba(0,0,0,0.6),
        0 0 30px rgba(0,123,255,0.6);
}

/* Green Back */
.whatsapp-back {
    background: linear-gradient(135deg, #25D366, #1da851);
    transform: rotateY(180deg);
    box-shadow:
        0 0 30px rgba(155,77,255,0.6),
        0 0 50px rgba(0,123,255,0.6);
}

/* Floating animation */
.whatsapp-wrapper {
    animation: floatWhatsapp 4s ease-in-out infinite;
}

@keyframes floatWhatsapp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
/* ================= ABOUT HERO ================= */

.about-hero {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        135deg,
        #0f0f1a,
        #1a1a2e
    );

    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(155,77,255,0.2),
        transparent 60%
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;

    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    color: #ddd;
}/* ================= ABOUT INTRO SECTION ================= */

.about-intro {
    padding: 100px 60px;

    background:
        linear-gradient(
            rgba(255,255,255,0.9),
            rgba(255,255,255,0.9)
        ),
        url("../images/slide1.jpg");

    background-size: cover;
    background-position: center;
}
/* ================= NEW MISSION SECTION ================= */

.mission-section {
    padding: 120px 60px;
    background: #0f0f1a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.mission-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT CONTENT */
.mission-content {
    flex: 1;
    z-index: 2;
}

.mission-title {
    font-size: 42px;
    margin-bottom: 25px;

    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-big-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-sub-text {
    font-size: 17px;
    line-height: 1.8;
    color: #ccc;
}

/* RIGHT GLOW SHAPE */
.mission-glow-shape {
    flex: 1;
    height: 350px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(155,77,255,0.4),
        rgba(0,123,255,0.2),
        transparent 70%
    );

    filter: blur(60px);
    animation: glowMove 6s ease-in-out infinite;
}

@keyframes glowMove {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@media (max-width: 768px) {

    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-glow-shape {
        width: 250px;
        height: 250px;
    }

    .mission-title {
        font-size: 32px;
    }

    .mission-big-text {
        font-size: 18px;
    }
}
/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 120px 60px;
    background: #0f0f1a;
    color: #ffffff;
}

.contact-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* ================= LEFT FORM ================= */

.contact-form-wrapper {
    flex: 1;
}

.contact-title {
    font-size: 40px;
    margin-bottom: 40px;

    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Inputs */
.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    outline: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Float Effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #9b4dff;
    background: #0f0f1a;
    padding: 0 6px;
}

/* Glow on focus */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #9b4dff;
    box-shadow: 0 0 15px rgba(155,77,255,0.5);
}

/* Button */
.contact-btn {
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #9b4dff, #007bff);
    color: white;
    font-size: 16px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    box-shadow:
        0 0 25px rgba(155,77,255,0.7),
        0 0 45px rgba(0,123,255,0.5);
}

/* ================= RIGHT INFO ================= */

.contact-info {
    flex: 1;
    padding: 40px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.12),
        rgba(0,123,255,0.08)
    );

    box-shadow:
        0 0 25px rgba(155,77,255,0.25),
        0 0 45px rgba(0,123,255,0.15);

    transition: 0.3s ease;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 24px;
}

.info-item {
    margin-bottom: 20px;
    font-size: 16px;
    transition: 0.3s ease;
}

.info-item:hover {
    transform: translateX(8px);
    color: #9b4dff;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-section {
        padding: 80px 20px;
    }
}
.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;

    background: linear-gradient(90deg, #9b4dff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-main-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    line-height: 1.8;
    color: #444;
}

/* Highlights Grid */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Highlight Boxes */
.highlight-box {
    padding: 35px;
    border-radius: 25px;

    background: linear-gradient(
        135deg,
        rgba(155,77,255,0.08),
        rgba(0,123,255,0.08)
    );

    transition: 0.4s ease;
}

.highlight-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #111;
}

.highlight-box p {
    color: #555;
    font-size: 15px;
}

/* Hover Glow */
.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 30px rgba(155,77,255,0.25),
        0 0 50px rgba(0,123,255,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}