/* ===========================================================
   GLOBAL RESET + BASE
=========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: #05070b;   /* dark background */
    color: #f5f5f7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

body.no-scroll { overflow: hidden; }

/* ===========================================================
   HEADER (GLASS)
=========================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 90px;
    padding: 0 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(7,9,16,0.45);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.12);

    z-index: 6000;
}

/* ===========================================================
   LOGO
=========================================================== */
.logo-img {
    width: 140px;
    animation: spinY 3s linear infinite;
    transform-origin: center;
}

@keyframes spinY {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* ===========================================================
   DESKTOP NAV
=========================================================== */
.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #d8f3ff;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%; right: 0;

    background: rgba(0,0,0,0.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    min-width: 180px;
    padding: 12px 0;

    border-radius: 12px;

    opacity: 0;
    visibility: hidden;
    display: none;

    transition: opacity .25s ease;
    z-index: 9000;
}

/* Desktop hover only */
@media (min-width: 901px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: block;
    }
}

.dropdown-menu li a {
    padding: 12px 22px;
    display: block;
    color: #fff;
}

/* ===========================================================
   MOBILE NAV
=========================================================== */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 900px) {

    .main-nav ul { display: none; }

    .mobile-menu-btn {
        display: block;
        width: 28px;
        position: absolute;
        right: 20px;
        top: 22px;
        cursor: pointer;
        z-index: 999999;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        margin-bottom: 5px;
        background: #fff;
        border-radius: 3px;
        display: block;
        transition: .3s;
    }
}

/* FULLSCREEN MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100%;

    background: rgba(0,0,0,0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 24px;

    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;

    z-index: 999990;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    color: #fff;
    font-size: 20px;
    padding: 10px 0;
}

/* ===========================================================
   HERO (SAFE FOR SAFARI + MOBILE)
=========================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile hero sizing */
@media (max-width: 768px) {
    .hero { height: 55vh; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.75)
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 70px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 640px;
    z-index: 3;
}

.hero-content h1 {
    font-size: 58px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: .9;
}

@media (max-width: 768px) {
    .hero-content {
        top: 58%;
        left: 24px;
        right: 24px;
    }

    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
}

.cta-btn {
    padding: 15px 36px;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-weight: 600;
    display: inline-block;
    transition: .3s ease;
}

.cta-btn:hover { background: #d8f3ff; }

/* ===========================================================
   VENTURES SECTION – DARK THEME
=========================================================== */
.ventures-section {
    padding: 100px 60px;
    position: relative;
    z-index: 3;
    background: #05070b;          /* dark background just for this section */
    color: #f5f5f7;
}

/* Title + subtitle inside ventures */
.ventures-section .section-title h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #ffffff;
}

.ventures-section .section-title p {
    font-size: 16px;
    margin-bottom: 36px;
    color: #c5c7d4;
}

/* Card grid */
.venture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Single card */
.venture-card {
    background: radial-gradient(circle at top left, #101525, #05060b);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;
}

.venture-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.venture-card p {
    font-size: 15px;
    color: #cfd2e4;
}

/* Hover effect */
.venture-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.75);
}

/* Learn more link */
.learn-more {
    margin-top: 12px;
    font-weight: 600;
    color: #4ff4da;
}

/* Responsive */
@media (max-width: 1024px) {
    .ventures-section {
        padding: 80px 30px;
    }
    .venture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ventures-section {
        padding: 60px 20px;
    }
    .venture-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================================================
   WHY SECTION – DARK THEME
=========================================================== */
.why-section {
    padding: 110px 60px;
    background: #060712;          /* deep dark */
    text-align: center;
    position: relative;
    z-index: 3;
    color: #f5f5f7;
}

/* Title + subtitle inside WHY section */
.why-section h2 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-section p {
    font-size: 16px;
    color: #c5c7d4;
}

.why-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.why-box {
    padding: 30px 22px;
    background: radial-gradient(circle at top, #101525, #05070d);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.65);
    transition: 0.3s ease;
}

.why-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.why-box p {
    font-size: 14px;
    color: #cfd2e4;
}

/* Hover glow */
.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 255, 204, 0.45);
}

