﻿/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


:root {
    /* Brand Colors */
    --color-primary: #06284a;
    --color-secondary: #1d90c9;
    /* Neutrals */
    --color-white: #ffffff;
    --color-black: #000000;
    /* Backgrounds & Surfaces */
    --color-bg: #ffffff;
    --color-surface: #f5f7fa;
    --color-border: #e0e0e0;
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--color-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

/* ================================= */
/* 🔘 Button Styles */
/* ================================= */
.btn {
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 9px 22px;
    border-radius: 6px;
    border: none;
}

/* Solid Buttons */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

    .btn-primary:hover {
        background-color: var(--color-secondary);
        border-color: var(--color-hover);
    }

/* Secondary Button */
.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: 1px solid var(--color-secondary);
}

    .btn-secondary:hover {
        background-color: var(--color-primary);
        border-color: var(--color-hover);
        box-shadow: var(--shadow-light);
    }

/* Outline Buttons */
.btn-outline-primary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

    .btn-outline-primary:hover {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

.btn-outline-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 1.5px solid var(--color-secondary);
}

    .btn-outline-secondary:hover {
        background-color: var(--color-secondary);
        color: var(--color-white);
    }

/* Disabled */
.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ================================= */
/* 🔗 Link Style */
/* ================================= */
.link-secondary {
    color: var(--color-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    font-weight: 500;
    transition: color 0.25s ease, border-color 0.25s ease;
}

    .link-secondary:hover {
        color: var(--color-hover);
        border-bottom: 1px solid var(--color-hover);
    }

/* Navigation Bar Styles */
.header {
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent; /* only applies to home page initially */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    z-index: 1000;
}

    .header.scrolled {
        background-color: #ffffff; /* home page after scroll OR all other pages */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

        /* Links, logo, icons color inside scrolled header */
        .header.scrolled .logo-text,
        .header.scrolled .nav-link,
        .header.scrolled .search-icon,
        .header.scrolled .sign-in-btn {
            color: #1e2832; /* dark color for all pages and home after scroll */
        }

            .header.scrolled .search-icon svg {
                stroke: #1e2832;
            }

        .header.scrolled .sign-in-btn {
            border-color: #1e2832;
        }

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 170px;
}

    .logo-container img {
        width: 100%;
    }

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #e30613;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 10px 0;
}

    .nav-link:hover {
        opacity: 0.8;
    }



    .nav-link i {
        font-size: 12px;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

.nav-item:hover i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 25px;
    color: #1e2832;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
    font-size: 15px;
}

    .dropdown-item:hover {
        background-color: #f5f5f5;
    }

.dropdown-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .search-icon svg {
        stroke: #ffffff;
        transition: stroke 0.3s ease;
    }

    .search-icon:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.header.scrolled .search-icon:hover {
    background-color: rgba(30, 40, 50, 0.1);
}

.sign-in-btn {
    padding: 4px 20px 6px;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

    .sign-in-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Search Bar Overlay */
.search-overlay {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    /* bottom: 0; */
    padding: 19px;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .search-overlay.active {
        display: flex;
        opacity: 1;
    }

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 60px 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.close-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
}

    .close-search:hover {
        color: #e30613;
    }

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 60px 60px;
    background: linear-gradient(135deg, rgb(30 40 50 / 45%), rgba(20, 30, 40, 0.518)), url(/images/man-working-on-a-laptop.png);
    background-size: cover;
    /* background-position: center; */
    background-attachment: fixed;
    background-repeat: no-repeat;
}
    .hero-section::before {
        content: "";
        position: absolute;
        top: -300px;
        left: -170px;
        width: 650px;
        height: 600px;
        background: radial-gradient(circle, rgb(255 255 255) 0%, rgb(255 255 255 / 0%) 35%, rgb(255 255 255 / 0%) 60%);
        pointer-events: none;
        z-index: 1;
    }
