@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* ── Aurora palette ── */
    --indigo: #241B4E;
    --indigo-deep: #150F30;
    --coral: #FF6B5B;
    --coral-deep: #E14A3A;
    --amber: #FFB648;
    --amber-light: #FFD37D;
    --blush: #FFF3EA;
    --blush-soft: #FCE8D8;
    --ink: #2B2140;

    --pink: #FF6FA9;
    --yellow: #FFD93D;
    --green: #4ADE80;
    --signature-gradient: linear-gradient(120deg, var(--pink) 0%, var(--yellow) 50%, var(--green) 100%);

    /* back-compat aliases used across the file */
    --primary: var(--amber);
    --primary-dark: var(--coral);
    --primary-light: var(--amber-light);

    --glass-bg: rgba(255, 243, 234, 0.07);
    --glass-border: rgba(255, 182, 72, 0.3);
    --glass-hover: rgba(255, 243, 234, 0.13);

    /* soft glowing shadows instead of flat offset or blurred-black */
    --shadow-sm: 0 6px 20px rgba(255, 107, 91, 0.15), 0 2px 8px rgba(21, 15, 48, 0.3);
    --shadow-md: 0 14px 34px rgba(255, 107, 91, 0.18), 0 4px 14px rgba(21, 15, 48, 0.35);
    --shadow-lg: 0 24px 54px rgba(255, 182, 72, 0.2), 0 8px 24px rgba(21, 15, 48, 0.4);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Canvas ────────────────────────── */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.ui-content {
    position: relative;
    z-index: 10;
    backdrop-filter: blur(2px);
}

body {
    background: radial-gradient(ellipse at top, #2E2470 0%, #150F30 55%, #0D0A20 100%);
    color: var(--blush);
    line-height: 1.6;
    min-height: 100vh;
    scroll-behavior: smooth;
}

#canvas-container canvas {
    display: block;
}

/* ── Scrollbar ─────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--coral); }

/* ── Navbar ────────────────────────── */
.navbar {
    background: rgba(21, 15, 48, 0.68);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    color: #fff;
    padding: 0.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--signature-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

.logo-icon { display: flex; align-items: center; justify-content: center; position: relative; }

.logo-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(255, 182, 72,0.45));
}

/* stamped ring around the mark, like an official seal */
.logo-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(255, 182, 72,0.5);
    border-radius: 50%;
    pointer-events: none;
}

.logo:hover .logo-icon img { transform: scale(1.12) rotate(-4deg); }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
}

.nav-links li { margin: 0; position: relative; }

.nav-links a {
    color: rgba(255, 243, 234,0.82);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links a:hover {
    color: #fff;
    background: var(--glass-bg);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 60%; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(21, 15, 48, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 190px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--glass-border);
}

.dropdown-content a {
    color: rgba(255, 243, 234,0.78);
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 182, 72,0.08);
}

.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: var(--glass-hover); color: var(--amber-light); padding-left: 24px; }
.dropdown:hover .dropdown-content { display: block; animation: dropIn 0.2s ease; }

@keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Contact / Login button — styled like a ticket stub tab */
.contact-btn {
    background: var(--signature-gradient);
    color: var(--indigo-deep);
    padding: 9px 22px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 111, 169, 0.35);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 182, 72,0.5);
    background: linear-gradient(135deg, #fff, var(--amber-light));
}

.contact-btn:active { transform: translateY(0); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 4px; }

.hamburger span {
    height: 2px;
    width: 24px;
    background: var(--amber-light);
    border-radius: 4px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

/* ── Carousel ──────────────────────── */
.carousel-container {
    width: 100%;
    max-width: 95%;
    margin: 24px auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--glass-border);
}

/* glowing gradient orb — the page's signature motif */
.carousel-container::before {
    content: 'P';
    position: absolute;
    top: 22px;
    left: 22px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--indigo-deep);
    background: var(--signature-gradient);
    box-shadow: 0 0 0 6px rgba(255, 243, 234, 0.12), 0 8px 28px rgba(255, 107, 91, 0.55), 0 0 40px rgba(255, 182, 72, 0.35);
    z-index: 5;
}

.carousel { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.carousel-item {
    min-width: 100%;
    height: 520px;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    object-position: center;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 15, 48,0.7) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-caption {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--blush);
    padding: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.carousel-caption h3 {
    font-family: 'Sora', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.carousel-caption h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    margin: 14px auto 0;
}

.carousel-caption p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.92;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(21, 15, 48, 0.55);
    backdrop-filter: blur(10px);
    color: var(--amber-light);
    border: 1px solid var(--glass-border);
    padding: 0;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 100;
    transition: var(--transition);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(255, 182, 72,0.75);
    color: var(--indigo-deep);
    border-color: var(--amber);
    transform: translateY(-50%) scale(1.08);
}

