
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #050b14;
    color: #f5f7fb;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050b14;
}
::-webkit-scrollbar-thumb {
    background: #1e4b85;
    border-radius: 4px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(4, 14, 32, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(145deg,#4da6ff,#1e4b85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo-text span:last-child {
    font-size: 11px;
    color: #c8d5ff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

nav a {
    color: #f5f7fb;
    text-decoration: none;
    margin-left: 28px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,#4da6ff,#ffffff);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #dfe8ff;
}

nav a:hover::after {
    width: 100%;
}

.main-cta {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* Sections */
.section {
    padding: 120px 70px 80px 70px;
    min-height: 100vh;
}

.section-narrow {
    max-width: 1180px;
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 60px;
    padding-top: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 86, 185, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c5dcff;
    margin-bottom: 16px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #4da6ff;
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-title span.accent {
    background: linear-gradient(135deg,#4da6ff,#ffffff);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #d3ddff;
    max-width: 520px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg,#4da6ff,#1e4b85);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.btn-secondary {
    background: transparent;
    color: #e1e7ff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hero-meta {
    display: flex;
    gap: 30px;
    margin-top: 28px;
    font-size: 13px;
    color: #9fb0d4;
}

.hero-meta strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
}

.hero-visual {
    position: relative;
    padding: 26px;
}

.hero-card {
    position: relative;
    border-radius: 26px;
    background: radial-gradient(circle at top left,#4da6ff20,#050b14 55%);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 26px 26px 24px 26px;
    box-shadow: 0 26px 70px rgba(0,0,0,0.7);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at top,#4da6ff33,transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

.hero-card-inner {
    position: relative;
    z-index: 2;
}

.hero-chart-bar {
    height: 120px;
    border-radius: 18px;
    background: linear-gradient(180deg,rgba(255,255,255,0.12),rgba(10,21,42,1));
    border: 1px solid rgba(255,255,255,0.11);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #cfd9ff;
}

.hero-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 60px;
}

.hero-bar {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg,#4da6ff,#183157);
}

.hero-bar:nth-child(2) { height: 70%; opacity: 0.9; }
.hero-bar:nth-child(3) { height: 100%; box-shadow: 0 0 20px rgba(77,166,255,0.4); }
.hero-bar:nth-child(1) { height: 45%; opacity: 0.7; }

.hero-floating-tag {
    position: absolute;
    right: 18px;
    top: 22px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(5,11,20,0.9);
}

.hero-floating-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #29ffb8;
}

.hero-badges-row {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.hero-mini {
    flex: 1;
    border-radius: 16px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 11px;
    color: #d7e3ff;
    background: radial-gradient(circle at top,#4da6ff12,transparent 70%);
}

.hero-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(77,166,255,0.9);
    box-shadow: 0 0 20px rgba(77,166,255,0.7);
    animation: float 6s ease-in-out infinite;
}

.hero-orbit-dot:nth-child(1) { top: 6%; left: 24%; animation-delay: 0s;}
.hero-orbit-dot:nth-child(2) { top: 60%; right: 6%; animation-delay: 1.4s;}
.hero-orbit-dot:nth-child(3) { bottom: 2%; left: 36%; animation-delay: 2.3s;}

/* Generic section titles */
.section-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-kicker {
    font-size: 13px;
    color: #a0b2df;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}

.section-desc {
    font-size: 15px;
    color: #c8d4fd;
    max-width: 520px;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 22px;
    margin-top: 32px;
}

.service-card {
    position: relative;
    padding: 20px 20px 18px 20px;
    border-radius: 18px;
    background: radial-gradient(circle at top,#4da6ff18,#050b14 60%);
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,#4da6ff33,transparent 65%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border-color: rgba(77,166,255,0.8);
}

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

.service-tag {
    font-size: 11px;
    color: #b7c9ff;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: #d5defc;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9cb4ff;
    margin-top: 13px;
}

/* Stats band */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 18px 22px;
    border-radius: 20px;
    background: radial-gradient(circle at top,#4da6ff18,#050b14 60%);
    border: 1px solid rgba(255,255,255,0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat strong {
    font-size: 22px;
}

.stat span {
    font-size: 12px;
    color: #9eb4e6;
}

/* Showreel section turned into image strip */
.showreel {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1.2fr);
    gap: 40px;
    margin-top: 50px;
}

.showreel-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}

.showreel-main-image,
.showreel-sub-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    position: relative;
}

.showreel-main-image img,
.showreel-sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showreel-label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(5,11,20,0.85);
    border: 1px solid rgba(255,255,255,0.2);
}

.showreel-copy {
    font-size: 14px;
    color: #d1dafc;
    line-height: 1.7;
}

.showreel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.showreel-pill {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 11px;
    color: #c5d2ff;
}

/* Logos / references */
.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 40px;
    align-items: center;
}

.logo-chip {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px dashed rgba(255,255,255,0.24);
    font-size: 12px;
    color: #c3d2ff;
}

/* Image gallery on home */
.gallery {
    margin-top: 70px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
    margin-top: 18px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(1.1);
}

.gallery-caption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(5,11,20,0.85);
    border: 1px solid rgba(255,255,255,0.2);
}

/* About page */
.split {
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(0,1.2fr);
    gap: 50px;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: #d3dcff;
}

.about-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.about-pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: #c3d2ff;
}

.timeline {
    margin-top: 26px;
    border-left: 1px solid rgba(255,255,255,0.18);
    padding-left: 18px;
}

.timeline-item {
    margin-bottom: 18px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #4da6ff;
    box-shadow: 0 0 18px rgba(77,166,255,0.8);
}

.timeline-item h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.timeline-item p {
    font-size: 13px;
    color: #c5cff7;
}

/* Team section */
.team {
    margin-top: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 24px;
    margin-top: 20px;
}

.team-card {
    padding: 16px 18px 18px;
    border-radius: 18px;
    background: radial-gradient(circle at top,#4da6ff16,#050b14 60%);
    border: 1px solid rgba(255,255,255,0.14);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 2px solid rgba(255,255,255,0.4);
}

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

.team-card h4 {
    font-size: 15px;
}

.team-role {
    font-size: 12px;
    color: #9fb4f3;
}

.team-card p {
    font-size: 13px;
    color: #cdd7ff;
    margin-top: 6px;
}

/* Services Detail */
.service-layout {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) minmax(0,1.1fr);
    gap: 40px;
    margin-top: 30px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-detail {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.12);
}

.service-detail h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.service-detail p {
    font-size: 13px;
    color: #c2cff9;
}

.service-detail ul {
    margin-top: 6px;
    padding-left: 18px;
    font-size: 13px;
    color: #c9d6ff;
}

.service-side {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    background: radial-gradient(circle at top,#4da6ff22,#050b14 70%);
}

.service-side h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 8px;
}

.badge-soft span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #4da6ff;
}

/* Packages table */
.packages {
    margin-top: 26px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 18px;
    margin-top: 14px;
}

.package-card {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(3,8,18,0.96);
    border: 1px solid rgba(255,255,255,0.16);
}

.package-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.package-price {
    font-size: 13px;
    color: #9fb4ff;
    margin-bottom: 6px;
}

.package-card ul {
    padding-left: 18px;
    font-size: 12px;
    color: #cfd9ff;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(0,1.2fr);
    gap: 40px;
    margin-top: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field-group {
    display: flex;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.form-field label {
    font-size: 13px;
    color: #c6d3ff;
}

.form-field input,
.form-field textarea {
    background: rgba(3,8,18,0.9);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.16);
    padding: 10px 12px;
    color: #f5f7ff;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #4da6ff;
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-meta {
    font-size: 14px;
    color: #c4d1ff;
    line-height: 1.8;
}

.contact-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.contact-box {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 13px;
}

.contact-box span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9db3f1;
    margin-bottom: 4px;
}

.map-frame {
    margin-top: 18px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
}

.whatsapp-cta {
    margin-top: 12px;
    font-size: 13px;
    color: #c8dcff;
}

/* FAQ */
.faq {
    margin-top: 26px;
}

.faq-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
    font-size: 14px;
    font-weight: 500;
}

.faq-answer {
    font-size: 13px;
    color: #cbd6ff;
    margin-top: 4px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #050b14;
    padding: 22px 70px 20px;
    font-size: 13px;
    color: #9badde;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.footer-links a {
    color: #aabaf2;
    text-decoration: none;
}

/* Animations */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
    header {
        padding: 16px 20px;
    }
    nav {
        display: none;
    }
    .section {
        padding: 110px 18px 60px 18px;
    }
    .hero, .showreel, .split, .service-layout, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        gap: 34px;
    }
    .hero-title {
        font-size: 34px;
    }
    .stats-band {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .gallery-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    footer {
        padding: 18px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
