﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --color-blue: #2998FF;
    --color-blue-light: #E6F7FF;
    --color-bg-light: #F6F8FE;
    --color-blue-darker: #201C44;
    --color-black: #2c2c2c;
    --color-white: #ffffff;
    --color-gray-light: #f3f3f3;
    --color-gray-dark: #555;
    --color-text-light: #e0e0e0;
    --color-text-dark: #444;
    --color-border: #bbb;
    --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 5px;
    --border-radius-md: 8px;
    --border-radius-lg: 25px;
    --transition-fast: 0.18s ease;
    --transition-normal: 0.28s ease;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--color-text-dark);
    line-height: 1.4;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}
/* Mini Hero Section */
.sp-features-hero {
    padding: 70px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.sp-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.sp-hero-heading {
    font-size: 40px;
    font-weight: 600;
    color: #1a1f3a;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.sp-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #5a6c7d;
    max-width: 750px;
    margin: 0 auto;
}
/* Top nav */
.sd-top-nav {
    background: var(--color-bg-light);
    color: var(--color-blue-darker);
    display: flex;
    justify-content: flex-end;
    padding: 6px 48px;
    font-size: 13px;
}

.sd-top-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

    .sd-top-links a {
        opacity: 0.9;
        display: flex;
        gap: 4px;
        align-items: center;
        transition: opacity var(--transition-fast);
    }

        .sd-top-links a:hover {
            opacity: 1;
        }

/* Header */
.sd-header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 60;
    height: 70px;
}

.sd-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sd-logo {
   width:160px;
}
    .sd-logo img{
        width:100%;
    }
    /* Nav */
    .sd-nav-wrap {
        position: relative;
    }

.sd-nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.sd-nav-item {
    font-size: 17px;
    color: var(--color-blue-darker);
    cursor: pointer;
    position: relative;
    padding: 8px 4px;
    transition: color var(--transition-normal);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .sd-nav-item:hover,
    .sd-nav-item.sd-active {
        color: var(--color-blue);
    }

/* Dropdown wrapper - REQUIRED for CSS-only approach */
.sd-nav-item-wrapper {
    position: relative;
}

    /* Invisible bridge to prevent dropdown from closing */
    .sd-nav-item-wrapper::after {
        content: '';
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        height: 30px;
        z-index: 49;
        pointer-events: none;
    }

    .sd-nav-item-wrapper:hover::after {
        pointer-events: auto;
    }

/* Dropdown (desktop) - CSS ONLY */
.sd-dropdown {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 18px 20px;
    width: 80%;
    max-width: 1200px;
    z-index: 50;
    /* CSS-only hide/show */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

/* Show dropdown on hover of wrapper */
.sd-nav-item-wrapper:hover .sd-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Keep text color when hovering dropdown */
.sd-nav-item-wrapper:hover .sd-nav-item {
    color: var(--color-blue);
}

.sd-dropdown-grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 8px;
}

.sd-dropdown-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    border-right: 1px solid #eef2f6;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
    background: transparent;
}

    .sd-dropdown-card:last-child {
        border-right: none;
    }

    .sd-dropdown-card:hover {
        background: var(--color-gray-light);
    }

.sd-dropdown-icon {
    font-size: 20px;
    opacity: 0.85;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-dropdown-text {
    font-weight: 600;
    color: var(--color-blue-darker);
}

/* User actions */
.sd-user-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.sd-login {
    font-size: 14px;
    color: var(--color-blue-darker);
}

.sd-btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sd-btn-primary {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 6px 12px rgba(243, 109, 26, 0.18);
}

.sd-btn-secondary {
    background: var(--color-white);
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
}

    .sd-btn-secondary:hover {
        background: var(--color-blue-light);
    }

/* Hamburger */
.sd-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

    .sd-hamburger span {
        width: 26px;
        height: 3px;
        background: var(--color-blue-darker);
        border-radius: 2px;
        display: block;
    }

/* Sidebar mobile */
.sd-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
    z-index: 9999999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y:scroll;
}

    .sd-sidebar.sd-open {
        right: 0;
    }

