/* Premium Hero Section with Background Video */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    /* Vertical alignment */
    justify-content: center;
    /* Horizontal alignment */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 10%;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.content-box {
    background: transparent;
    /* Removed Background */
    backdrop-filter: none;
    /* Removed Blur */
    -webkit-backdrop-filter: none;
    padding: 0;
    /* Removed Padding */
    border-radius: 0;
    box-shadow: none;
    border: none;
    /* Removed Border */
    max-width: 850px;
    animation: fadeInUp 1s ease-out forwards;
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    color: #1a84c9;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}


.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    /* Removed bottom margin for equal top/bottom spacing */
    max-width: 600px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: #1a84c9;
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 132, 201, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .content-box {
        padding: 3rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 5%;
    }

    .content-box {
        padding: 2.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}



.shutter-animation {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background-image: url('../images/shutter-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    transform: rotate(0deg);
    pointer-events: none;
    animation: rotateShutter 60s linear infinite;
    mix-blend-mode: multiply;
}

@keyframes rotateShutter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.about-image-part {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.about-image-part img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content-part {
    flex: 1;
}

.about-eyebrow {
    display: inline-block;
    color: #1a84c9;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.about-content-part .animated-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111827;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.animated-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: revealWord 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animated-title .word.f-script {
    font-family: 'Dancing Script', cursive;
    color: #1a84c9;
    font-size: 1.25em;
    font-weight: 700;
    transform: rotate(-3deg);
    margin: 0 10px;
    animation: revealWord 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, floatScript 3s ease-in-out infinite;
    animation-delay: 0.7s, 1.5s;
    /* revealWord starts at 0.7s, floatScript later */
}

.animated-title .word.highlight {
    color: #1a84c9;
}

.animated-title .word:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-title .word:nth-child(2) {
    animation-delay: 0.3s;
}

.animated-title .word:nth-child(3) {
    animation-delay: 0.5s;
}

.animated-title .word:nth-child(4) {
    animation-delay: 0.7s;
}

.animated-title .word:nth-child(5) {
    animation-delay: 0.9s;
}

@keyframes revealWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatScript {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}



.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.device-support {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.support-item i {
    color: #1a84c9;
    font-size: 1.1rem;
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 132, 201, 0.15);
    border-color: rgba(26, 132, 201, 0.2);
}

.about-cta {
    margin-top: 40px;
}

.marquee-section-wrapper {
    background-color: #f9fafb;
    /* Keeping consistency with About section */
    position: relative;
    z-index: 10;
}

.scrolling-marquee {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, rgba(26, 132, 201, 0.05) 0%, rgba(26, 132, 201, 0.25) 100%);
    border-top: 1px solid rgba(26, 132, 201, 0.15);
    border-bottom: 1px solid rgba(26, 132, 201, 0.15);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: moveMarquee 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.marquee-content .marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4b5563;
    transition: all 0.3s;
}

.marquee-content .marquee-item i {
    color: #1a84c9;
    font-size: 1.4rem;
    opacity: 0.8;
}

.marquee-content .marquee-item:hover {
    color: #1a84c9;
}

.marquee-content .marquee-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.marquee-content .dot {
    color: #1a84c9;
    font-size: 1.5rem;
}



.scrolling-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes moveMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Default content section spacing */
.default-content-section {
    padding: 100px 0;
    min-height: 50vh;
}

.default-content-section.full-width {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

/* Responsive Styles for About Us */
@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }

    .about-content-part .animated-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 5%;
    }

    .about-container {
        flex-direction: column-reverse;
        gap: 50px;
        text-align: center;
    }

    .about-content-part .animated-title {
        font-size: 2.2rem;
        justify-content: center;
    }

    .about-description p {
        font-size: 1rem;
    }

    .device-support {
        justify-content: center;
    }
}


/* Present Your Work on Any Device Section Styles */
.device-showcase-section {
    padding: 30px 5%;
    background-color: transparent;
    position: relative;
}

.main-device-image {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

.main-device-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .device-showcase-section {
        padding: 20px 5%;
    }
}

.feature-highlight-section {
    padding: 80px 0;
    background-color: #f8fafc;
    /* Subtle light gray/blue background */
    position: relative;
    z-index: 15;
    /* Ensuring it stacks above the marquee section */
}

.feature-highlight-section .section-header {
    margin: 0 auto 60px;
    text-align: center;
    max-width: 1400px;
    padding: 0 5%;
}

.feature-highlight-section .section-header .eyebrow {
    display: inline-block;
    color: #1a84c9;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.feature-highlight-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.1;
}

.feature-highlight-section .section-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.feature-highlight-section .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-main-image {
    max-width: 1000px;
    margin: 50px auto 80px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.feature-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-box {
    text-align: left;
    padding: 20px;
    transition: transform 0.3s;
}

.box-icon {
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: #1a84c9;
}

.box-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.box-content {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.feature-box:hover {
    transform: translateY(-5px);
}

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

@media (max-width: 768px) {
    .feature-boxes-grid {
        grid-template-columns: 1fr;
    }

    .feature-main-image {
        margin: 40px 0 50px;
    }
}

/* Refined Split Layout for Fourth Section */
.feature-split-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 5%;
}

.feature-image-column {
    flex: 1.2;
}

.feature-content-column {
    flex: 1;
}

.feature-highlight-section .feature-main-image {
    margin: 0;
    /* Override previous centered margin */
}

.feature-highlight-section .feature-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    gap: 30px;
}

