/* ---------------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;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

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


.top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #14b8a6, transparent);
}


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

h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #111827;
    margin-bottom: 1.25rem;
}

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

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

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


.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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


.card {
    position: relative;
    background: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    cursor: default;
    z-index: 1;
}

.card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(24px);
}

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


.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.card p {
    line-height: 1.625;
    color: #4b5563;
}


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


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


.icon-box svg {
    width: 1.75rem;
    height: 1.75rem;
}




.card.purple .card-glow {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

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


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

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


.card.green .card-glow {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.card.green .icon-box {
    background: linear-gradient(135deg, #22c55e, #10b981);
}


.card.orange .card-glow {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

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




/* ---------------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------------------ */


/* -------------------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------------- */