.sd-sidebar-close {
    align-self: flex-end;
    font-size: 24px;
    color: var(--color-blue-darker);
    cursor: pointer;
}

.sd-sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.sd-sidebar .sd-nav-item {
    padding: 8px 6px;
    font-size: 16px;
}

.sd-sidebar .sd-dropdown-mobile {
    margin-top: 6px;
    padding-left: 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

    .sd-sidebar .sd-dropdown-mobile.sd-open {
        display: flex;
    }

.sd-sidebar .sd-sidebar-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hero */
.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Left Card - Tasks Assigned */
.left-card {
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.tasks-assigned-image {
    height: 60px;
    display: block;
}

/* Stats Card */
.stats-card {
    margin-top: 24px;
    transition: var(--transition-normal);
}


.stats-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Center Content */
.center-content {
    text-align: center;
}

.main-heading {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-blue-darker);
    line-height: 1.1;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-blue) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 18px;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--color-blue);
    color: var(--color-white);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
    }

.btn-secondary {
    background: var(--color-white);
    color: var(--color-blue-darker);
    border: 2px solid var(--color-text-light);
}

    .btn-secondary:hover {
        border-color: var(--color-blue);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

/* Right Cards */
.right-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Schedule Card */
.schedule-card {
    transition: var(--transition-normal);
}

.schedule-image {
    height: 65px;
    display: block;
}

/* Worker Image Card */
.worker-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 280px;
    transition: var(--transition-normal);
}

   

.worker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .left-card,
    .right-cards {
        max-width: 400px;
        margin: 0 auto;
    }

    .main-heading {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .main-heading {
        font-size: 42px;
    }

    .description {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .schedule-card {
        padding: 16px;
    }

    .worker-card {
        height: 220px;
    }
}

/* img-section */

.img-section {
    background: var(--color-bg-light);
    padding: 20px;
    max-width: 1000px;
    margin: 30px auto;
    border-radius: var(--border-radius-lg);
}

/* reviews section */
.sd-ratings-section {
    background: var(--color-white);
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

/* --- Individual Rating Card --- */
.sd-rating-card {
    min-width: 150px;
    max-width: 250px;
}

.sd-rating-icon {
    font-size: 16px;
    color: #FFB800;
    margin-right: 5px;
}

.sd-rating-badge {
    font-weight: 600;
    font-size: 14px;
    color: #FFB800;
}

.sd-rating-title {
    font-weight: 700;
    color: var(--color-blue-darker);
    margin: 8px 0 6px 0;
}

.sd-rating-text {
    font-size: 14px;
    color: #6f6f87;
    line-height: 1.4;
}

/* --- Stars --- */
.sd-stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 6px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .sd-ratings-section {
        gap: 30px;
        padding: 40px 10px;
    }

    .sd-rating-card {
        max-width: 200px;
    }

    .sd-rating-title {
        font-size: 16px;
    }

    .sd-rating-text {
        font-size: 14px;
    }
}

/* ai section */
.sd-ai-section {
    background: linear-gradient(135deg, #74b9ff, #e4e2ff, #81ecec);
    border-radius: 30px;
    padding: 50px 20px;
    text-align: center;
    color: var(--color-blue-darker);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 60px auto;
}

.sd-hero-star {
    position: absolute;
    color: var(--color-white);
    font-size: 20px;
    opacity: 0.8;
}

    .sd-hero-star:nth-child(1) {
        top: 20%;
        left: 25%;
    }

    .sd-hero-star:nth-child(2) {
        top: 30%;
        right: 20%;
    }

    .sd-hero-star:nth-child(3) {
        bottom: 25%;
        left: 15%;
    }

.sd-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-blue-darker);
    line-height: 1.2;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .sd-hero-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* ---------- Search Box ---------- */
.sd-search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border-radius: 40px;
    padding: 14px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
}

.sd-search-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sd-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a29bfe, #74b9ff, #81ecec);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
}

