/* ============= CSS RESET & VARIABLES ============= */
:root {
    /* Colors */
    --primary: #4361ee;
    --primary-light: #4895ef;
    --primary-dark: #3a0ca3;
    --secondary: #f72585;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --background: #ffffff;
    --background-alt: #f6f9fc;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #fbbf24;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Lexend', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.04), 0 4px 6px rgba(0, 0, 0, 0.08);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ============= UTILITY CLASSES ============= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.text-center {
    text-align: center;
}

.section-tag {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-dark);
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-footer {
    margin-top: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.25);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(247, 37, 133, 0.2);
}

.btn-secondary:hover {
    background: #e01b77;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.25);
}


/* ============= HEADER ============= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 17px 0;
    z-index: 100;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    /* background-color: var(--primary-light); */
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--background);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.logo-img {
    width: 45px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.175);
}

.logo div {
    display: flex;
    flex-direction: row;
    gap: 3px;
    justify-content: center;
}

.logo span {
    color: var(--primary);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
    z-index: 2;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============= HERO SECTION ============= */
.hero {
    padding: 80px 0;
    padding-bottom: 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {

    align-items: center;
    */ display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(67, 97, 238, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 1.5rem;
}

.coverpicone,
.coverpitwo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 540px;
}

.coverpicone img,
.coverpitwo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.founder-name {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    text-align: center;
    color: #333;
}


.image-shape {
    /* display: none;  Optional: remove background shape */
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}


/* Wave section */

/* THE WAVE SECTION YOU'LL NEED */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-shape {
    position: relative;
    display: block;
    width: 200%;
    height: 100px;
    animation: wave 20s linear infinite;
}

.wave-shape:nth-child(2) {
    bottom: -25px;
    opacity: 0.5;
    animation: wave-reverse 18s linear infinite;
}

.wave-shape:nth-child(3) {
    bottom: -50px;
    opacity: 0.3;
    animation: wave 25s linear infinite;
}

.wave-shape svg {
    width: 100%;
    height: 100px;
}

.wave-shape .shape-fill {
    fill: #4a86e8;
}

.wave-shape:nth-child(1) .shape-fill {
    fill: #6a9eef;
}

.wave-shape:nth-child(2) .shape-fill {
    fill: #83acf0;
}

.wave-shape:nth-child(3) .shape-fill {
    fill: #94b9f0;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes wave-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ============= ABOUT SECTION ============= */
.about-section {
    background: linear-gradient(135deg, var(--background) 0%, rgba(59, 130, 246, 0.03) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Statistics Cards - Standalone Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats .stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.about-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-stats .stat-item:hover::before {
    transform: scaleX(1);
}

.about-stats .stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.about-stats .stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.about-stats .stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    animation: countUp 1s ease-out 0.5s both;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-stats .stat-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text {
    padding: 20px 0;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.about-lead {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}



.about-features {
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(59, 130, 246, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::before {
    opacity: 0.1;
}

.feature-icon i {
    font-size: 24px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
    position: relative;
}

.feature-content {
    flex-grow: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.mission-vision-item {
    background: linear-gradient(135deg, var(--background-alt), rgba(59, 130, 246, 0.02));
    border-radius: var(--radius-md);
    padding: 35px 30px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-vision-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.mission-vision-item:hover::before {
    transform: scaleX(1);
}

.mv-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.mv-title i {
    font-size: 22px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.mv-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-lead {
        font-size: 18px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        padding: 15px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .about-stats .stat-item {
        padding: 25px 20px;
    }

    .about-stats .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-text {
        padding: 20px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-lead {
        font-size: 16px;
        padding-left: 20px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }
}


/* ============= CONTACT SECTION ============= */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.info-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-items {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

.social-link:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    padding: 50px 40px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--background);
    transition: var(--transition);
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 12px;
}

/* ============= FOOTER ============= */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-content {
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #a5c4ff;
}

.footer-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-menu li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-menu li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.subscribe-form .form-group {
    display: flex;
    margin-bottom: 10px;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    border: none;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form button {
    padding: 0 20px;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    background-color: var(--secondary);
    color: white;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background-color: #e01b77;
}

.subscribe-note {
    font-size: 13px;
    opacity: 0.6;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* ============= RESPONSIVE STYLES ============= */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {

    .hero-section {
        padding-top: 10px !important;
        margin-top: 0 !important;
    }

    .hero-content {
        margin-top: 0 !important;
        display: flex;
        flex-direction: row;
        /* side-by-side layout */
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        text-align: left;
        gap: 1rem;
    }

    .hero-text {
        flex: 1;
        min-width: 45%;
        gap: 1rem;
    }

    .hero-image {
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* center vertically */
        margin-top: 0 !important;
    }

    .coverpicone,
    .coverpitwo {
        width: 30vw;
        margin-top: 0 !important;
    }

    .coverpicone img,
    .coverpitwo img {
        width: 100%;
        height: auto;
        object-fit: cover;
        /* or 'contain' if needed */
    }

    .founder-name {
        font-size: 0.6rem;
        margin-top: 0.3rem;
        text-align: center;
    }
}



@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}




/* Fixed Buttons */

.plans {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.plan-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan-header {
    background-color: var(--primary-color);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.plan-header h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 36px;
    font-weight: bold;
}

.plan-price span {
    font-size: 16px;
    font-weight: normal;
}

.plan-features {
    padding: 30px 20px;
    text-align: center;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.select-plan-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.select-plan-btn:hover {
    background-color: #3367d6;
}

/*neww */
.contact-buttons {
    display: flex;
    position: fixed;
    bottom: 30px;
    width: 100%;
    justify-content: space-between;
    z-index: 99;
    padding: 0 30px;
}

.call-btn,
.whatsapp-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.call-btn {
    background-color: var(--accent-color);
    background-color: #25D366;
}

.whatsapp-btn {
    background-color: #25D366;
}

.book-mentor-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    background-color: hsl(212, 96%, 38%);
}

.call-btn:hover,
.whatsapp-btn:hover,
.book-mentor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/*Features*/
.features-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 10px;
}

.feature-card p {
    color: #4b5563;
    font-size: 16px;
}

@media (max-width: 600px) {
    .features-section h2 {
        font-size: 28px;
    }
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.25);
}



/* Responsive design */


/* Fix variable references */
:root {
    --primary-color: var(--primary);
    /* #4361ee */
    --accent-color: #25D366;
    /* For call-btn, matching whatsapp-btn */
}

/* Existing styles remain unchanged up to RESPONSIVE STYLES */

/* ============= RESPONSIVE STYLES ============= */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image img {
        max-width: 90%;
        right: -50px;
        /* Reduce offset for larger tablets */
    }

    .plans-container {
        gap: 20px;
    }

    .plan-card {
        max-width: 320px;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-image img {
        max-width: 85%;
        right: -30px;
        height: auto;
        /* Remove fixed height for better scaling */
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .mentor-cards,
    .success-cards,
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 40px;
    }
}


@media (max-width: 768px) {

    .hero {
        margin-top: 50px;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        height: 250px;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
        right: 0;
        /* Prevent overflow */
        border-radius: var(--radius-md);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1;
        padding: 80px 20px 20px;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        font-size: 18px;
    }

    .header-actions {
        gap: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 15px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    .plans-container,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        max-width: 100%;
    }

    .wave-container {
        width: 100%;
    }

    .wave-shape {
        width: 100%;
        /* Prevent overflow */
        height: 80px;
    }

    .wave-shape svg {
        height: 80px;
    }



    .modal-content {
        width: 90%;
        padding: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-cta {
        gap: 8px;
    }

    .hero-stats .stat-value {
        font-size: 20px;
    }

    .hero-stats .stat-label {
        font-size: 13px;
    }

    .success-name {
        font-size: 18px;
    }

    .success-college,
    .success-score,
    .success-quote {
        font-size: 13px;
    }

    .plan-header h4 {
        font-size: 22px;
    }

    .plan-price {
        font-size: 30px;
    }

    .plan-price span {
        font-size: 14px;
    }

    .plan-features ul li {
        font-size: 14px;
    }

    .select-plan-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .features-section h2 {
        font-size: 26px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .about-stats .stat-number {
        font-size: 24px;
    }

    .about-stats .stat-text {
        font-size: 12px;
    }

    .about-lead {
        font-size: 16px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .mv-title {
        font-size: 16px;
    }

    .mv-desc {
        font-size: 14px;
    }

    .info-title {
        font-size: 24px;
    }

    .info-desc {
        font-size: 15px;
    }

    .contact-text h4 {
        font-size: 16px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 14px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-college {
        font-size: 13px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-menu li a {
        font-size: 14px;
    }

    .subscribe-form input {
        font-size: 13px;
    }

    .subscribe-form button {
        padding: 0 15px;
        font-size: 13px;
    }

    .subscribe-note {
        font-size: 12px;
    }

    .copyright,
    .footer-bottom-links a {
        font-size: 13px;
    }

    .contact-buttons {
        bottom: 80px;
    }

    .call-btn,
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .book-mentor-btn {
        bottom: 15px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 24px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-image img {
        border-radius: var(--radius-sm);
    }

    .wave-shape {
        height: 60px;
    }

    .wave-shape svg {
        height: 60px;
    }



    .plan-card {
        padding: 20px;
    }

    .plan-header {
        padding: 20px 15px;
    }

    .plan-features {
        padding: 20px 15px;
    }

    .features-section {
        padding: 40px 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .modal-content {
        padding: 15px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 20px;
    }

    .call-btn,
    .whatsapp-btn {
        max-width: 250px;
    }

    .book-mentor-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .wave-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }

    .wave-shape {
        position: relative;
        display: block;
        width: 200%;
        height: 100px;
        animation: wave 20s linear infinite;
    }

    .wave-shape:nth-child(2) {
        bottom: -25px;
        opacity: 0.5;
        animation: wave-reverse 18s linear infinite;
    }

    .wave-shape:nth-child(3) {
        bottom: -50px;
        opacity: 0.3;
        animation: wave 25s linear infinite;
    }

    .wave-shape svg {
        width: 100%;
        height: 100px;
    }

    .wave-shape .shape-fill {
        fill: #4a86e8;
    }

    .wave-shape:nth-child(1) .shape-fill {
        fill: #6a9eef;
    }

    .wave-shape:nth-child(2) .shape-fill {
        fill: #83acf0;
    }

    .wave-shape:nth-child(3) .shape-fill {
        fill: #94b9f0;
    }

    @keyframes wave {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes wave-reverse {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }
}

/* Mentor Section */

#mentors {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .mentors-section {
        padding: 80px 0;
        min-height: 100vh;
    }

    .mentor-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .mentor-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mentor-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    }

    .mentor-card-inner {
        padding: 30px;
    }

    .mentor-image {
        position: relative;
        text-align: center;
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
    }

    .mentor-image img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #667eea;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        transition: transform 0.3s ease;
    }

    .mentor-card:hover .mentor-image img {
        transform: scale(1.1);
    }

    .mentor-badge {
        position: absolute;
        top: -10px;
        right: 20px;
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        color: white;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    }

    .mentor-details {
        text-align: center;
    }

    .mentor-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .mentor-position {
        color: #667eea;
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .mentor-bio {
        color: #666;
        margin: 15px 0;
        line-height: 1.6;
        font-size: 0.95rem;
        display: none;
        /* Hidden on all devices */
    }

    .mentor-info {
        display: none;
        /* Hidden on all devices */
    }

    .mentor-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #ffa726;
        font-weight: 600;
    }

    .mentor-rating i {
        font-size: 14px;
    }

    .btn-outline-primary {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
    }

    .btn-outline-primary:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(67, 97, 238, 0.25);
    }



    .section-footer {
        text-align: center;
    }

    .hidden-mentors {
        display: none;
    }

    .show-all .hidden-mentors {
        display: block;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mentor-card.new-mentor {
        animation: fadeInUp 0.6s ease forwards;
    }

    /* ========================================
           MOBILE VIEW SPECIFIC STYLING
        ======================================== */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .section-desc {
            font-size: 1rem;
            padding: 0 10px;
        }

        /* Mobile Mentor Cards Layout - 2 cards per row */
        .mentor-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        /* Show first 4 mentors (2 rows x 2 cards) by default on mobile */
        .mentor-card:nth-child(n+9) {
            display: none;
        }

        .show-all .mentor-card:nth-child(n+9) {
            display: block;
        }

        /* Mobile Card Styling */
        .mentor-card {
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .mentor-card-inner {
            padding: 15px;
        }

        /* Mobile Image Styling */
        .mentor-image img {
            width: 80px;
            height: 80px;
            border-width: 3px;
        }

        .mentor-badge {
            font-size: 10px;
            padding: 4px 8px;
            top: -8px;
            right: 5px;
            border-radius: 10px;
        }

        /* Mobile Text Styling */
        .mentor-name {
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .mentor-position {
            font-size: 0.85rem;
            margin-bottom: 3px;
            font-weight: 500;
        }

        /* Mobile Button Styling */
        .btn-outline-primary {
            padding: 12px 25px;
            font-size: 14px;
            margin-top: 10px;
        }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }

        .mentor-cards {
            gap: 12px;
        }

        .mentor-card-inner {
            padding: 12px;
        }

        .mentor-image img {
            width: 70px;
            height: 70px;
        }

        .mentor-name {
            font-size: 1rem;
        }

        .mentor-position {
            font-size: 0.8rem;
        }

        .mentor-badge {
            font-size: 9px;
            padding: 3px 6px;
        }
    }
}



/* ---------------------------------
         Mentor form
----------------------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: opacity 0.3s;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.dropdown-field {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border-radius: 12px;
    border: 2px solid #e3ecff;
    border-left: 5px solid #4361ee;
    box-shadow: 0 2px 10px rgba(67, 97, 238, 0.08);
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease-out;
}

.dropdown-field:hover {
    border-color: #4361ee;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.15);
    transform: translateY(-1px);
}

.dropdown-field label {
    color: #4361ee;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.dropdown-field label::before {
    content: "📅";
    margin-right: 8px;
    font-size: 16px;
}

.dropdown-field select {
    background: white;
    border: 2px solid #e3ecff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.dropdown-field select:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #fefeff;
}

.dropdown-field select:hover {
    border-color: #4361ee;
    background-color: #fefeff;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn {
    background: linear-gradient(135deg, #4361ee 0%, #3730a3 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.6);
}

.required {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }
}

.book-mentor-btn,
.submit-btn {
    border-radius: 35px;
}



/*---------------------------------------
   Mobile view design of home section 
   -------------------------------------*/
/* Mobile-first approach - Base styles for mobile */
.hero {
    padding: 20px 0 60px;

    position: relative;
    overflow: hidden;
}


.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    min-height: 80vh;
    justify-content: center;
}

.hero-text {
    order: 1;
    width: 100%;
    max-width: 400px;
    flex: 1;
}

.hero-title {
    font-size: 24px;
    font-weight: 700;

    margin: 0 0 12px 0;
    line-height: 1.2;
}

.hero-title span {
    /* color: #FFD700; */
    display: block;
    margin-top: 3px;
}

.hero-description {
    font-size: 14px;
    /* color: rgba(255, 255, 255, 0.9); */
    line-height: 1.5;
    margin: 0 0 20px 0;
    padding: 0;
}


.hero-image {
    order: 1;
    width: 100%;
    /* max-width: 150px; */
    position: relative;
    margin: 0;
    flex: 0 0 150px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* .image-shape {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    z-index: -1;
} */

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-shape .shape-fill {
    fill: #FFFFFF;
}

/* Tablet styles */
@media (min-width: 768px) {
    .hero {
        padding: 40px 0 80px;
    }

    .container {
        max-width: 750px;
        padding: 0 20px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        max-width: 400px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 16px;
        width: auto;
        min-width: 180px;
    }

    .hero-image {
        max-width: 400px;
    }

    .wave-shape svg {
        height: 80px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .hero {
        padding: 60px 0 100px;
    }

    .container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        gap: 60px;
        align-items: center;
    }

    .hero-text {
        order: 0;
        flex: 1;
        max-width: none;
    }

    .hero-image {
        order: 2;
        flex: 1;
        max-width: 500px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-title span {
        display: inline;
        margin-top: 0;
    }

    .hero-description {
        font-size: 20px;
        text-align: left;
        margin: 0 0 35px 0;
        padding: 0;
        max-width: 600px;
    }

    .hero-cta {
        justify-content: flex-start;
        margin: 0;
        max-width: none;
    }

    .btn {
        padding: 18px 36px;
        font-size: 18px;
        min-width: 200px;
    }

    .wave-shape svg {
        height: 120px;
    }
}

/* Large desktop styles */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 22px;
    }
}

/* Extra small mobile styles */
@media (max-width: 480px) {
    .hero {
        padding: 15px 0 50px;
    }

    .container {
        padding: 0 10px;
    }

    .hero-content {
        gap: 25px;
        min-height: 75vh;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 5px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-image {
        max-width: 250px;
    }

    .wave-shape svg {
        height: 40px;
    }
}




/* Select plan */
/* Modal container */
.modal1 {
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal box */
.modal-content1 {
    background-color: #fff;
    margin: auto;
    border-radius: 12px;
    width: 95%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
}

/* Header */
.modal-content1 h3 {
    margin: 0;
    padding: 20px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    color: white;
    font-size: 20px;
}


#planFormModal {

    /* Modal Header */
    .modal-header {
        position: relative;
        background: linear-gradient(90deg, #3b82f6, #6366f1);
        color: white;
        padding: 20px 20px 20px 24px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    /* Close button */
    .close {
        position: relative;
        top: 10px;
        right: 25px;
        color: white;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
    }

    /* Form */
    form {
        padding: 20px;
    }

    /* Labels */
    form label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        margin-top: 15px;
    }

    /* Inputs, selects, textarea */
    form input,
    form select,
    form textarea {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 15px;
        outline: none;
        transition: border-color 0.2s;
    }

    form input:focus,
    form select:focus,
    form textarea:focus {
        border-color: #6366f1;
    }

    /* Submit Button */
    .submit-btn {
        margin-top: 20px;
        background: linear-gradient(90deg, #3b82f6, #6366f1);
        color: white;
        padding: 12px;
        font-size: 16px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
        transition: background 0.3s ease;
    }

    .submit-btn:hover {
        background: linear-gradient(90deg, #2563eb, #4f46e5);
    }



}