.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    /* gap: 60px; */
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}
    .hero-title:focus-visible{
        outline:0 !important;
    }


    .hero-subtitle {
        font-size: 20px;
        color: #ffffff;
        line-height: 1.6;
        margin-bottom: 20px;
        animation: fadeInUp 1.2s ease-out;
    }

.hero-buttons {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1.2s ease-out;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 82, 0.3) 0%, rgba(42, 84, 112, 0.3) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

    .hero-image-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=600&h=600&fit=crop');
        background-size: cover;
        background-position: center;
        opacity: 0.9;
    }

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 139, 0.2) 0%, rgba(227, 6, 19, 0.1) 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: #ffffff;
        transition: all 0.3s ease;
    }

.header.scrolled .mobile-menu-toggle span {
    background-color: #1e2832;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .header {
        padding: 20px 30px;
    }

    .hero-section {
        padding: 100px 30px 60px 30px;
        background-attachment: scroll;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo-container {
        width: 130px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

        .nav-menu.active {
            display: flex;
        }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-link {
        color: #1e2832;
        padding: 15px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 10px 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #f9f9f9;
        border-radius: 0;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    /* Dropdown visible when active on mobile */
    .nav-item.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 80px 20px 40px 20px;
        overflow:hidden;
    }
        .hero-section::before {
            left: -245px;
        }

        .hero-title {
            font-size: 36px;
        }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

   
    .hero-image {
        height: 300px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 16px;
    }

    .search-input {
        font-size: 18px;
        padding: 15px 50px 15px 15px;
    }
}

/* ============================= */
/* FEATURES SECTION STYLING START*/
/* ============================= */
.features-section {
    padding: 30px 60px;
    text-align: center;
}

.features-container {
    max-width: 1200px;
    margin: auto;
}

.features-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 50px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e9eef5;
    border-radius: 14px;
    padding: 35px 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    cursor: pointer;
}

    .feature-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 28px;
    color: var(--color-white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-black);
}

.feature-text {
    font-size: 0.97rem;
    color: #626262;
    line-height: 1.55;
}
.feature-btn {
    display: flex;
    justify-content: center;
}

/* ============================= */
/* FEATURES SECTION STYLING END*/
/* ============================= */

/* ============================= */
/* How it Works SECTION STYLING Start*/
/* ============================= */
.ph-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 60px 60px;
}



.ph-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

    .ph-process-steps::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: #e0e0e0;
        z-index: 0;
    }