@media (max-width: 1024px) {
    .why-section {
        padding: 90px 30px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 70px 20px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================================================
   CTA SECTION – DARK GRADIENT + NEON BUTTONS
=========================================================== */
.cta-section {
    padding: 110px 60px;
    text-align: center;
    position: relative;
    z-index: 3;
    color: #f5f5f7;
    background:
        radial-gradient(circle at top left, rgba(0, 255, 204, 0.14), transparent 55%),
        #05070b;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section p {
    font-size: 16px;
    color: #c8cad8;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary button */
.cta-link {
    padding: 13px 32px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #0ef2c9, #0bb3a7, #0a748c);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
    box-shadow: 0 0 16px rgba(0, 255, 210, 0.6);
}

/* Outline / ghost button */
.cta-link.ghost {
    background: transparent;
    box-shadow: none;
    border: 2px solid rgba(0, 255, 210, 0.7);
    color: #7fffe0;
}

/* Hover states */
.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(0, 255, 210, 0.9);
}

.cta-link.ghost:hover {
    background: rgba(0, 255, 210, 0.08);
    box-shadow: 0 0 18px rgba(0, 255, 210, 0.75);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 20px 90px;
    }
    .cta-buttons {
        gap: 12px;
    }
    .cta-link {
        width: 100%;
        max-width: 320px;
    }
}


/* ===========================================================
   FOOTER
=========================================================== */
.footer {
    background: #111;
    color: #fff;
    padding: 70px 60px;

    display: flex;
    justify-content: space-between;
    gap: 40px;

    position: relative;
    z-index: 3;
}

.footer a {
    color: #bbb;
    transition: .25s ease;
    margin-bottom: 8px;
}

.footer a:hover { color: #fff; }

@media (max-width:768px) {
    .footer { flex-direction: column; gap: 30px; }
}

/* ===========================================================
   REVIEWS SECTION – GLASSMORPHIC LIKE HEADER
=========================================================== */
.reviews-section {
    padding: 90px 60px 110px;
    background:
        radial-gradient(circle at top left, rgba(0, 255, 204, 0.12), transparent 55%),
        #020309;
    position: relative;
    z-index: 2;
    text-align: center;
    color: #f5f5f7;
}

.reviews-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Write a Review button */
.write-review-btn-container {
    text-align: center;
    margin-bottom: 40px;
}

.write-review-btn {
    padding: 12px 32px;
    border-radius: 999px;
    display: inline-block;
    background: linear-gradient(135deg, #0ef2c9, #00b9ff);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow:
        0 0 14px rgba(0, 255, 220, 0.6),
        0 0 24px rgba(0, 185, 255, 0.6);
    transition: 0.3s ease;
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(0, 255, 220, 0.9),
        0 0 30px rgba(0, 185, 255, 0.8);
}

/* ===========================================================
   CAROUSEL WRAPPER (GLASSMORPHIC)
=========================================================== */
.review-carousel-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 32px;
    background: rgba(10, 14, 30, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.75),
        inset 0 0 18px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    position: relative;
    overflow: hidden;
}

/* Track */
.review-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* ===========================================================
   REVIEW SLIDE
=========================================================== */
.review-slide {
    min-width: 100%;
    padding: 28px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f0f2ff;
    text-align: left;
}

/* Header row (photo + stars + name) */
.review-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

/* PROFILE PHOTO — ROUND + SMALLER */
.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

/* Stars */
.review-stars {
    color: #ffd86a;
    font-size: 18px;
    margin-bottom: 4px;
}

/* Name */
.review-author {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

/* Review Text */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #e5e7f7;
}

/* ===========================================================
   ARROWS
=========================================================== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 5;
    transition: 0.25s ease;
}

.carousel-btn:hover {
    background: rgba(0, 255, 210, 0.18);
    box-shadow: 0 0 16px rgba(0, 255, 210, 0.7);
}

.prev { left: -8px; }
.next { right: -8px; }

/* ===========================================================
   MOBILE RESPONSIVE
=========================================================== */
@media (max-width: 600px) {
    .reviews-section {
        padding: 70px 18px 90px;
    }

    .review-carousel-wrapper {
        padding: 20px;
    }

    .review-slide {
        padding: 20px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .review-photo {
        width: 90px;
        height: 90px;
    }

    .carousel-btn {
        display: none;
    }
}


/* ===========================================================
   SKILLDECK PORTAL ANIMATION
=========================================================== */
#skilldeck-portal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;

    z-index: 999999;
}

#skilldeck-portal-logo {
    width: 180px;
    opacity: 0;
    transform: scale(0.3);
}

@keyframes portalZoom {
    0% { opacity: 0; transform: scale(.3) rotate(0); }
    50% { opacity: 1; transform: scale(1.2) rotate(6deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ===========================================================
   SOFT FADE-IN ANIMATION (CSS ONLY – NO JS REQUIRED)
=========================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Optional stagger so sections don't all pop at once */
.fade-in:nth-of-type(2) { animation-delay: 0.1s; }
.fade-in:nth-of-type(3) { animation-delay: 0.2s; }
.fade-in:nth-of-type(4) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================================
   SKILLDECK BUTTON (NEON GLOW)
=========================================================== */
.skilldeck-btn {
    background: linear-gradient(90deg, #00e0c3, #00afb2);
    color: white !important;
    padding: 9px 22px;
    border-radius: 30px;
    font-weight: 600;

    /* Neon glow */
    box-shadow:
        0 0 12px rgba(0, 255, 220, 0.65),
        0 0 22px rgba(0, 255, 220, 0.45),
        0 0 32px rgba(0, 255, 220, 0.35);

    transition: 0.3s ease;
}

.skilldeck-btn:hover {
    box-shadow:
        0 0 18px rgba(0, 255, 220, 0.75),
        0 0 28px rgba(0, 255, 220, 0.55),
        0 0 40px rgba(0, 255, 220, 0.45);
    transform: translateY(-1px);
}

/* ===========================================================
   FLOATING HEADER WRAPPER
=========================================================== */
.floating-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 20px;
    left: 0;
    z-index: 999;
    pointer-events: none;
}

/* ===========================================================
   APPLE LIQUID GLASS HEADER
=========================================================== */
.header-container {
    width: 88%;
    max-width: 1400px;
    height: 58px;
    padding: 0 30px;

    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    pointer-events: all;

    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);

    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.40),
        inset 0 0 16px rgba(255, 255, 255, 0.18),
        0 6px 22px rgba(0, 0, 0, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.22);

    transition: all 0.25s ease;
}

.header-container:hover {
    background: rgba(255, 255, 255, 0.20);
    box-shadow:
        inset 0 0 14px rgba(255, 255, 255, 0.55),
        inset 0 0 22px rgba(255, 255, 255, 0.28),
        0 10px 32px rgba(0, 0, 0, 0.18);
}

/* Gloss effect */
.header-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -45%;
    width: 90%;
    height: 100%;
    border-radius: inherit;

    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );

    opacity: 0;
    transform: skewX(-20deg);
    transition: 0.6s ease-in-out;
}