.feature-highlight-section .feature-box {
    padding: 0;
    /* More compact layout */
}

/* Updated Responsive adjustments for Split Layout */
@media (max-width: 1024px) {
    .feature-split-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .feature-image-column,
    .feature-content-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .feature-highlight-section .feature-boxes-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Section Background Animation */
.feature-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    top: 10%;
    left: 5%;
    animation: floatingOrb 20s infinite alternate ease-in-out;
}

.glow-orb.blue {
    top: 60%;
    left: 70%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    animation-delay: -5s;
}

.digital-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.02;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Subtle scanlines to imply video screen */
.feature-bg-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.01) 50%);
    background-size: 100% 4px;
    opacity: 0.3;
}

@keyframes floatingOrb {
    0% {
        transform: translateY(0) scale(1.1);
    }

    100% {
        transform: translateY(100px) scale(1);
    }
}

/* Ensure content stays above the animation */
.feature-highlight-section .container {
    position: relative;
    z-index: 10;
}



/* Drone Particles Animation */
.drone-particle {
    position: absolute;
    bottom: -100px;
    z-index: 1;
    color: rgba(26, 132, 201, 0.08);
    /* Faint blue drones */
    animation: droneMove linear infinite;
    pointer-events: none;
    transform-origin: center;
}

.drone-small {
    font-size: 14px;
}

.drone-medium {
    font-size: 24px;
}

@keyframes droneMove {
    0% {
        transform: translate(0, 0) rotate(5deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translate(0, -1200px) rotate(-5deg);
        opacity: 0;
    }
}

/* Specific icon speed adjustments for more organic feel */
.drone-particle:nth-child(even) {
    animation-timing-function: ease-in-out;
}

/* Refined Camera Particles Animation (Pure Vertical) */
.camera-particle {
    position: absolute;
    top: -100px;
    z-index: 1;
    color: rgba(26, 132, 201, 0.12);
    /* Slightly more visible blue icon */
    animation: cameraFloatVertical linear infinite;
    pointer-events: none;
    will-change: transform;
    opacity: 0;
    /* Hidden by default */
}

@keyframes cameraFloatVertical {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
        /* Show during movement */
    }

    90% {
        opacity: 0.5;
        /* Show during movement */
    }

    100% {
        transform: translateY(1200px) rotate(360deg);
        opacity: 0;
        /* Hide after movement is complete */
    }
}

/* Corner Camera Background Animation (Top-Left - Rotating Circle) */
.corner-camera-animation {
    position: absolute;
    top: -250px;
    left: -250px;
    width: 650px;
    height: 650px;
    opacity: 0.08;
    z-index: 20;
    /* Higher z-index to overlap marquee */
    pointer-events: none;
    animation: rotateShutter 80s linear infinite;
    /* Reuse the same smooth rotation */
    mix-blend-mode: multiply;
    filter: grayscale(1) contrast(1.1);
}

.corner-camera-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .corner-camera-animation {
        width: 400px;
        height: 400px;
        top: -150px;
        left: -150px;
    }
}

/* Cinematic Video Section Styles (Fifth Section) */
.cinematic-video-section {
    padding: 80px 0;
    background: var(--brand-gradient);
    /* Deep, dark premium navy */
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cinematic-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.video-intro {
    margin-bottom: 80px;
}

.video-eyebrow {
    color: #1a84c9;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.video-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
}

.video-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

.video-title span {
    color: #1a84c9;
    font-family: 'Dancing Script', cursive;
    font-size: 1.25em;
    /* Explicit size to override any global settings */
    display: inline-block;
    transform: rotate(-2deg);
}

.main-video-showcase {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 100px;
}

.cinematic-video-section {
    position: relative;
    padding: 80px 0;
    background: var(--brand-gradient);
    overflow: hidden;
}

.video-sd-card-animation {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    animation: sdCardFloat 10s ease-in-out infinite;
}

.video-sd-card-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1) contrast(1.5) drop-shadow(0 0 15px rgba(26, 132, 201, 0.4));
    mix-blend-mode: screen;
    animation: sdCardRotate 20s linear infinite;
}

.video-sd-card-animation {
    position: absolute;
    bottom: -200px;
    right: -250px;
    width: 650px;
    height: 650px;
    background-image: url('../images/sd-card-sketch.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.2;
    /* Solid professional visibility */
    filter: brightness(1.8) contrast(1.2) drop-shadow(0 0 60px #ffffff);
    /* Full brilliance White */
    animation: rotateShutter 100s linear infinite;
}

@keyframes sdCardFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes sdCardRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.anamorphic-player {
    position: relative;
    aspect-ratio: 2.35 / 1;
    /* Cinematic anamorphic aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.video-frame-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.5s ease, background 0.3s ease;
    z-index: 5;
}

.play-pulse {
    width: 100px;
    height: 100px;
    background: rgba(26, 132, 201, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(26, 132, 201, 0.4);
    animation: pulsePlay 2s infinite;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Playback States */
.anamorphic-player.is-playing .video-frame-overlay {
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Lighter when playing hover */
}

.anamorphic-player.is-playing:hover .video-frame-overlay {
    opacity: 1;
    pointer-events: auto;
}

.anamorphic-player.is-playing:hover .play-pulse {
    animation: none;
    /* Stop pulsing when playing hover */
    transform: scale(0.8);
}

.anamorphic-player:not(.is-playing) .play-pulse {
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 132, 201, 0.7);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(26, 132, 201, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 132, 201, 0);
    }
}

.floating-vid-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatOrb 6s ease-in-out infinite alternate;
}