.sd-search-text {
    color: #7b68ee;
    font-weight: 500;
    font-size: 16px;
}

.sd-search-btn {
    background: #f3e8ff;
    color: #7b68ee;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .sd-search-btn:hover {
        background: #e0d4ff;
    }

.sd-learn-more {
    font-size: 18px;
    font-weight: 500;
    color: #7b68ee;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .sd-learn-more:hover {
        text-decoration: underline;
        transform: translateX(5px);
    }

/* dropdown-video section */
.sd-dr-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    min-height: 110vh;
}

.sd-dr-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-blue-darker);
    margin-bottom: 40px;
}

.sd-dr-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sd-dr-dropdown-container {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sd-dr-dropdown-item {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sd-dr-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

    .sd-dr-dropdown-header:hover {
        background: #f8fafc;
    }

.sd-dr-dropdown-item.active .sd-dr-dropdown-header {
    border-bottom: 2px solid #1e293b;
}

.sd-dr-dropdown-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.sd-dr-dropdown-item.active .sd-dr-dropdown-title {
    color: #1e293b;
}

.sd-dr-dropdown-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sd-dr-dropdown-item.active .sd-dr-dropdown-icon {
    transform: rotate(180deg);
}

.sd-dr-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    opacity: 0;
}

.sd-dr-dropdown-item.active .sd-dr-dropdown-content {
    max-height: 300px;
    padding: 0 24px 20px;
    opacity: 1;
}

.sd-dr-dropdown-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sd-dr-learn-more {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

    .sd-dr-learn-more:hover {
        color: #2563eb;
    }

.sd-dr-video-container {
    width: 60%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #cbd5e1;
}

.sd-dr-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

    .sd-dr-video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.5s ease;
    }

@media (max-width: 1024px) {
    .sd-dr-content-wrapper {
        flex-direction: column;
    }

    .sd-dr-dropdown-container,
    .sd-dr-video-container {
        width: 100%;
    }

    .sd-dr-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sd-dr-title {
        font-size: 2rem;
        text-align: center;
    }
}

/* hover-links section */
.industry-section {
    max-width: 1400px;
    text-align: center;
    padding: 40px 20px;
    margin: 20px auto;
}

    .industry-section h2 {
        font-size: 26px;
        font-weight: 600;
        color: #4A4A70;
        margin-bottom: 25px;
    }

/* Navigation List Styling */
.industry-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 15px;
}

.industry-nav li {
    display: flex;
    align-items: center;
}

    .industry-nav li:not(:last-child)::after {
        content: '/';
        font-size: 2.5rem;
        color: #3f3f6b;
        font-weight: 300;
        margin-left: 15px;
    }

/* === KEY CHANGES START === */

/* Link Styling */
.industry-nav a {
    font-size: 2.5rem;
    font-weight: 600;
    color: #3f3f6b;
    text-decoration: none;
    transition: color 0.3s ease;
    /* Use Flexbox for alignment */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* Space between text and image */
}



/* The Hover Image Styling */
.hover-image {
    height: 45px;
    /* Set a fixed height */
    border-radius: 25px;
    object-fit: cover;
    /* Animation Setup: Hide the image by setting width to 0 */
    width: 0;
    opacity: 0;
    /* Fade it in for a smoother look */
    transition: width 0.4s ease, opacity 0.4s ease;
}

/* The Hover Effect: Expand the image to its full width */
.industry-nav a:hover .hover-image {
    width: 80px;
    /* The target width */
    opacity: 1;
}


/* Responsive Adjustments */
@media (max-width: 768px) {

    .industry-nav a,
    .industry-nav li:not(:last-child)::after {
        font-size: 1.8rem;
    }

    .industry-section h2 {
        font-size: 1rem;
    }
}

/* u will love section */

.lv-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.lv-heading {
    font-size: 40px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 50px;
    text-align: left;
}