.header-container:hover::after {
    opacity: 1;
    transform: translateX(150%) skewX(-20deg);
}

/* ===========================================================
   LOGO
=========================================================== */
.fh-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.fh-logo img {
    max-height: 54px;
    width: auto;
}

/* ===========================================================
   DESKTOP NAVIGATION
=========================================================== */
.fh-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.fh-nav a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.fh-nav a:hover,
.contact-link:hover {
    color: #0aa7a3 !important;
}

/* ===========================================================
   DROPDOWN MENU (FLOATING GLASS)
=========================================================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;

    min-width: 180px;
    padding: 10px 0;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 14px;

    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;

    z-index: 999999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #000;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.35);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* ===========================================================
   MOBILE MENU BUTTON (HAMBURGER)
=========================================================== */
.mobile-menu-btn {
    display: none;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #000;
    margin-bottom: 5px;
    border-radius: 3px;
}

/* ===========================================================
   MOBILE RESPONSIVE
=========================================================== */
@media (max-width: 900px) {

    .header-container {
        width: 94%;
        padding: 0 20px;
        height: 55px;
    }

    .fh-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        z-index: 2000000;
    }

    .fh-logo img {
        max-height: 42px;
    }
}

/* ===========================================================
   CONTACT PAGE – MATCH HOME PAGE STYLE
=========================================================== */

