/* ---------------Home Section Start---------------- */
:root {
    --primary-teal: #2dd4bf;
    --primary-emerald: #34d399;
    --primary-cyan: #22d3ee;
    --dark-blue-start: #001F3F;
    --dark-blue-mid: #002952;
    --dark-blue-end: #003d66;
}


.home-section {
    position: relative; 
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom right, var(--dark-blue-start), var(--dark-blue-mid), var(--dark-blue-end));
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    filter: blur(64px);
    mix-blend-mode: multiply;
    animation: float 6s infinite ease-in-out;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    background-color: var(--primary-teal);
}

.blob-2 {
    top: 10rem;
    right: 2.5rem;
    background-color: var(--primary-emerald);
    animation-delay: 2s;
}

.blob-3 {
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-cyan);
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

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

.bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0px);
    background-size: 48px 48px;
    pointer-events: none;
}

.home-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
    z-index: 10;
}

@media (min-width: 768px) {
    .home-container {
        padding: 10rem 2rem;
    }
}

.content-wrapper {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.icon-sparkle {
    width: 1rem;
    height: 1rem;
    color: var(--primary-teal);
}

h1 {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    h1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-teal), var(--primary-emerald), #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.home-subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
}


.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}
.cta-buttons .home-btn{
    background-image: linear-gradient(to right, #14b8a6, #0d9488, #059669);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-primary {
    
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(20, 184, 166, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-teal);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* ---------------Home Section End---------------- */
/* ---------------Feature Section Start---------------- */

.features-section {
    padding: 6rem 1rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
}

/* TOP LINE */

.top-line {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            #14b8a6,
            transparent
        );
}

/* HEADER */

.header-content {
    text-align: center;
    margin-bottom: 4rem;
}

.header-content h2 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.gradient-text {
    background:
        linear-gradient(
            to right,
            #0d9488,
            #059669
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.features-subtitle {
    font-size: 1.15rem;
    color: #6b7280;

    max-width: 720px;

    margin: auto;

    line-height: 1.7;
}

/* GRID */

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

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

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

/* ===============================
   FEATURE CARD
================================= */

.feature-card {
    position: relative;

    background: #ffffff;

    border-radius: 26px;

    padding: 2rem;

    overflow: hidden;

    border: 1px solid #edf2f7;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        background-color 0.45s ease;

    z-index: 1;

    isolation: isolate;
}

/* HOVER */

.feature-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.10);
}

/* GLOW */

.feature-card .card-glow {
    position: absolute;

    inset: 0;

    opacity: 0;

    transition: opacity 0.45s ease;

    z-index: -1;

    pointer-events: none;

    filter: blur(35px);
}

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

/* CONTENT */

.feature-card > * {
    position: relative;
    z-index: 2;
}

/* ===============================
   ICON BOX
================================= */

.feature-card .icon-box {
    width: 72px;
    height: 72px;

    min-width: 72px;
    min-height: 72px;

    max-width: 72px;
    max-height: 72px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.5rem;

    overflow: hidden;

    flex-shrink: 0;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

/* ICON ANIMATION */

.feature-card:hover .icon-box {
    transform: scale(1.08) rotate(4deg);
}

/* SVG FIX */

.feature-card .icon-box svg {
    width: 32px !important;
    height: 32px !important;

    min-width: 32px !important;
    min-height: 32px !important;

    max-width: 32px !important;
    max-height: 32px !important;

    display: block;

    flex-shrink: 0;

    stroke-width: 2.2;

    overflow: visible;
}

/* TEXT */

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 1rem;

    transition: color 0.35s ease;
}

.feature-card p {
    color: #4b5563;

    line-height: 1.7;

    font-size: 15px;

    transition: color 0.35s ease;
}

/* =================================
   PURPLE CARD
================================= */

.feature-card.purple .icon-box {
    background:
        linear-gradient(
            135deg,
            #9333ea,
            #ec4899
        );

    box-shadow:
        0 15px 35px rgba(147,51,234,0.25);
}

.feature-card.purple .card-glow {
    background:
        radial-gradient(
            circle at top left,
            rgba(147,51,234,0.18),
            transparent 70%
        );
}

.feature-card.purple:hover {
    background: #fcf7ff;
    border-color: #e9d5ff;
}

/* =================================
   BLUE CARD
================================= */

.feature-card.blue .icon-box {
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #06b6d4
        );

    box-shadow:
        0 15px 35px rgba(37,99,235,0.22);
}

.feature-card.blue .card-glow {
    background:
        radial-gradient(
            circle at top left,
            rgba(37,99,235,0.18),
            transparent 70%
        );
}

.feature-card.blue:hover {
    background: #f4f9ff;
    border-color: #bfdbfe;
}

/* =================================
   GREEN CARD
================================= */

.feature-card.green .icon-box {
    background:
        linear-gradient(
            135deg,
            #16a34a,
            #10b981
        );

    box-shadow:
        0 15px 35px rgba(16,185,129,0.22);
}

.feature-card.green .card-glow {
    background:
        radial-gradient(
            circle at top left,
            rgba(22,163,74,0.18),
            transparent 70%
        );
}