.lv-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.lv-card {
    padding: 40px 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .lv-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.lv-card-beige {
    background-color: #fef6ed;
}

.lv-card-blue {
    background-color: #e8f6f8;
}

.lv-card-purple {
    background-color: #f4f0fb;
}

.lv-card-light-blue {
    background-color: #e8f2f7;
}

.lv-card-image {
    width: 100%;
    display: block;
    object-fit: contain;
}

.lv-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.lv-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a5e;
}

.lv-footer {
    background-color: #f5f5fa;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.lv-footer-text {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lv-heart-icon {
    font-size: 2rem;
}

@media (max-width: 1200px) {
    .lv-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .lv-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .lv-section {
        padding: 40px 15px;
    }

    .lv-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .lv-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lv-card {
        padding: 30px 25px;
    }

    .lv-card-title {
        font-size: 1.3rem;
    }

    .lv-card-description {
        font-size: 0.95rem;
    }

    .lv-footer-text {
        font-size: 1.5rem;
    }

    .lv-heart-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lv-heading {
        font-size: 1.75rem;
    }

    .lv-card {
        padding: 25px 20px;
    }

    .lv-card-title {
        font-size: 1.2rem;
    }

    .lv-footer {
        padding: 25px 20px;
    }

    .lv-footer-text {
        font-size: 1.3rem;
    }
}

/* helping sectio */
.hp-testimonial-section {
    background: var(--color-blue-darker);
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hp-heading {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.hp-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 50px;
}

.hp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.hp-card-featured {
    background: rgba(255, 255, 255, 0.08);
}

.hp-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.hp-author-info {
    margin-bottom: 70px;
}

.hp-author-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hp-author-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.hp-quote-icon {
    color: #818cf8;
    font-size: 2.5rem;
    line-height: 0;
}

.hp-testimonial-text {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hp-image-placeholder {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}



@media (max-width: 1024px) {
    .hp-heading {
        font-size: 2.5rem;
    }

    .hp-cards-grid {
        gap: 25px;
    }

    .hp-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .hp-testimonial-section {
        padding: 60px 20px;
    }

    .hp-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hp-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hp-card {
        padding: 30px;
    }

    .hp-testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hp-heading {
        font-size: 1.5rem;
    }

    .hp-card {
        padding: 25px;
    }

    .hp-testimonial-text {
        font-size: 0.95rem;
    }

    .hp-cta-button {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

/* loop-scroll */
/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    /* background: #ffc800; */
    padding: 30px 0;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
}

.carousel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

    .carousel-item img {
        width: 32px;
        height: 32px;
    }

    .carousel-item span {
        font-weight: bold;
        color: #222;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* support-talk */
.sp-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 80px 80px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.sp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600') center/cover;
    filter: brightness(0.9);
}

.sp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(100, 150, 100, 0.2) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(50, 100, 200, 0.2) 100%);
}

.sp-container {
    width: 85%;
    /* position: relative;
            margin: 0 auto;
            padding: 80px 20px; */
    z-index: 1;
}

.sp-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sp-stat-card {
    text-align: center;
    padding: 20px;
    opacity: 1;
}


.sp-stat-number {
    font-size: 70px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sp-stat-description {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}



@media (max-width: 768px) {
    .sp-container {
        padding: 60px 15px;
    }

    .sp-stats-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }

    .sp-stat-number {
        font-size: 4rem;
    }

    .sp-stat-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sp-stat-number {
        font-size: 3.5rem;
    }

    .sp-stat-description {
        font-size: 0.95rem;
    }
}

/* support section */
.sp-support-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.sp-support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}



.sp-main-heading {
    font-size: 40px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sp-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sp-feature-card {
    display: flex;
    align-items: start;
    gap: 20px;
}



.sp-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #d6e5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}



.sp-icon {
    width: 30px;
    height: 30px;
    stroke: #2c3e50;
    stroke-width: 2;
    fill: none;
}

.sp-feature-content {
    flex: 1;
    padding-top: 5px;
}

.sp-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.sp-feature-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}