.orb-left {
    top: -50px;
    left: -80px;
}

.orb-right {
    bottom: -50px;
    right: -80px;
    animation-delay: -3s;
}

.orb-content {
    text-align: center;
}

.orb-content i {
    display: block;
    font-size: 2rem;
    color: #1a84c9;
    margin-bottom: 8px;
}

.orb-content span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes floatOrb {
    from {
        transform: translateY(0) rotate(-3deg);
    }

    to {
        transform: translateY(-30px) rotate(3deg);
    }
}

.video-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-item {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 950;
    color: rgba(26, 132, 201, 0.08);
    position: absolute;
    top: 5px;
    right: 20px;
    pointer-events: none;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.benefit-item p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
}

.benefit-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(26, 132, 201, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .video-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-title {
        font-size: 3rem;
    }

    .floating-vid-orb {
        display: none;
    }
}

/* How it Works Section Styles (Circular Interlocking Design) */
.how-it-works-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.process-header {
    margin-bottom: 80px;
    text-align: center;
}

.process-eyebrow {
    color: #1a84c9;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    text-align: center;
}

.process-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.process-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

/* How it Works Section Styles (Flowing Circular Process) */
.how-it-works-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.process-header {
    margin-bottom: 80px;
    text-align: center;
}

.process-eyebrow {
    color: #1a84c9;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    text-align: center;
}

.process-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.process-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.flow-steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 80px auto 0;
    gap: 0;
}

.flow-step {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.step-circle-main {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
}

.orbit-wrapper {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 230px;
    height: 230px;
    z-index: 1;
    pointer-events: none;
    animation: orbitRotate 10s linear infinite;
}

.orbit-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.orbit-path {
    fill: none;
    stroke: rgba(26, 132, 201, 0.2);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
}

.orbit-head {
    fill: #1a84c9;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.flow-step:hover .orbit-wrapper {
    animation-duration: 3s;
    /* Speed up on hover */
}

/* ==========================================================================
   Premium FAQ Section Styles
   ========================================================================== */

.faq-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

/* FAQ Header Content */
.faq-eyebrow {
    display: block;
    color: #1a84c9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-main-title {
    font-size: 3.5rem;
    color: #000;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.faq-main-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtext {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Stats */
.faq-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Box */
.faq-cta-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta-box p {
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4facfe;
    text-decoration: none;
    font-weight: 700;
    transition: gap 0.3s;
}

.btn-faq-contact:hover {
    gap: 15px;
}

/* Accordion Styles */
.premium-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
}

.accordion-card.active {
    background: rgba(79, 172, 254, 0.05);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.q-num {
    font-size: 1rem;
    font-weight: 800;
    color: rgb(46 43 43);
    font-family: 'Montserrat', sans-serif;
}

.accordion-card.active .q-num {
    color: #1a84c9;
}

.q-title {
    flex: 1;
    font-size: 1.25rem;
    margin: 0;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    transition: color 0.3s;
}

.accordion-card.active .q-title {
    color: #000;
}

.q-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.q-icon .line,
.q-icon .line-v {
    position: absolute;
    background: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-icon .line {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.q-icon .line-v {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

.accordion-card.active .q-icon .line-v {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-card.active .q-icon .line {
    background: #1a84c9;
}

/* Accordion Body */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-card.active .accordion-body {
    max-height: 500px;
}

.body-inner {
    padding: 0 30px 30px 70px;
}

.body-inner p {
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .faq-main-title {
        font-size: 2.5rem;
    }

    .accordion-header {
        padding: 20px;
        gap: 15px;
    }

    .q-title {
        font-size: 1.1rem;
    }

    .body-inner {
        padding: 0 20px 20px 55px;
    }
}

/* ==========================================================================
   Reference Based About Banner Styles
   ========================================================================== */

/* ==========================================================================
   Reference Based About Banner Styles (Refined)
   ========================================================================== */

.about-ref-banner {
    position: relative;
    padding: 180px 0 140px;
    background-image: url('../images/about-ref-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-overlay-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 24, 48, 0.95) 0%, rgba(10, 24, 48, 0.7) 100%);
    z-index: 1;
}

/* Diagonal Pattern Overlay with Animation */
.banner-overlay-geometric::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 100px);
    z-index: 2;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.banner-text-center {
    position: relative;
    z-index: 50;
    width: 100%;
}

.ref-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ffffff !important;
    letter-spacing: -2px;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    line-height: 1;
}

.ref-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ref-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.7;
}

.ref-breadcrumb a:hover {
    opacity: 1;
}

.ref-breadcrumb .slash {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.ref-breadcrumb .current {
    color: #4facfe;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.scroll-down-indicator:hover {
    bottom: 35px;
    opacity: 0.8;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #4facfe;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes wheelScroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* ==========================================================================
   Vision & Story Section
   ========================================================================== */
.vision-story-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    color: #1a84c9;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #0b1830;
    line-height: 1.1;
    margin-bottom: 30px;
}

.section-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
}

.vision-features {
    display: grid;
    gap: 30px;
}

.v-feature-item {
    display: flex;
    gap: 20px;
}

.v-feature-item i {
    font-size: 1.5rem;
    color: #4facfe;
    width: 50px;
    height: 50px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0b1830;
}

.v-feature-item p {
    color: #666;
    margin: 0;
}

/* Premium Image Frame */
.premium-image-frame {
    position: relative;
    padding: 20px;
}

.premium-image-frame img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    width: 100%;
}

.frame-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.1;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: #0b1830;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4facfe;
    line-height: 1;
}

.experience-badge .txt {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Core Values Section
   ========================================================================== */
.core-values-section {
    padding: 120px 0;
    background: #0b1830;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.geometric-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 40px 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 172, 254, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.value-card:hover .card-glow {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 1rem;
}

/* ==========================================================================
   Stats Banner Section
   ========================================================================== */
.about-stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0b1830;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a84c9;
}

@media (max-width: 992px) {

    .vision-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 20px;
    }
}

/* ==========================================================================
   Team Showcase Section
   ========================================================================== */
.team-showcase-section {
    padding: 120px 0;
    background: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: all 0.4s ease;
}

.member-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 4/5;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(11, 24, 48, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-socials {
    bottom: 0;
}

.member-socials a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0b1830;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.member-socials a:hover {
    background: #4facfe;
    color: #fff;
    transform: translateY(-5px);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 5px;
}

.member-info span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a84c9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   About CTA Section
   ========================================================================== */
.about-cta-section {
    padding: 140px 0;
    background: #0b1830;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-floating-elements div {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.2;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #4facfe;
    top: -100px;
    right: -50px;
    animation: orbMove 20s infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #00f2fe;
    bottom: -150px;
    left: -100px;
    animation: orbMove 25s infinite alternate-reverse;
}

@keyframes orbMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.about-cta-section .container {
    position: relative;
    z-index: 5;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.cta-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-5px);
}

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

.cta-buttons {
    flex-direction: column;
    align-items: center;
}
}