.feature-card.green:hover {
    background: #f3fff8;
    border-color: #bbf7d0;
}

/* =================================
   ORANGE CARD
================================= */

.feature-card.orange .icon-box {
    background:
        linear-gradient(
            135deg,
            #f97316,
            #ef4444
        );

    box-shadow:
        0 15px 35px rgba(249,115,22,0.22);
}

.feature-card.orange .card-glow {
    background:
        radial-gradient(
            circle at top left,
            rgba(249,115,22,0.18),
            transparent 70%
        );
}

.feature-card.orange:hover {
    background: #fff7f2;
    border-color: #fed7aa;
}

/* ---------------Feature Section End---------------- */


/* ---------------Skill Transformation Section Start---------------- */


.skill-transformation {
    font-family: 'Inter', sans-serif;
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    position: relative;
    box-sizing: border-box;
}

.skill-transformation * {
    box-sizing: border-box;
}

.st-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.st-header {
    text-align: center;
    margin-bottom: 5rem;
}

.st-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ccfbf1;
    color: #0f766e;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
}

.st-title {
    color: #111827;
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 0;
}

@media (min-width: 768px) {
    .st-title {
        font-size: 3rem;
    }
}

.st-highlight {
    background: linear-gradient(to right, #0d9488, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.st-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.5;
}

.st-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .st-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .st-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.st-card {
    padding: 2rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.st-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.st-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.st-card:hover .st-icon-box {
    transform: scale(1.1) rotate(6deg);
}

.st-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
    font-weight: 400;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.st-card p {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.st-explore {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.st-explore svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.st-card:hover .st-explore svg {
    transform: translateX(4px);
}



.st-card-blue {
    background-color: #eff6ff;
}

.st-card-blue:hover {
    border-color: #dbeafe;
    background-color: #ddecff;
}

.st-card-blue .st-icon-box {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.st-card-blue h3 {
    background-image: linear-gradient(to right, #2563eb, #0891b2);
}

.st-card-blue:hover .st-explore {
    color: #2563eb;
}

.st-card-pink {
    background-color: #fdf2f8;
}

.st-card-pink:hover {
    border-color: #fce7f3;
    background-color: #ffd9ee;
}

.st-card-pink .st-icon-box {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.st-card-pink h3 {
    background-image: linear-gradient(to right, #db2777, #e11d48);
}

.st-card-pink:hover .st-explore {
    color: #db2777;
}

.st-card-purple {
    background-color: #faf5ff;
}

.st-card-purple:hover {
    border-color: #f3e8ff;
    background-color: #eddbff;
}

.st-card-purple .st-icon-box {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.st-card-purple h3 {
    background-image: linear-gradient(to right, #9333ea, #4f46e5);
}

.st-card-purple:hover .st-explore {
    color: #9333ea;
}

.st-card-orange {
    background-color: #fff7ed;
}

.st-card-orange:hover {
    border-color: #ffedd5;
    background-color: #ffebd3;
}

.st-card-orange .st-icon-box {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.st-card-orange h3 {
    background-image: linear-gradient(to right, #ea580c, #d97706);
}

.st-card-orange:hover .st-explore {
    color: #ea580c;
}

.st-card-teal {
    background-color: #f0fdfa;
}

.st-card-teal:hover {
    border-color: #ccfbf1;
    background-color: #c1f3e7;
}

.st-card-teal .st-icon-box {
    background: linear-gradient(135deg, #14b8a6, #10b981);
}

.st-card-teal h3 {
    background-image: linear-gradient(to right, #0d9488, #059669);
}

.st-card-teal:hover .st-explore {
    color: #0d9488;
}

.st-footer {
    text-align: center;
}

.st-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #0d9488, #059669);
    color: white;
    text-decoration: none;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.st-btn:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(20, 184, 166, 0.3);
}

.st-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ---------------Skill Transformation Section End---------------- */

/* ------------------Choose Us Section Start------------------ */
.choose-us {
    padding: 6rem 1rem;
    background-color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
}

.choose-us-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.choose-us-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .choose-us-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.choose-us-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #d1fae5;
    color: #047857;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
}

.choose-us-title {
    color: #111827;
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .choose-us-title {
        font-size: 3rem;
    }
}

.choose-us-highlight {
    background: linear-gradient(to right, #0d9488, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.choose-us-desc {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.choose-us-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.choose-us-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.choose-us-icon-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(to right, #14b8a6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.choose-us-item-text {
    color: #374151;
    font-size: 1.125rem;
}

.choose-us-card-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1024px) {
    .choose-us-card-wrapper {
        max-width: 100%;
    }
}

.choose-us-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #2dd4bf, #34d399);
    border-radius: 1.5rem;
    transform: rotate(3deg);
}

.choose-us-card {
    position: relative;
    background: linear-gradient(to bottom right, #001F3F, #003d66);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: white;
}

@media (min-width: 768px) {
    .choose-us-card {
        padding: 3rem;
    }
}

.choose-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.choose-us-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.choose-us-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-teal {
    background-color: #14b8a6;
}

.bg-emerald {
    background-color: #10b981;
}

.bg-cyan {
    background-color: #06b6d4;
}

.choose-us-feature-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.125rem;
}

.choose-us-feature-sub {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* ------------------Choose Us Section End------------------ */

/* ------------------Home Testimonials------------------ */
.home-testimonials {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 1.5rem;
    background: #f8fbff;
    color: #111827;
}

.home-testimonials__container { max-width: 1180px; margin: 0 auto; }
.home-testimonials__heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.home-testimonials__eyebrow { display: block; margin-bottom: 1rem; color: #2563eb; font-size: .9rem; font-weight: 800; letter-spacing: .1em; }
.home-testimonials h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; }
.home-testimonials__heading p { max-width: 620px; margin: 1.2rem 0 0; color: #52627a; font-size: 1.12rem; line-height: 1.7; }
.home-testimonials__viewport { overflow: hidden; margin: 0 -1.5rem; padding: 0 1.5rem 1.25rem; }
.home-testimonials__track { display: flex; width: max-content; gap: 1.75rem; animation: home-testimonials-scroll 36s linear infinite; }
.home-testimonials__viewport:hover .home-testimonials__track, .home-testimonials__viewport:focus-within .home-testimonials__track { animation-play-state: paused; }
.home-testimonial-card { position: relative; display: flex; flex: 0 0 355px; min-height: 292px; flex-direction: column; justify-content: space-between; padding: 2rem; border: 1px solid #dbe5f2; border-radius: 1.6rem; background: #fff; box-shadow: 0 18px 45px rgba(25, 65, 120, .07); }
.home-testimonial-card:nth-child(3n) { border-color: #2563eb; box-shadow: 0 22px 50px rgba(37, 99, 235, .13); }
.home-testimonial-card__quote-mark { position: absolute; top: .5rem; left: 1.5rem; color: #e7efff; font-family: Georgia, serif; font-size: 4.2rem; line-height: 1; }
.home-testimonial-card__quote { position: relative; margin: 1rem 0 2rem; color: #42536d; font-size: 1.05rem; font-style: italic; line-height: 1.7; }
.home-testimonial-card__footer { display: flex; align-items: center; gap: .8rem; padding-top: 1.25rem; border-top: 1px dashed #dbe5f2; }
.home-testimonial-card__footer img { width: 3.2rem; height: 3.2rem; flex: 0 0 3.2rem; border: 2px solid #2563eb; border-radius: 50%; object-fit: cover; }
.home-testimonial-card__person { min-width: 0; display: flex; flex: 1; flex-direction: column; gap: .15rem; }
.home-testimonial-card__person strong { color: #111827; font-size: 1.05rem; }
.home-testimonial-card__person span { color: #53647d; font-size: .83rem; line-height: 1.35; }
.home-testimonial-card__result { display: flex; flex-direction: column; gap: .25rem; align-items: flex-start; }
.home-testimonial-card__result b { color: #2563eb; font-size: .95rem; }
.home-testimonial-card__result span { padding: .35rem .55rem; border-radius: .45rem; background: #e5edff; color: #2563eb; font-weight: 800; font-size: .85rem; }
@keyframes home-testimonials-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - .875rem)); } }
@media (max-width: 700px) { .home-testimonials { padding: 4.5rem 1rem; } .home-testimonials__heading { align-items: flex-start; flex-direction: column; margin-bottom: 2.25rem; } .home-testimonials__heading p { font-size: 1rem; } .home-testimonials__viewport { margin: 0 -1rem; padding: 0 1rem 1rem; } .home-testimonial-card { flex-basis: min(82vw, 355px); } }
@media (prefers-reduced-motion: reduce) { .home-testimonials__track { animation: none; } }

/* ---------------- /Home Testimonials------------------ */


/* -------------------Start Journey Section Start------------- */

.start-journey {
    position: relative;
    background: linear-gradient(135deg, #001F3F, #002952, #003d66);
    padding: 6rem 1.5rem;
    overflow: hidden;
    color: white;
    text-align: center;
    font-family: system-ui, -apple-system, sans-serif;
}

.journey-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: linear-gradient(white 1px, transparent 1px),linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.journey-container {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.journey-icon-rocket {
    width: 1rem;
    height: 1rem;
    color: #2dd4bf; 
}

.start-journey h2 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    margin-top: 0;
    color: white;
}

.start-journey p {
    color: #e5e7eb;
    font-size: 1.25rem;
    line-height: 1.625;
    margin-bottom: 3rem;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .start-journey h2 {
        font-size: 3rem;
    }
}

.journey-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .journey-actions {
        flex-direction: row;
        width: auto;
    }
}

.journey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.journey-btn:hover {
    transform: translateY(-4px);
}

.journey-btn-primary {

    background: linear-gradient(to right, #14b8a6, #0d9488, #059669);
    border: none;
}

.journey-btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.4);
}

.journey-icon-arrow {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.journey-btn-primary:hover .journey-icon-arrow {
    transform: translateX(4px);
}

.journey-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.journey-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* -------------------Start Journey Section End------------- */