.contact-page {
    background:
        radial-gradient(circle at top left, rgba(0, 255, 204, 0.12), transparent 55%),
        #020309;
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Small hero on contact page */
.contact-hero {
    height: 35vh;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

.contact-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

/* Main contact content wrapper */
.contact-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Headline + intro text */
.contact-container h1,
.contact-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-container p.lead {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d7d7d7;
}

/* Form styling */
.contact-form {
    margin-top: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e5e5e5;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* Checkbox row */
.contact-form .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #d0d0d0;
}

.contact-form .consent-row input[type="checkbox"] {
    margin-top: 4px;
}

/* Glowing submit button (same vibe as SkillDeck) */
.glow-submit {
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ef2c9, #00b9ff);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow:
        0 0 15px rgba(0, 255, 220, 0.6),
        0 0 25px rgba(0, 185, 255, 0.6);
    transition: 0.3s ease;
}

.glow-submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 25px rgba(0, 255, 220, 0.9),
        0 0 35px rgba(0, 185, 255, 0.9);
}

/* Company info block */
.contact-info {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #d2d2d2;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .contact-container {
        padding: 40px 18px 60px;
    }

    .contact-container h1,
    .contact-container h2 {
        font-size: 28px;
    }

    .contact-container p.lead {
        font-size: 16px;
    }
}

/* Fix spacing between checkbox and label */
.consent-row {
    display: flex;
    align-items: center;
    gap: 8px;       /* Reduce space between checkbox and text */
    margin: 12px 0 18px;
}

.consent-row input[type="checkbox"] {
    margin: 0;      /* Remove browser default spacing */
    width: 18px;
    height: 18px;
}

.consent-row label {
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================
   SERVICES SECTION (PREMIUM GRID – FiV DESIGN)
=========================================================== */

.services-section {
    padding: 100px 60px;
    text-align: center;
    background: #020309; /* Matches FiV dark page */
    color: #fff;
    position: relative;
    z-index: 2;
}

.services-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ff6fa8; /* FiV pink accent */
    letter-spacing: 0.5px;
}

.services-subheading {
    font-size: 19px;
    color: #cfcfcf;
    margin-bottom: 55px;
    line-height: 1.5;
}

/* GRID LAYOUT */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* SERVICE CARD */
.service-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 10px 26px rgba(0,0,0,0.55);
    transition: 0.35s ease;
    cursor: pointer;
}

/* Elegant hover motion */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.65);
}

/* Background Image */
.service-bg {
    height: 260px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.50);
}

/* CONTENT BOX */
.service-content {
    padding: 32px 26px 45px;
    text-align: center;
    position: relative;
}

/* ICON GLASS BOX */
.service-icon {
    width: 74px;
    height: 74px;
    margin: -48px auto 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.service-icon img {
    width: 42px;
    height: 42px;
    opacity: 0.95;
}

/* TITLE */
.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffbf91; /* Warm highlight */
    letter-spacing: 0.3px;
}

/* DESCRIPTION */
.service-content p {
    color: #ebebeb;
    font-size: 16px;
    line-height: 1.6;
}

/* PREMIUM BUTTON */
.service-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff9b6a, #ff6fa8);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 22px rgba(255,111,168,0.7);
}

/* ======================================
   RESPONSIVE BEHAVIOR
====================================== */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 700px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-bg {
        height: 220px;
    }

    .services-heading {
        font-size: 36px;
    }
}

/* ==========================================================
   ABOUT PAGE – GRID LAYOUT FIX
========================================================== */

.dark-page {
    background: #020309;
    color: #e8e8e8;
}