/* ==========================================================================
   Home Final CTA Banner Section
   ========================================================================== */
.home-final-cta-banner {
    position: relative;
    padding: 160px 0;
    background-image: url('../images/unique-about-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.cta-overlay-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 24, 48, 0.9), rgba(11, 24, 48, 0.85));
    z-index: 1;
}

.cta-overlay-geometric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.2) 0%, transparent 70%);
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
}

.cta-eyebrow {
    display: block;
    font-size: 1rem;
    color: #4facfe;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-banner-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.cta-banner-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.cta-banner-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

@media (max-width: 768px) {
    .home-final-cta-banner {
        padding: 100px 0;
    }

    .cta-banner-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-ref-banner {
        padding: 120px 0 80px;
        min-height: 350px;
    }

    .ref-title {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   New 2-Part About Us Section
   ========================================================================== */
.about-two-part-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-two-part-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-part .lead-text {
    font-size: 1.25rem;
    color: #0b1830;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text-part .main-content {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.premium-image-wrapper {
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.premium-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            #4facfe,
            #00f2fe,
            transparent 30%);
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

.premium-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #ffffff;
    border-radius: 36px;
    z-index: 2;
}

.premium-image-wrapper img {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.premium-image-wrapper:hover img {
    transform: scale(1.02);
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .about-two-part-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
}


/* FAQ Section Styles (Seventh Section) */
.faq-section {
    padding: 100px 0;
    background-color: #fcfcfd;
    background-image: radial-gradient(circle at 10% 20%, rgba(26, 132, 201, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 255, 0.03) 0%, transparent 40%);
}

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

}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-info-column {
    position: sticky;
    top: 140px;
}

.faq-eyebrow {
    color: #1a84c9;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(26, 132, 201, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(26, 132, 201, 0.1);
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 25px;
}

.faq-title span {
    color: #1a84c9;
}

.faq-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.accordion .accordion-item {
    border-bottom: 2px solid rgba(26, 132, 201, 0.1);
    transition: all 0.3s;
}

.accordion .accordion-item:last-child {
    border-bottom: none;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1.5em 0;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    background: none;
    outline: none;
    transition: all 0.3s ease;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #1a84c9;
}

.accordion button .accordion-title {
    padding: 1em 4em 1em 0;
    display: block;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 2px solid #1a84c9;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #1a84c9;
    transform: translate(-50%, -50%);
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    background: #1a84c9;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.accordion button[aria-expanded='true'] {
    color: #1a84c9;
}

.accordion button[aria-expanded='true'] .icon {
    background: #1a84c9;
}

.accordion button[aria-expanded='true'] .icon::before {
    background: #fff;
}

.accordion button[aria-expanded='true'] .icon::after {
    height: 0;
    background: #fff;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, max-height;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 500px;
    /* Increased from user's snippet */
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 2em 0;
    color: #4b5563;
}


/* Response for FAQ */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-info-column {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Responsive styles for smaller screens */
}

.flow-step.teal .step-circle-main {
    background-color: #00a9b5;
}

.flow-step.blue .step-circle-main {
    background-color: #008ecc;
}

.flow-step.navy .step-circle-main {
    background-color: #1b3b7d;
}

.flow-step.purple .step-circle-main {
    background-color: #7b2ead;
}

.step-circle-main .step-num {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 5px;
}

.step-circle-main h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.flow-connector {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    height: 80px;
    position: relative;
    margin: 0 -20px;
    z-index: 5;
}

.flow-connector svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.flow-path {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 2;
}

.flow-path-animated {
    fill: none;
    stroke: #1a84c9;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 10, 200;
    animation: flowMove 3s linear infinite;
}

@keyframes flowMove {
    0% {
        stroke-dashoffset: 210;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.arrowhead {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #1a84c9;
    font-size: 1rem;
    animation: arrowPulse 1s infinite alternate;
}

@keyframes arrowPulse {
    from {
        transform: translateY(-50%) translateX(0);
    }

    to {
        transform: translateY(-50%) translateX(5px);
    }
}

.flow-connector.reversed {
    transform: scaleX(-1);
}

.flow-connector.reversed .arrowhead {
    transform: translateY(-50%) scaleX(-1);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .flow-steps-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .flow-connector {
        transform: rotate(90px);
        height: 100px;
        min-width: auto;
        margin: -20px 0;
    }

    .flow-connector.reversed {
        transform: rotate(90deg) scaleY(-1);
    }
}

/* Premium Footer Styles (Unique Section) */
.main-footer {
    background: linear-gradient(135deg, #1c82c5db 0%, #436582 50%, #4f5b6d 100%);
    color: #fff;
    padding: 0;
    position: relative;
}

.main-footer .container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Footer CTA Banner */
.footer-cta-banner {
    transform: translateY(-50%);
    margin-bottom: -50px;
}

.cta-inner-glass {
    background: rgba(26, 132, 201, 0.95);
    background: linear-gradient(135deg, #1a84c9 0%, #0066ff 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 80px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.25);
}

.cta-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-action .btn-primary {
    background: #fff !important;
    color: #0066ff !important;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 1rem;
}

/* Footer Main Grid */
.footer-main-content {
    padding: 60px 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo span {
    color: #1a84c9;
}

.brand-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-icon:hover {
    background: #1a84c9;
    border-color: #1a84c9;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 132, 201, 0.3);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: #1a84c9;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #1a84c9;
    padding-left: 8px;
}

/* Footer Newsletter */
.footer-newsletter-column p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.footer-newsletter-form {
    display: flex;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 6px;
    transition: all 0.3s;
}

.footer-newsletter-form:focus-within {
    border-color: #1a84c9;
    box-shadow: 0 0 0 4px rgba(26, 132, 201, 0.1);
}

.footer-newsletter-form input {
    background: none;
    border: none;
    font-size: 0.95rem;
    padding: 10px 15px;
    color: #111827;
    flex: 1;
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: #6b7280;
}

.footer-newsletter-form button {
    width: 44px;
    height: 44px;
    background: #1a84c9;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-newsletter-form button:hover {
    background: #0066ff;
    transform: scale(0.95);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background: #060912;
    position: relative;
    overflow: hidden;
}

.footer-bottom-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 40%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a84c9, #0066ff, transparent);
    box-shadow: 0 0 20px rgba(26, 132, 201, 0.4);
    z-index: 1;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.copyright strong {
    color: #1a84c9;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bottom-utility-links {
    display: flex;
    gap: 30px;
}

.bottom-utility-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.bottom-utility-links a:hover {
    color: #fff;
}

/* Footer Mobile Responsiveness */
@media (max-width: 1024px) {
    .cta-inner-glass {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-column {
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav,
    .footer-newsletter-column {
        text-align: center;
    }

    .bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* App Showcase Section Styles (Eighth Section) */
.app-showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c82c5db 0%, #436582 50%, #4f5b6d 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.app-showcase-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.app-content-column {
    padding-right: 20px;
}

.app-eyebrow {
    color: #1a84c9;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
}

.app-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.app-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.app-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.main-cta-wrapper {
    margin-bottom: 50px;
}

.app-store-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-badge-link {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-badge-link:hover {
    background: #1a84c9;
    border-color: #1a84c9;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 132, 201, 0.2);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-transform: none;
}

.badge-text small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

.badge-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

/* Phone Mockup Animations */
.app-visual-column {
    display: flex;
    justify-content: center;
}

.phone-mockup-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.phone-mockup {
    background: #1e293b;
    border-radius: 40px;
    padding: 10px;
    border: 8px solid #334155;
    position: relative;
    z-index: 10;
    animation: floatPhone 6s ease-in-out infinite;
    overflow: visible;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

.phone-mockup-shadow {
    position: absolute;
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(20px);
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    animation: shadowPulse 6s ease-in-out infinite;
}

.floating-ui-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    /* Darker Slate for High Contrast */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 14px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 50;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
    /* Prevent text wrap */
    letter-spacing: 0.5px;
}

.floating-ui-card i {
    color: #1a84c9;
    font-size: 1rem;
}

.card-1 {
    top: 15%;
    left: -110px;
    /* Shifted left to be fully visible */
    animation: floatBadge 5s ease-in-out infinite alternate;
}

.card-2 {
    top: 50%;
    right: -130px;
    /* Shifted right to be fully visible */
    animation: floatBadge 6s ease-in-out infinite alternate-reverse;
    animation-delay: -1s;
}

.card-3 {
    bottom: 10%;
    left: -100px;
    animation: floatBadge 5.5s ease-in-out infinite alternate;
    animation-delay: -2s;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotate(0.5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

/* Unique Scanning Laser Effect */
.scanning-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #1a84c9, transparent);
    z-index: 15;
    box-shadow: 0 0 15px #1a84c9;
    animation: laserMove 4s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes laserMove {

    0%,
    100% {
        top: 10%;
        opacity: 0;
    }

    5%,
    95% {
        opacity: 0.8;
    }

    50% {
        top: 90%;
    }
}

/* Rotating Globe Backglow */
.phone-glow-background {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.2) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(40px);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

/* Mini Floating Icons */
.mini-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    background: rgba(26, 132, 201, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    z-index: 20;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-1 {
    top: -30px;
    right: 20px;
    animation: miniFloat 5s infinite alternate ease-in-out;
}

.icon-2 {
    bottom: -20px;
    left: 10px;
    animation: miniFloat 5s infinite alternate-reverse ease-in-out;
    animation-delay: -2s;
}

@keyframes miniFloat {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-30px) rotate(15deg);
    }
}

@media (max-width: 1024px) {

    .floating-ui-card,
    .mini-icon {
        display: none;
        /* Simplify on mobile to avoid overlap */
    }
}

/* About Us Custom Template Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 200px 0 150px;
    background: linear-gradient(135deg, #0a0f1d 0%, #1a84c9 100%);
    color: #fff;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/camera-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #0a0f1d 90%);
    z-index: 2;
}

.about-hero .container-1200 {
    position: relative;
    z-index: 10;
}

.about-badge {
    background: rgba(26, 132, 201, 0.15);
    border: 1px solid rgba(26, 132, 201, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a84c9;
    background: #fff;
    display: inline-block;
    margin-bottom: 30px;
}

.about-main-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.about-main-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.main-img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.main-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.floating-stat-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a84c9;
    color: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(26, 132, 201, 0.3);
    text-align: center;
    animation: floatAnim 1s infinite alternate ease-in-out;
}

.floating-stat-box .stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.floating-stat-box .stat-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes floatAnim {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

.mission-content .section-eyebrow {
    color: #1a84c9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.mission-content .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.mission-content .mission-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 35px;
}

.mission-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
}

.highlight-item i {
    color: #1a84c9;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: rgba(26, 132, 201, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 132, 201, 0.1);
    color: #1a84c9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    transition: 0.3s;
}

.value-card:hover .value-icon {
    background: #1a84c9;
    color: #fff;
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Team Grid Section */
.team-section {
    padding: 120px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    transition: all 0.3s;
}

.member-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-photo img {
    transform: scale(1.08);
}

.social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 15, 29, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.team-member:hover .social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-overlay a {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #0a0f1d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-overlay a:hover {
    background: #1a84c9;
    color: #fff;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.member-info p {
    color: #1a84c9;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* About CTA Area */
.about-cta-section {
    padding: 100px 0;
    background: #fff;
}

.cta-card {
    background: #0a0f1d;
    padding: 100px 80px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: rgba(26, 132, 201, 0.1);
    filter: blur(100px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 45px;
    line-height: 1.1;
    position: relative;
    z-index: 5;
}

.cta-title span {
    color: #1a84c9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   Mission, Vision, & Goals Section (Themed Background)
   ========================================================================== */
.mission-vision-goals-section {
    padding: 140px 0;
    background: var(--brand-gradient);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.section-glow-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.mvg-card {
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 1;
    border: 2px dashed transparent;
    /* Placeholder for the dash effect */
    background-clip: padding-box;
}

/* Animated Dashed Border Implementation */
.mvg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    /* Border thickness */
    background: repeating-linear-gradient(-45deg,
            #4facfe 0%, #4facfe 10px,
            transparent 10px, transparent 20px);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    animation: marchingAnts 1s linear infinite;
    opacity: 1;
    /* Always visible for all three boxes */
    transition: opacity 0.3s ease;
}

.mvg-card.highlight::before {
    opacity: 1;
}

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

@keyframes marchingAnts {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 40px;
    }
}

.mvg-card.highlight {
    border: none;
    /* Let the animated border shine */
    box-shadow: 0 20px 45px rgba(26, 132, 201, 0.15);
}

.mvg-icon-plate {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto 35px;
}

.mvg-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #0b1830;
}

.mvg-card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .mvg-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mvg-card.highlight {
        transform: scale(1);
    }

    .mvg-card.highlight:hover {
        transform: translateY(-15px) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .mission-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-content .section-title,
    .cta-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Unique Counter Section
   ========================================================================== */
/* ==========================================================================
   Unique Feature Boxes Section (White Background)
   ========================================================================== */
.about-unique-feature-boxes {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.parallax-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: 1;
    opacity: 0.5;
}

.features-display-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.feature-box-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    /* More tech-focused radius */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box-item::before,
.feature-box-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid #4facfe;
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

/* Top Left Corner */
.feature-box-item::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

/* Bottom Right Corner */
.feature-box-item::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.feature-box-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #fdfdfd;
}

/* Expanding Corner Animation on Hover */
.feature-box-item:hover::before,
.feature-box-item:hover::after {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 22px;
    border-color: #2f83bb;
    /* Updated hover border color */
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4facfe;
    margin-bottom: 30px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.feature-box-item:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0b1830;
    letter-spacing: -0.5px;
}

.feature-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) {
    .features-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-display-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .counter-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-display-grid {
        grid-template-columns: 1fr;
    }

    .stat-count {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 60px 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
    height: 450px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&q=80&w=2000') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 24, 48, 0.9), rgba(11, 24, 48, 0.7));
}

.contact-hero .content-wrap {
    position: relative;
    z-index: 10;
}

.contact-hero .page-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-hero .page-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.contact-form-card .card-header {
    margin-bottom: 40px;
}

.contact-form-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 15px;
}

.contact-form-card p {
    color: #64748b;
    font-size: 1.1rem;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}


.input-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0b1830;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group textarea {
    padding: 18px 25px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.input-group input:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: #4facfe;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.1);
    outline: none;
}

.form-submit-btn {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background: #4facfe;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.form-submit-btn:hover {
    background: #0b1830;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 24, 48, 0.2);
}

/* Sidebar Styles */
.info-details-box {
    background: #0b1830;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4facfe;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.info-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.stylized-map-wrap {
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.stylized-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.stylized-map-wrap:hover img {
    filter: grayscale(0);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 24, 48, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s;
}

.stylized-map-wrap:hover .map-overlay {
    background: rgba(11, 24, 48, 0.1);
}

.social-connect-wrap {
    text-align: center;
}

.social-connect-wrap h4 {
    color: #0b1830;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(11, 24, 48, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1830;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4facfe;
    color: #fff;
    border-color: #4facfe;
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero .page-title {
        font-size: 3rem;
    }

    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 40px 25px;
    }
}

/* ==========================================================================
   Pricing V3 (Dynamic & Refined)
   ========================================================================== */
/* Segmented Flat Design (Image Based) */
.pricing-header-v2 {
    background: transparent;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.about-ref-banner,
.compare-plans-section {
    position: relative;
    overflow: hidden;
}

/* Unique Pricing Category Tabs */
.pricing-category-tabs {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #0b183096 0%, #22628f 100%);
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(11, 24, 48, 0.2);
    position: relative;
    gap: 10px;
}

.tab-btn {
    padding: 14px 45px;
    border: none;
    background: transparent;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn.active {
    background: #4facfe;
    color: #fff;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.tab-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.tab-btn[data-category="personal"]::before {
    content: "\f007";
}

.tab-btn[data-category="photographer"]::before {
    content: "\f030";
}


.p-card {
    background: #ffffff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 80%;
    min-height: 500px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #3d8dc3;
    text-align: center;
    transition: all 0.3s ease;
}



.p-card.featured {
    background: linear-gradient(135deg, #3d8fc5 0%, #47617b 50%, #48627b 100%);
    color: #fff;
    min-height: 530px;
    transform: translateY(-20px);
    z-index: 10;
    overflow: hidden;
}

.p-card.featured::after {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -40px;
    background: #ffd600;
    color: #000;
    font-size: 0.7rem;
    font-weight: 950;
    width: 160px;
    padding: 8px 0;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 15;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Featured Header & Body */

.p-header {
    padding: 40px 20px 20px;
}

.p-header h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.p-header .p-subtext {
    display: block;
    font-size: 0.8rem;
    color: #64748b;

}

.p-card.featured .p-header .p-subtext {
    color: rgba(255, 255, 255, 0.7);
}

.p-price {
    font-size: 2.3rem;
    font-weight: 950;
    color: #000;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-card.featured .p-price {
    color: #fff;
}

.p-price span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #64748b;
    margin-top: -8px;
}

.p-card.featured .p-price span {
    color: rgba(255, 255, 255, 0.7);
}

.p-body {
    padding: 0 20px 40px;
    flex-grow: 1;
}

.p-body ul {
    list-style: none;
    padding: 0;
}

.p-body li {
    font-size: 0.82rem;
    padding: 12px 0;
    border-top: 1px solid #eee;
    color: #333;
}

.p-card.featured .p-body li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.p-footer {
    padding: 0 20px 40px;
    text-align: center;
}

.btn-subscribe {
    position: relative;
    width: 85%;
    margin: 0 auto;
    padding: 15px 10px;
    background: #3f7ba5;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.btn-subscribe span {
    position: relative;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    z-index: 10;
    text-transform: uppercase;
}

.btn-subscribe .liquid {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 180px;
    background: #1a84c9;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, .2);
    transition: 0.5s;
    z-index: 1;
}

.btn-subscribe:hover .liquid {
    top: -110px;
}

.btn-subscribe .liquid:after,
.btn-subscribe .liquid:before {
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.btn-subscribe .liquid:before {
    border-radius: 45%;
    background: rgba(11, 24, 48, 1);
    animation: liquidAnimate 5s linear infinite;
}

.btn-subscribe .liquid:after {
    border-radius: 40%;
    background: rgba(11, 24, 48, 0.4);
    animation: liquidAnimate 10s linear infinite;
}

@keyframes liquidAnimate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

/* Featured Card Button Override */
.p-card.featured .btn-subscribe {
    background: #fff;
}

.p-card.featured .btn-subscribe span {
    color: #3d8fc5;
}

.p-card.featured .btn-subscribe .liquid {
    background: #ffd600;
    /* Yellow liquid for featured */
    top: -180px;
    /* Initially hidden since it's yellow on white */
}

.p-card.featured .btn-subscribe:hover .liquid {
    top: -110px;
}

.p-card.featured .btn-subscribe .liquid:before {
    background: #fff;
}

.p-card.featured .btn-subscribe .liquid:after {
    background: rgba(255, 255, 255, 0.5);
}

/* Unique Floating Popular Badge */
.p-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd600;
    /* Signature Yellow */
    color: #000;
    font-size: 0.73rem;
    font-weight: 900;
    padding: 6px 22px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    z-index: 20;
    width: auto;
    height: auto;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* Featured Card Unique Border Glow */

.p-card-badge {
    display: none;
    /* Replaced by Ribbon */
}

/* Smooth State Transitions */
#pricing-plans-render {
    min-height: 500px;
    transition: opacity 0.3s ease;
}

.p-card {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Comparison Table - High Fidelity Full-Line Matrix */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    padding-bottom: 80px;
    table-layout: fixed;
}

.compare-table thead th {
    background: #0b1830;
    color: #fff;
    padding: 20px 10px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table thead th:first-child {
    background: #1a84c9;
    text-align: left;
    padding-left: 25px;
    width: 25%;
}

.compare-table tbody td {
    padding: 18px 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #4b5563;
    transition: all 0.2s;
}

.compare-table tbody td:first-child {
    background: #1a84c9;
    /* Matching brand blue */
    text-align: left;
    padding-left: 25px;
    font-weight: 700;
    color: #ffffff;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.compare-table tbody tr:hover td {
    background: #f3f4f6;
}

.compare-table tbody tr.price-row td {
    background: #eff6ff;
    color: #1e40af;
    font-weight: 800;
}

.compare-table tbody tr.price-row td:first-child {
    background: #146ba3;
    /* Slightly darker brand blue */
    color: #ffffff;
}

/* Featured Tier Highlighting */
.compare-table th:nth-child(4) {
    background: #ffd600;
    color: #000;
    border: 1px solid #ffd600;
}

.compare-table td:nth-child(4) {
    background: #fffef0;
    border-left: 2px solid #ffd600;
    border-right: 2px solid #ffd600;
}

.compare-table tr:hover td:nth-child(4) {
    background: #fffbeb;
}

@media (max-width: 1024px) {
    .compare-table-wrap {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 1000px;
    }
}

/* FAQ Step Styling */
.step-num {
    background: #4a86a4;
    box-shadow: 0 4px 10px rgba(74, 134, 164, 0.2);
}

@media (max-width: 768px) {
    .p-card.featured {
        transform: scale(1);
        border-width: 1px;
    }
}

.pricing-v2-grid-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.pricing-v2-grid-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 650px;
    height: 650px;
    background-image: none;
    opacity: 0.1;
    z-index: 0;
    animation: rotateTag 45s linear infinite;
    pointer-events: none;
}

@keyframes rotateTag {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.compare-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 0;
    /* Creates vertical gaps between columns */
}

.compare-table th {
    background: #0b1830;
    color: #fff;
    padding: 12px 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px 12px 0 0;
}

.compare-table th:first-child {
    background: transparent;
    color: #0b1830;
    text-align: left;
    padding-left: 20px;
}

.compare-table td {
    padding: 8px;
    text-align: center;
    background: #f8fafc;
    border-bottom: 2px solid #fff;
    font-size: 0.85rem;
    color: #64748b;
    transition: all 0.3s;
}

.compare-table td:first-child {
    background: transparent;
    text-align: left;
    font-weight: 700;
    color: #4a86a4;
    padding-left: 20px;
}

/* Individual Column "Box" Look */
.compare-table tr:last-child td {
    border-radius: 0 0 12px 12px;
}

.compare-table tr:hover td {
    background: #eef7ff;
    color: #0b1830;
}

.compare-table td i {
    color: #4a86a4;
    font-size: 1rem;
}

/* Highlight Featured Column (Small Event) */
.compare-table th:nth-child(4) {
    background: #b4914a;
}

.compare-table td:nth-child(4) {
    background: #fffef0;
}

.compare-table tr:hover td:nth-child(4) {
    background: #fff9db;
}

@media (max-width: 768px) {
    .compare-table {
        min-width: 700px;
    }
}

/* FAQ Section V2 */
.pricing-faq-v2 {
    padding: 120px 0;
    background: #f0f9ff;
}

.container-800 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-tag {
    background: #e0f2fe;
    color: #4facfe;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-top h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #0b1830;
}

.faq-top h2 span {
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.step-num {
    width: 32px;
    height: 32px;
    background: #4a86a4;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.accordion-header h4 {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1830;
}

.accordion-header i {
    color: #94a3b8;
}

.accordion-body {
    padding: 0 30px 25px 82px;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-body p {
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .pricing-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-v2-grid {
        grid-template-columns: 1fr;
    }

    .pricing-v2-title {
        font-size: 2.5rem;
    }

    .compare-table-wrap {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 800px;
    }
}