.carousel-control.prev { left: 20px; }
.carousel-control.next { right: 20px; }

/* Thumbnails */
.carousel-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 100;
}

.thumbnail {
    width: 78px;
    height: 56px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.thumbnail:hover { opacity: 0.9; transform: scale(1.08) translateY(-3px); }

.thumbnail.active {
    opacity: 1;
    border-color: var(--amber);
    box-shadow: 0 0 0 2px rgba(255, 182, 72,0.35), var(--shadow-sm);
}

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

/* ── Feature Section — styled as ticket stubs ── */
.feature-section {
    display: flex;
    justify-content: space-evenly;
    margin: 50px auto;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 98%;
    gap: 16px;
}

.feature-item {
    text-align: center;
    width: 22%;
    padding: 28px 22px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90px;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--signature-gradient);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--glass-hover);
    border-color: rgba(255, 182, 72,0.45);
}

.feature-item:hover::before { transform: scaleX(1); }

.icon-number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon { font-size: 38px; filter: saturate(0.85); }

.feature-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--amber-light);
    background: transparent;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 182, 72,0.4);
}

.feature-item h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    color: var(--blush);
    text-align: center;
    letter-spacing: 1.5px;
}

/* ── Section Title ─────────────────── */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.3px;
}

.section-title h1:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--signature-gradient);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* ── Testimonial Section ───────────── */
.testimonial-section {
    padding: 90px 20px;
    text-align: center;
    background: rgba(21, 15, 48, 0.4);
    backdrop-filter: blur(10px);
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }

.testimonial-item { min-width: 100%; padding: 20px; box-sizing: border-box; }

.testimonial-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    gap: 15px;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--amber);
    box-shadow: 0 0 0 5px rgba(255, 182, 72,0.15);
    transition: var(--transition);
}

.testimonial-img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 0 5px rgba(255, 182, 72,0.3);
}

.testimonial-text {
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.9;
    font-size: 1.05rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: 'Sora', sans-serif;
    position: absolute;
    top: -14px; left: 20px;
    font-size: 5rem;
    color: var(--amber);
    opacity: 0.3;
    font-style: normal;
    line-height: 1;
}

.testimonial-author {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--amber-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* ── Team Section ──────────────────── */
.team-section {
    padding: 90px 20px;
    text-align: center;
}

.team-container { max-width: 95%; margin: 0 auto; }

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 50px;
    max-height: 600px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--amber) rgba(255,255,255,0.05);
}

.team-row::-webkit-scrollbar { width: 6px; }
.team-row::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 10px; }
.team-row::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 10px; }

.team-item {
    width: 240px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 182, 72,0.45);
}

.team-img-container { position: relative; overflow: hidden; height: 240px; }

.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-item:hover .team-img { transform: scale(1.08); }

.team-social {
    position: absolute;
    top: 50%;
    left: -44px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: var(--blush);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.team-social a {
    color: var(--coral);
    padding: 11px 12px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.team-social a:hover { color: var(--blush); background: var(--coral); }
.team-item:hover .team-social { left: 0; }

.team-info { padding: 18px 20px; border-top: 1px solid var(--glass-border); min-height: 80px; }
.team-info h5 { font-family: 'Sora', sans-serif; font-size: 1.05rem; margin-bottom: 5px; font-weight: 600; }
.team-info small { color: var(--amber-light); font-style: italic; font-size: 0.85rem; }

/* ── Portfolio Section (Course Details) ── */
.portfolio-section {
    max-width: 95%;
    margin: 44px auto;
    padding: 44px 24px;
    background: rgba(21, 15, 48, 0.72);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    max-height: 620px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--amber) rgba(255,255,255,0.05);
}

.portfolio-section::-webkit-scrollbar { width: 6px; }
.portfolio-section::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.portfolio-section::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 10px; }

.container { width: 100%; max-width: 95%; margin: 0 auto; }

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: 'JetBrains Mono', monospace;
    padding: 10px 22px;
    background: rgba(255, 182, 72,0.08);
    color: rgba(255, 243, 234,0.8);
    border: 1px solid rgba(255, 182, 72,0.35);
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.78rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.filter-btn:hover {
    background: rgba(255, 182, 72,0.16);
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(255, 182, 72,0.6);
}