.ph-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ph-step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.ph-step-title {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.ph-step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ph-container {
        padding: 40px 20px;
    }



    .ph-process-steps {
        flex-direction: column;
        gap: 40px;
    }

        .ph-process-steps::before {
            display: none;
        }

    .ph-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* How it Works SECTION STYLING End*/
/* ============================= */

/* ============================= */
/* TESTIMONIALS SECTION STYLING START*/

.ts-testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.ts-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ts-explore-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    background: transparent;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .ts-explore-button:hover,
    .ts-explore-button:focus {
        border-color: var(--text-primary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        outline: none;
    }

.ts-columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.ts-scroll-column {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
}

    /* Fade masks at top and bottom */
    .ts-scroll-column::before,
    .ts-scroll-column::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 80px;
        pointer-events: none;
        z-index: 10;
    }

    .ts-scroll-column::before {
        top: 0;
        background: linear-gradient(to bottom, var(--color-surface) 0%, transparent 100%);
    }

    .ts-scroll-column::after {
        bottom: 0;
        background: linear-gradient(to top, var(--color-surface) 0%, transparent 100%);
    }

.ts-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Column A scrolls up */
.ts-column-a .ts-scroll-content {
    animation-name: scrollUp;
    animation-duration: 30s;
}

/* Column B scrolls down */
.ts-column-b .ts-scroll-content {
    animation-name: scrollDown;
    animation-duration: 30s;
}

/* Pause animation on hover or focus-within */
.ts-scroll-column:hover .ts-scroll-content,
.ts-scroll-column:focus-within .ts-scroll-content {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.ts-testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


.ts-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ts-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ts-card-info {
    flex: 1;
}

.ts-card-name {
    font-weight: 600;
    font-size: 1rem;
}

.ts-card-title {
    font-size: 0.875rem;
    color: #5b5b5b;
}

.ts-card-testimonial {
    font-size: 0.938rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */
@media (max-width: 760px) {
    .ts-columns-container {
        grid-template-columns: 1fr;
    }

    .ts-section-header h2 {
        font-size: 1.5rem;
    }

    .ts-scroll-column {
        height: 400px;
    }
}

/* ============================================
           REDUCED MOTION SUPPORT
           ============================================ */
@media (prefers-reduced-motion: reduce) {
    .ts-scroll-content {
        animation: none !important;
    }

    .ts-testimonial-card:hover,
    .ts-testimonial-card:focus,
    .ts-explore-button:hover,
    .ts-explore-button:focus {
        transform: none;
    }
}

/* TESTIMONIALS SECTION STYLING End*/
/* ============================= */


/* ============================= */
/* FOOTER SECTION STYLING START*/

.footer {
    background-color: var(--color-white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-logo img {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-tagline {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .social-link:hover {
        background-color: var(--color-primary);
        color: var(--color-white);
        transform: translateY(-2px);
    }

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.25rem;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-links a {
        color: #6b7280;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.25s ease;
    }

        .footer-links a:hover {
            color: var(--color-secondary);
        }

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
}
/* Subscribe Box Styles */
.subscribe-column .subscribe-text {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.subscribe-box {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.subscribe-input {
    flex: 1;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #374151;
    background-color: var(--color-surface);
}

    .subscribe-input:focus {
        outline: none;
        border-color: var(--color-primary);
    }

.subscribe-btn {
    padding: 0.65rem 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.25s ease;
    white-space: nowrap;
}

    .subscribe-btn:hover {
        background-color: var(--color-secondary);
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
    .subscribe-box {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }
}

/* FOOTER SECTION STYLING END*/
/* ============================= */

/* ============================= */
/* MINI BBANNER STYLING START*/
.mb-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

    .mb-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.15);
    }

.mb-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.mb-content-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 35px;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mb-heading {
    font-size: 35px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 0.1px;
}

.mb-description {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Responsive styles */
@media (max-width: 768px) {
    .mb-banner {
        min-height: 350px;
        padding: 30px 15px;
    }

    .mb-content-box {
        padding: 30px 25px;
        max-width: 100%;
    }

    .mb-heading {
        font-size: 2rem;
    }

    .mb-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

}
/* MINI BBANNER STYLING END*/
/* ============================= */

/* ============================= */
/* FEATURED PROFILES STYLING START*/
.fp-section {
    max-width: 1400px;
    margin: 0 auto;
    padding:60px 60px 0;
}

.fp-header {
    margin-bottom: 20px;
}

.fp-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.fp-subtitle {
    font-size: 14px;
    color: #00000099;
}

/* Root wrapper */
.fp-root {
    background-color: var(--color-bg);
    padding: 18px;
    color: var(--color-primary);
    margin-bottom:20px;
}

/* Carousel viewport and nav */
.fp-carousel-wrap {
    display: flex;
    align-items: stretch;
    gap: 12px;
    position: relative;
}
.fp-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 260px);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px;
    -webkit-overflow-scrolling: touch;
}

    /* Hide native scrollbar in a tasteful way (keeps accessibility) */
    .fp-carousel::-webkit-scrollbar {
        display:none;
    }

    .fp-carousel::-webkit-scrollbar-thumb {
       display:none;
    }

.fp-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    min-width: 210px;
    max-width: 230px;
    scroll-snap-align: start;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Decorative top banner */
.fp-banner {
    height: 70px;
    background: linear-gradient(90deg, rgba(29,144,201,0.10) 0%, rgba(6,40,74,0.04) 100%);
    border-top-left-radius: calc(8px - 1px);
    border-top-right-radius: calc(8px - 1px);
    position: relative;
}


/* Avatar (circular) */
.fp-avatar-wrap {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: var(--color-surface);
    border: 6px solid var(--color-white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(70px - (84px / 2));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.fp-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card body container (space for avatar overlap) */
.fp-card-body {
    padding-top: calc(84px / 2 + 10px);
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    flex:1;
}

/* Name, job, meta */
.fp-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fp-verified {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--color-white), rgba(29,144,201,0.06));
    border: 1px solid rgba(29,144,201,0.16);
    box-shadow: none;
}

.fp-role {
    font-size: 13px;
    color: #64748b;
    line-height: 1.2;
    max-height: 2.6em; /* approximate 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 6px;
}

.fp-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #8898a6;
    margin-top: 6px;
}

.fp-mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    display: inline-block;
    vertical-align: middle;
}

    .fp-mini-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* CTA button: outlined style similar to image */
.fp-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    min-width: 150px;
    border-radius: 28px;
    border: 1px solid var(--color-secondary);
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    color: var(--color-secondary);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
}

   
/* Card footer area (button alignment) */
.fp-card-footer {
    padding:0 16px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive behavior */
@media (min-width: 980px) {
    .fp-carousel {
        grid-auto-columns: minmax(240px, 1fr);
    }
}

@media (max-width: 560px) {
   

    .fp-card {
        min-width: 80%;
    }

    .fp-card-body {
        padding-left: 12px;
        padding-right: 12px;
    }

    .fp-btn {
        min-width: 140px;
        padding: 10px 12px;
    }
}

/* Simple nav arrows */
.fp-nav {
    position: absolute;
    top: -60px;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
    width: 100%;
    justify-content: end;
    padding: 0 6px;
}

    .fp-nav button {
        pointer-events: auto;
        background: var(--color-white);
        border: 1px solid var(--color-border);
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-light);
        cursor: pointer;
    }


/* Utility small helper classes (all prefixed) */
.fp--muted {
    color: #7b8899;
    font-size: 13px;
}

.fp-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .fp-section {
        padding: 16px;
    }

   
}


/* FEATURED PROFILES STYLING END*/
/* ============================= */


/* ============================= */
/* SEARCH STYLING START*/

.srch-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-top: -40px;
    position: relative;
}

.srch-label {
    font-weight: 600;
    font-size: 1rem;
    min-width: 150px;
}

.srch-input-group {
    position: relative;
    flex: 1;
}

    .srch-input-group input,
    .srch-input-group select {
        width: 100%;
        padding: 10px 40px 10px 35px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        outline: none;
        -webkit-appearance: none;
    }

    .srch-input-group i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: var(--color-secondary);
        font-size: 1.2rem;
    }

    .srch-input-group .srch-icon-left {
        left: 10px;
    }

    .srch-input-group .srch-icon-right {
        right: 10px;
        pointer-events: none;
    }


/* Responsive */
@media (max-width: 768px) {
    .srch-container {
        flex-direction: column;
        align-items: stretch;
    }

    .srch-label {
        min-width: auto;
    }

    .srch-button {
        width: 100%;
    }
}
/* SEARCH STYLING END*/
/* ============================= */

/* ============================= */
/* REAL IMPACT STYLING START*/
.imp-section {
    max-width: 1400px;
    margin: 0 auto;
    padding:60px;
}


.imp-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.imp-card {
    background: linear-gradient(135deg, #0092ca24 0%, #0092ca6b 100%);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .imp-card:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-medium);
    }

.imp-metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.imp-metric-label {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.4;
}

.imp-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex:1;
}

.imp-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.imp-quote-text {
    font-size: 1rem;
    color: var(--color-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

.imp-author {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .imp-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .imp-heading {
        font-size: 2rem;
    }

    .imp-metric-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .imp-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .imp-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .imp-card {
        padding: 30px 25px;
    }

    .imp-metric-number {
        font-size: 3rem;
    }

    .imp-metric-label {
        font-size: 1.1rem;
    }
}
/* REAL IMPACT STYLING END*/
/* ============================= */