@media (max-width: 968px) {
    .sp-support-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sp-heading-wrapper {
        position: relative;
        top: 0;
    }

    .sp-main-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .sp-support-section {
        padding: 60px 20px;
    }

    .sp-main-heading {
        font-size: 2.2rem;
    }

    .sp-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .sp-icon {
        width: 24px;
        height: 24px;
    }

    .sp-feature-title {
        font-size: 1.3rem;
    }

    .sp-feature-description {
        font-size: 0.95rem;
    }
}

/* mini banner section cta */
.sp-cta-section {
    background: var(--color-blue-darker);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.sp-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sp-cta-heading {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}





@media (max-width: 968px) {
    .sp-cta-section {
        padding: 80px 20px;
    }

    .sp-cta-heading {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .sp-cta-buttons {
        gap: 15px;
    }

    .sp-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .sp-cta-section {
        padding: 60px 20px;
    }

    .sp-cta-heading {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .sp-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .sp-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
    }
}

/* footer */
.sp-footer {
    background-color: #f8f9fa;
    padding: 60px 48px 30px;
}

.sp-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sp-footer-main {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.sp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1f3a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.sp-cta-group {
    display: flex;
    gap: 12px;
}

.sp-btn {
    padding: 11px 24px 9px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.sp-btn-primary {
    background: var(--color-blue);
    color: #ffffff;
    border: none;
}

    .sp-btn-primary:hover {
        background: #0284c7;
    }

.sp-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #d1d5db;
}

    .sp-btn-secondary:hover {
        border-color: #9ca3af;
    }

.sp-contact-section {
    margin-top: 20px;
}

.sp-contact-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.sp-contact-link {
    color: #4b5563;
    text-decoration: underline;
    font-size: 0.9rem;
}

    .sp-contact-link:hover {
        color: #0ea5e9;
    }

.sp-app-buttons {
    /*display: flex;*/
    gap: 10px;
    /*margin-top: 25px;*/
}
.sp-buttons {
    display: flex;
    gap: 10px;
}

.sp-app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

    .sp-app-btn:hover {
        border-color: #9ca3af;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

.sp-app-icon {
    width: 22px;
    height: 22px;
}

.sp-app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sp-app-small {
    font-size: 0.6rem;
    color: #6b7280;
    line-height: 1;
}

.sp-app-large {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2px;
}

.sp-footer-links {
    display: grid;
    grid-template-rows: auto auto;
    gap: 40px;
}

.sp-footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sp-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-column-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.sp-footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.5;
}

    .sp-footer-link:hover {
        color: #0ea5e9;
    }

.sp-footer-middle {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 25px 0;
}

.sp-action-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.88rem;
}

    .sp-action-link:hover {
        color: #0ea5e9;
    }



.sp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sp-legal-links {
    display: flex;
    gap: 25px;
}

.sp-legal-link {
    color: #6b7280;
    text-decoration: underline;
    font-size: 0.85rem;
}

    .sp-legal-link:hover {
        color: #0ea5e9;
    }

.sp-copyright {
    color: #9ca3af;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .sp-footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sp-footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sp-footer {
        padding: 40px 20px 25px;
    }

    .sp-cta-group {
        flex-direction: column;
    }

    .sp-btn {
        width: 100%;
        text-align: center;
    }

    .sp-app-buttons {
        flex-direction: column;
    }

    .sp-app-btn {
        width: fit-content;
    }

    .sp-footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sp-footer-links {
        gap: 30px;
    }

    .sp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .sp-legal-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* small screens */
@media (max-width: 768px) {
    .sd-top-nav {
        padding: 6px 16px;
        font-size: 13px;
    }

    .sd-top-links {
        gap: 12px;
    }

    .sd-header {
        padding: 12px 18px;
    }

    .sd-nav-menu,
    .sd-user-actions {
        display: none;
    }

    .sd-hamburger {
        display: flex;
    }

    .sd-dropdown {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        top: 70px;
        min-width: auto;
        width: calc(100% - 40px);
        padding: 12px;
    }
}

.lazy-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .lazy-section.visible {
        opacity: 1;
        transform: translateY(0);
    }