.filter-btn.active {
    background: var(--signature-gradient);
    color: var(--indigo-deep);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 111, 169,0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 182, 72,0.4);
}

.portfolio-img-container { position: relative; overflow: hidden; height: 220px; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover .portfolio-img { transform: scale(1.08); }

/* perforated "tear" line between image and details, like a ticket stub */
.portfolio-img-container::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--signature-gradient);
    z-index: 2;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 91,0.85), rgba(36, 27, 78,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-actions { display: flex; gap: 14px; }

.portfolio-action-btn {
    width: 48px;
    height: 48px;
    background: var(--amber-light);
    color: var(--indigo-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.portfolio-action-btn:hover {
    background: #fff;
    transform: scale(1.1) rotate(4deg);
}

.portfolio-info { padding: 18px 20px; }

.portfolio-category {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    background: transparent;
    color: var(--amber-light);
    padding: 3px 10px;
    border: 1px solid rgba(255, 182, 72,0.4);
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.portfolio-title { font-family: 'Sora', sans-serif; font-size: 1.2rem; margin-bottom: 5px; color: #f8f8f8; font-weight: 600; }

/* ── Quote / Study-plan form ─────────── */
.quote-container { max-width: 95%; margin: 44px auto; padding: 0 20px; }

.quote-row {
    display: flex;
    flex-wrap: wrap;
    background: var(--blush);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quote-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--pink) 45%, var(--yellow) 80%, var(--green) 130%);
}

.quote-image::before {
    content: 'EST.';
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
}

.image-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    text-align: center;
}

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

.quote-text {
    flex: 1;
    min-width: 300px;
    padding: 44px;
    display: flex;
    align-items: center;
    background: var(--blush);
}

.form-wrapper { width: 100%; }

.quote-heading {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    color: var(--indigo);
    margin-bottom: 12px;
    font-weight: 700;
}

form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.form-row > * { flex: 1; min-width: 200px; }

.form-input {
    padding: 13px 4px;
    border: none;
    border-bottom: 1.5px solid rgba(36, 27, 78,0.25);
    border-radius: 0;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--ink);
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--coral);
    background: rgba(255, 107, 91,0.03);
}

textarea.form-input { min-height: 110px; resize: vertical; border: 1.5px solid rgba(36, 27, 78,0.2); padding: 12px; border-radius: var(--radius-sm); }
textarea.form-input:focus { border-color: var(--coral); }

.submit-button {
    background: linear-gradient(135deg, var(--pink), var(--green));
    color: var(--blush);
    border: none;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 107, 91,0.35);
    opacity: 0.94;
}

/* ── Why Choose Us ─────────────────── */
.WHYfeature {
    padding: 70px 20px;
    margin: 5%;
    width: 90%;
    background: var(--blush);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.WHYsection-title { text-align: center; margin-bottom: 44px; }

.WHYsection-title h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
    position: relative;
    letter-spacing: -0.3px;
}

.WHYsection-title h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--indigo));
    margin: 14px auto 0;
}

.whyrow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

#WHYfeature-text {
    flex: 1 1 48%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.whycontent { flex: 1; display: flex; flex-direction: column; height: 100%; }

.whycontent p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #4a463c;
    margin-bottom: 30px;
    flex: 1;
}

.WHYfeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-evenly;
    color: var(--ink);
}

.WHYfeature-itemS {
    display: flex;
    align-items: center;
    background: #FFF8F0;
    border: 1px solid rgba(36, 27, 78,0.15);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    flex: 1 1 45%;
    transition: var(--transition);
    min-height: 80px;
    justify-content: space-evenly;
    color: var(--ink);
    gap: 12px;
}

.WHYfeature-itemS:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border-color: var(--coral);
    background: #fff;
}

#feature-image {
    flex: 1 1 48%;
    min-width: 300px;
    display: flex;
    align-items: stretch;
}

.image-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
    display: flex;
}

.feature-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
#feature-image img:hover { transform: scale(1.04); }

/* ── About Section ─────────────────── */
#a {
    background-color: var(--blush);
    padding: 90px 0;
    margin: 5%;
    width: 90%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

#a .section-title { text-align: center; margin-bottom: 60px; }

#a .section-title h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    color: var(--indigo);
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    font-weight: 700;
}

#a .section-title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--indigo), var(--coral));
}

.about { margin: 0 auto; padding: 0 20px; }

.row { display: flex; flex-wrap: wrap; align-items: stretch; gap: 40px; }

.col { flex: 1 1 45%; min-width: 300px; display: flex; flex-direction: column; }

.about-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform 0.5s ease;
    border-radius: var(--radius-md);
}