/* Wrapper spacing */
.about-wrapper {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

/* Each row is a 2-column grid */
.about-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* Reverse layout (image left) */
.about-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}
.about-row.reverse .about-text {
    order: 2;
}
.about-row.reverse .about-image {
    order: 1;
}

/* Text styling */
.about-text h3 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #d4d4d4;
}

/* Image styling */
.about-image img {
    width: 100%;
    height: 340px;      /* ← Fix the huge images */
    object-fit: cover;  /* ← Crop nicely */
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

/* Responsive Behavior */
@media (max-width: 900px) {
    .about-row,
    .about-row.reverse {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 260px;
    }

    .about-text h3 {
        font-size: 28px;
    }
}

/* ==========================================================
   FLOATING WHATSAPP BUTTON — Premium Glow Version (LEFT SIDE)
=========================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;     /* ← MOVED FROM RIGHT TO LEFT */
    right: auto;    /* ← Prevent conflict */
    
    width: 70px;
    height: 70px;
    background: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    cursor: pointer;

    /* Glow Shadow */
    box-shadow:
        0 0 18px rgba(37, 211, 102, 0.7),
        0 0 30px rgba(37, 211, 102, 0.4);

    /* Pulse Animation */
    animation: whatsappGlow 2.2s infinite ease-in-out;
    transition: 0.3s ease;
}

/* WhatsApp Icon Inside Button */
.whatsapp-float img {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow:
        0 0 28px rgba(37, 211, 102, 0.9),
        0 0 45px rgba(37, 211, 102, 0.6);
}

/* Glow Animation Keyframes */
@keyframes whatsappGlow {
    0% {
        box-shadow:
            0 0 12px rgba(37, 211, 102, 0.5),
            0 0 24px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow:
            0 0 22px rgba(37, 211, 102, 0.9),
            0 0 38px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow:
            0 0 12px rgba(37, 211, 102, 0.5),
            0 0 24px rgba(37, 211, 102, 0.35);
    }
}

/* ==========================================================
   JOTFORM AI AGENT — FLOATING BOTTOM LEFT (FINAL FIX)
   Targets the launcher bubble cleanly without touching WhatsApp
========================================================== */

/* The launcher iframe (Jotform AI Agent bubble) */
iframe[src*="agent.jotform"],
iframe[src*="agent/embed"],
iframe[src*="agent/launcher"],
div[id*="agentLauncher"] iframe {
    position: fixed !important;
    bottom: 26px !important;
    left: 26px !important;
    right: auto !important;
    z-index: 99990 !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
}

/* Sometimes Jotform wraps the bubble in a parent div */
#jfAgentLauncher,
div[id*="agentLauncher"],
div[id*="jfAgent"] {
    position: fixed !important;
    bottom: 26px !important;
    left: 26px !important;
    right: auto !important;
    z-index: 99990 !important;
    pointer-events: auto !important;
}

/* Prevent unwanted shrinking */
iframe[src*="agent.jotform"],
iframe[src*="agent/embed"],
iframe[src*="agent/launcher"] {
    max-width: none !important;
    max-height: none !important;
}

/* ==========================================================
   FINAL FIX: FORCE JOTFORM AI AGENT TO BOTTOM-LEFT
   (Overrides inline CSS & deeply nested containers)
========================================================== */

/* Catch the outer launcher container */
div[id*="jfAgentLauncher"],
div[id*="agent"],
div.jfAgentLauncher,
#jfAgentLauncher {
    position: fixed !important;
    bottom: 26px !important;
    left: 26px !important;
    right: auto !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* Catch the iframe that Jotform loads inside */
div[id*="jfAgentLauncher"] iframe,
div[id*="agent"] iframe,
iframe[src*="agent.jotform"],
iframe[src*="launcher"],
iframe[data-testid*="launcher"],
iframe[class*="launcher"] {
    position: fixed !important;
    bottom: 26px !important;
    left: 26px !important;
    right: auto !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

/* Prevent auto-resizing issues */
div[id*="jfAgentLauncher"],
iframe[src*="agent"] {
    max-width: none !important;
    max-height: none !important;
}