.image-container:hover .about-image { transform: scale(1.03); }

.about-text { padding: 20px; display: flex; flex-direction: column; }

.content { flex: 1; display: flex; flex-direction: column; height: 100%; }

.aboutdes { flex: 1; }

.aboutdes p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #4a463c;
    margin-bottom: 40px;
    text-align: justify;
}

.featuresa { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }

.feature-itema {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #FFF8F0;
    padding: 22px;
    border-radius: var(--radius-sm);
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(36, 27, 78,0.1);
}

.feature-itema:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    border-color: var(--indigo);
}

.feature-text h2 { font-family: 'Sora', sans-serif; font-size: 2rem; color: var(--indigo); margin-bottom: 4px; font-weight: 700; }

.feature-text p {
    font-size: 0.78rem;
    color: #8a8578;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin: 0;
}

.content small { margin-top: auto; color: #b0aa98; font-size: 13px; }

#a .icon-box {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* ── Footer ────────────────────────── */
footer {
    background: var(--indigo-deep);
    color: #b8b3a4;
    padding: 60px 20px 24px;
    margin: 5%;
    width: 90%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 182, 72,0.12);
    position: relative;
    overflow: hidden;
}

/* faint watermark seal, echoes the hero stamp */
footer::before {
    content: 'P';
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    position: absolute;
    right: 30px;
    bottom: -40px;
    font-size: 220px;
    color: rgba(255, 182, 72,0.04);
    line-height: 1;
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 3px solid var(--amber);
    padding-left: 10px;
}

.footer-col p, .footer-col li {
    margin-bottom: 10px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-col ul { list-style: none; }

.footer-col a {
    text-decoration: none;
    color: #9a947f;
    transition: var(--transition);
    font-size: 0.88rem;
}

.footer-col a:hover { color: var(--amber-light); padding-left: 4px; }

.social-icons { display: flex; gap: 12px; font-size: 1.2rem; margin-top: 10px; }

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 182, 72,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8a290;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icons a:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--indigo-deep);
    transform: translateY(-3px);
}

.subscribe-form { display: flex; margin-top: 12px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }

.subscribe-form input {
    flex: 1;
    padding: 11px 14px;
    border: none;
    font-size: 0.88rem;
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.subscribe-form input::placeholder { color: #8a8578; }

.subscribe-form button {
    padding: 11px 16px;
    border: none;
    background: var(--amber);
    color: var(--indigo-deep);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.subscribe-form button:hover { background: var(--amber-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 182, 72,0.12);
    margin-top: 36px;
    padding-top: 18px;
    text-align: center;
    font-size: 0.8rem;
    color: #6e6a5c;
    position: relative;
}

.footer-bottom a { color: var(--amber-light); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ── Top Strip ─────────────────────── */
.top-strip {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    background: var(--indigo-deep);
    border-bottom: 1px solid var(--glass-border);
    letter-spacing: 0.5px;
}

.top-strip-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-strip .social-icons { gap: 8px; }

/* ── Icon Box ──────────────────────── */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 38px;
}

/* ── Stay in Touch ─────────────────── */
.stayintouch { display: relative; width: 100%; }

.stayintouch input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 0.88rem;
    border-right: none;
}

.stayintouch button {
    padding: 10px 15px;
    border: none;
    background: var(--coral);
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 0.88rem;
    white-space: nowrap;
}

/* ── Animations ────────────────────── */
.fadeIn { animation: fadeIn 0.5s ease forwards; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ────────────────────── */
@media (max-width: 992px) {
    .carousel-container::before { display: none; }
    .carousel-caption h3 { font-size: 2rem; }
    .carousel-caption p { font-size: 1rem; }
    .feature-item { width: 44%; }
    .team-item { width: 45%; }
    .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .whyrow { flex-direction: column; text-align: center; }
    #WHYfeature-text { flex: 1 1 100%; }
    #feature-image { flex: 1 1 100%; margin-top: 30px; }
    .WHYfeatures { justify-content: center; }
    .WHYfeature-itemS { flex: 1 1 100%; min-height: 70px; }
}

@media (max-width: 768px) {
    .navbar { padding: 0.8rem 1.2rem; }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        background: var(--indigo-deep);
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 32px 20px;
        border-top: 2px solid var(--amber);
        z-index: 9999;
        overflow-y: auto;
        gap: 6px;
        display: flex;
    }

    .nav-links.active { left: 0; }
    .nav-links li { margin: 2px 0; width: 100%; }

    .dropdown-content {
        position: static;
        display: none;
        background: rgba(255,255,255,0.06);
        margin-top: 8px;
        transform: none;
        left: auto;
        border-radius: var(--radius-sm);
    }

    .dropdown.active .dropdown-content { display: block; }
    .hamburger { display: flex; }

    .carousel-item { height: 400px; }
    .carousel-caption { bottom: 60px; }
    .carousel-caption h3 { font-size: 1.8rem; }
    .carousel-caption p { font-size: 0.95rem; }
    .thumbnail { width: 68px; height: 48px; }
    .carousel-thumbnails, .carousel-caption { display: none; }
    .feature-item { width: 100%; }
    .section-title h1 { font-size: 1.9rem; }
    .testimonial-img-container { flex-direction: column; }
    .team-item { width: 100%; }
    .team-social { flex-direction: row; left: 0; top: auto; bottom: 0; width: 100%; transform: none; border-radius: 0; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .logo-icon img { width: 34px; height: 34px; }
    .logo { font-size: 1.5rem; gap: 8px; }
    .row { flex-direction: column; }
    .col { flex: 1 1 100%; }
    .featuresa { flex-direction: column; }
    .feature-itema { min-width: 100%; }
    #a { padding: 20px 15px; }
    .section-title h1 { font-size: 1.7rem; }
    .aboutdes p { font-size: 0.95rem; line-height: 1.7; word-wrap: break-word; overflow-wrap: break-word; text-align: justify; }
    .WHYfeatures { flex-direction: column; align-items: center; }
    .WHYfeature-itemS { flex-direction: column; align-items: center; width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
    .carousel-item { height: 300px; }
    .logo { font-size: 1.3rem; }
    .logo-icon img { width: 28px; height: 28px; }
    .carousel-control { width: 40px; height: 40px; font-size: 1rem; }
    .filter-btn { padding: 8px 16px; font-size: 0.75rem; }
    .section-title h1 { font-size: 1.7rem; }
    .portfolio-section { padding: 28px 14px; }
    .portfolio-filters { gap: 8px; }
    #a { padding: 15px 10px; }
    .aboutdes p { font-size: 0.9rem; word-break: break-word; hyphens: auto; }
    .feature-itema { flex-direction: column; text-align: center; padding: 18px; }
    .WHYfeature-itemS { flex-direction: column; text-align: center; min-height: auto; padding: 18px 14px; }
    .icon-box { margin-right: 0; margin-bottom: 10px; }
    .whycontent p { font-size: 0.96rem; }
}

/* ── Mobile nav link colours ───────── */
@media (max-width: 768px) {
    .nav-links a,
    .nav-links a:visited,
    .nav-links.active a,
    .nav-links.active li a {
        color: var(--amber-light) !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        letter-spacing: 0.5px;
        display: block !important;
        width: 100% !important;
        padding: 14px 20px !important;
        border-radius: 4px !important;
        background: rgba(255,255,255,0.03) !important;
        border: 1px solid rgba(255, 182, 72,0.35) !important;
        text-align: center !important;
    }

    .nav-links a:hover,
    .nav-links.active a:hover {
        color: var(--indigo-deep) !important;
        background: var(--amber) !important;
        border-color: var(--amber) !important;
        transform: scale(1.02);
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-links .dropdown > a {
        background: rgba(255, 182, 72,0.1) !important;
        border-color: rgba(255, 182, 72,0.3) !important;
        color: var(--amber-light) !important;
    }

    .dropdown-content {
        background: #1B1440 !important;
        border: 1px solid rgba(255, 182, 72,0.15) !important;
        border-radius: 6px !important;
        margin-top: 6px !important;
        overflow: hidden;
    }

    .dropdown-content a,
    .dropdown.active .dropdown-content a {
        color: #FFD9B8 !important;
        background: transparent !important;
        font-weight: 500 !important;
        font-size: 0.92rem !important;
        padding: 12px 20px !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 182, 72,0.08) !important;
        border-radius: 0 !important;
        display: block !important;
        width: 100% !important;
    }

    .dropdown-content a:last-child {
        border-bottom: none !important;
    }

    .dropdown-content a:hover,
    .dropdown.active .dropdown-content a:hover {
        color: var(--indigo-deep) !important;
        background: var(--amber) !important;
        padding-left: 28px !important;
    }

    .nav-links .contact-btn {
        color: var(--indigo-deep) !important;
        background: linear-gradient(135deg, var(--amber-light), var(--amber)) !important;
        border-color: transparent !important;
        margin-top: 8px;
        box-shadow: 0 4px 16px rgba(255, 182, 72,0.35) !important;
    }
}