/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #131313 0%, #71736f 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Floating Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    color: #86c540;
}

.floating-icon.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon.icon-2 { top: 20%; right: 15%; animation-delay: 1s; }
.floating-icon.icon-3 { top: 30%; left: 20%; animation-delay: 2s; }
.floating-icon.icon-4 { top: 40%; right: 25%; animation-delay: 3s; }
.floating-icon.icon-5 { top: 50%; left: 15%; animation-delay: 4s; }
.floating-icon.icon-6 { top: 60%; right: 20%; animation-delay: 5s; }
.floating-icon.icon-7 { top: 70%; left: 25%; animation-delay: 0.5s; }
.floating-icon.icon-8 { top: 80%; right: 10%; animation-delay: 1.5s; }
.floating-icon.icon-9 { top: 15%; left: 50%; animation-delay: 2.5s; }
.floating-icon.icon-10 { top: 35%; right: 50%; animation-delay: 3.5s; }
.floating-icon.icon-11 { top: 55%; left: 60%; animation-delay: 4.5s; }
.floating-icon.icon-12 { top: 75%; right: 60%; animation-delay: 5.5s; }
.floating-icon.icon-13 { top: 25%; left: 80%; animation-delay: 1.2s; }
.floating-icon.icon-14 { top: 45%; right: 80%; animation-delay: 2.2s; }
.floating-icon.icon-15 { top: 65%; left: 70%; animation-delay: 3.2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Professional Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    /* width: 100px;
    height: 60px; */
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #86c540;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #86c540, #6e9443);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    overflow: hidden;
    padding:10px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    /* max-width: 1200px; */
     margin: 0 auto; 
    padding: 0 2rem;
    /*margin-top: 100px;*/
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #86c540, #6e9443);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.typewriter {
    border-right: 3px solid #86c540;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: #86c540; }
    51%, 100% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    /* display: flex; */
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #86c540;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: cardFloat 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: -10%;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #86c540 0%, #6e9443 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: white;
    color: #86c540;
    border: 2px solid #86c540;
}

.btn-secondary:hover {
    background: #86c540;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-glow {
    left: 100%;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.title-accent {
    color: #64748b;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Showcase */
.services-showcase {
    padding: 25px 0;
    background: white;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #86c540, #6e9443, #f093fb);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-emoji {
    font-size: 2rem;
}

.icon-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #a5b4fc;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #86c540;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #6e9443;
    gap: 1rem;
}

.link-arrow {
    transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
    transform: translateX(5px);
}

/* K12 Learning Features */
.features-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #a7f3d0;
}

/* Subjects Section */
.subjects-section {
    padding: 25px 0;
    background: white;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.subject-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.subject-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.math-card::before { background: linear-gradient(90deg, #f59e0b, #d97706); }
.science-card::before { background: linear-gradient(90deg, #10b981, #059669); }
.english-card::before { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.social-card::before { background: linear-gradient(90deg, #8b5cf6, #7c3aed); }
.cs-card::before { background: linear-gradient(90deg, #ef4444, #dc2626); }
.languages-card::before { background: linear-gradient(90deg, #06b6d4, #0891b2); }

.subject-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.subject-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subject-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.subject-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.subject-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.topic-tag {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #cbd5e1;
}

/* Learning Path */
.learning-path-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.learning-path {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.path-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 200px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.path-connector {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #86c540, #6e9443);
    margin: 0 1rem;
}

/* Career Hub Sectors */
.sectors-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sector-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.tech-sector::before { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.health-sector::before { background: linear-gradient(90deg, #10b981, #059669); }
.business-sector::before{ background: linear-gradient(90deg, #e6ff03, #d4ff00); }
.engineering-sector::before { background: linear-gradient(90deg, #f59e0b, #d97706); }

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(102, 126, 234, 0.15);
}

.sector-content {
    position: relative;
    z-index: 2;
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.sector-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sector-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sector-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.role-tag {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #a5b4fc;
}

.sector-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

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

.sector-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #86c540;
    display: block;
}

.sector-stats .stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* Career Services */
.career-services-section {
    padding: 25px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Opportunities */
.opportunities-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.opportunity-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.opportunity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #86c540, #6e9443);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.company-details h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.company-location {
    color: #64748b;
    font-size: 0.9rem;
}

.job-type {
    background: linear-gradient(135d, #ecfdf5, #d1fae5);
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-title {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.job-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.job-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.req-tag {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.salary-range {
    font-weight: 700;
    color: #86c540;
    font-size: 1.1rem;
}

.apply-btn {
    background: linear-gradient(135deg, #86c540, #6e9443);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.opportunities-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Study Abroad Partners */
.partners-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.ifly-card::before { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.settle-card::before { background: linear-gradient(90deg, #10b981, #059669); }

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(102, 126, 234, 0.15);
}

.partner-logo {
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-icon {
    font-size: 2.5rem;
}

.partner-logo h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0;
}

.partner-description {
    margin-bottom: 2rem;
}

.partner-description p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

.partner-specialties {
    margin-bottom: 2rem;
}

.specialty-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.specialty-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.specialty-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.specialty-content p {
    color: #64748b;
    line-height: 1.6;
}

.partner-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
}

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

.partner-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #86c540;
    display: block;
}

.partner-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #86c540, #6e9443);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.partner-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Services Section for Study Abroad */
.services-section {
    padding: 25px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.service-item .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Destinations */
.destinations-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .dest-img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 10px;
}

.destination-flag {
    font-size: 1.5rem;
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.destination-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #a7f3d0;
}

/* Success Journey Timeline */
.success-journey-section {
    padding: 25px 0;
    background: white;
}

.journey-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 200px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.step-marker {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.timeline-step h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-step p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Page Specific Styles */
.founder-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.founder-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.founder-visual {
    position: relative;
}

.founder-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.founder-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.achievement-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #86c540;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-achievements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.achievement-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: cardFloat 6s ease-in-out infinite;
}

.achievement-card.card-1 {
    top: 2%;
    left: 0%;
    animation-delay: 0s;
}

.achievement-card.card-2 {
    top: 60%;
    right: 0%;
    animation-delay: 2s;
}

.achievement-card.card-3 {
    bottom: 10%;
    left: 0%;
    animation-delay: 4s;
}

.founder-content {
    padding: 2rem;
}

.founder-intro {
    margin-bottom: 2rem;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.founder-titles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-badge {
    background: linear-gradient(135deg, #86c540, #6e9443);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.founder-story {
    margin-bottom: 2rem;
}

.story-highlight {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #86c540;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.story-highlight h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.story-highlight p {
    color: #64748b;
    line-height: 1.6;
}

.founder-expertise {
    margin-bottom: 2rem;
}

.founder-expertise h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.expertise-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.expertise-icon {
    font-size: 1.2rem;
}

.founder-vision {
    margin-top: 2rem;
}

.vision-card {
    background: linear-gradient(135deg, #86c540, #6e9443);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.vision-card h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vision-card p {
    position: relative;
    z-index: 2;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.vision-signature {
    position: relative;
    z-index: 2;
    font-style: italic;
    text-align: right;
    opacity: 0.9;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 50px 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #86c540, #6e9443, #f093fb);
}

.mission-card .card-icon,
.vision-card .card-icon {
    position: relative;
    margin-bottom: 2rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Story Timeline */
.story-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.story-timeline {
    position: relative;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #86c540, #6e9443, #f093fb);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 2;
}

.timeline-year {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 45%;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 50px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Impact Stats */
.impact-section {
    padding: 50px 0;
    /* background: linear-gradient(135deg, #86c540 0%, #6e9443 100%); */
    color: white;
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.impact-stat .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Success Stories */
.success-stories {
    padding: 25px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #86c540;
}

.author-info h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Career Success Stories */
.career-success-section {
    padding: 25px 0;
    background: white;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-story {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(102, 126, 234, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #86c540;
}

.story-info h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.story-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.story-quote {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.1rem;
}

.story-transformation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 15px;
}

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

.transform-label {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.25rem;
}

.transform-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1rem;
}

.transformation-arrow {
    font-size: 1.5rem;
    color: #86c540;
    font-weight: bold;
}

/* Additional Services Section */
.additional-services-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.additional-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.additional-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.additional-service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.highlight-tag {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #a7f3d0;
}

/* CTA Section */
.cta-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #86c540 0%, #6e9443 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form Styles */
.contact-main-section {
    padding: 25px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #86c540;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #64748b;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #86c540;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.quick-actions-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-info-card h3,
.quick-actions-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #86c540, #6e9443);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.method-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.social-connect {
    margin-top: 2rem;
}

.social-connect h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 30px;
    height: 30px;
    /* background: rgba(102, 126, 234, 0.2); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #86c540;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.2rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.quick-action:hover {
    background: #86c540;
    color: white;
    transform: translateX(5px);
}

.action-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.action-content h4 {
    color: inherit;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.action-content p {
    color: inherit;
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #86c540;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    /* background: #2c3e50; */
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    /* display: flex; */
    align-items: center;
    gap: 0.75rem;
    /* margin-bottom: 1.5rem; */
}

.footer-logo-img {
    width: 100%;
    height: 60%;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact p {
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact strong {
    color: rgb(0, 0, 0);
}

.footer-section h4 {
    color: rgb(0, 0, 0);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #86c540;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.footer-bottom a {
    color: #86c540;
    text-decoration: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 1.5rem;
    color: white;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.7;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
                margin-top: 20px;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid,
    .features-grid,
    .subjects-grid,
    .sectors-grid,
    .opportunities-grid,
    .partners-showcase,
    .destinations-grid,
    .additional-services-grid,
    .stories-grid,
    .success-stories-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .founder-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-content {
        width: 90% !important;
        margin: 2rem auto !important;
    }

    .timeline-marker {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        margin-bottom: 1rem;
    }

    .story-timeline::before {
        display: none;
    }

    .learning-path {
        flex-direction: column;
    }

    .path-connector {
        width: 2px;
        height: 50px;
        margin: 1rem 0;
    }

    .journey-timeline {
        flex-direction: column;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-card,
    .achievement-card {
        display: none;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .partner-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .sector-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .story-transformation {
        flex-direction: column;
        gap: 1rem;
    }

    .transformation-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .feature-card,
    .subject-card,
    .sector-card,
    .opportunity-card,
    .partner-card,
    .destination-card,
    .additional-service-card,
    .story-card,
    .success-story,
    .value-card {
        padding: 1.5rem;
    }

    .contact-form-container,
    .contact-info-card,
    .quick-actions-card {
        padding: 2rem;
    }

    .founder-content {
        padding: 1rem;
    }

    .founder-name {
        font-size: 2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .floating-elements,
    .whatsapp-float,
    .navbar {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero,
    .page-hero {
        background: white;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .feature-card,
    .subject-card,
    .sector-card,
    .opportunity-card,
    .partner-card,
    .destination-card,
    .additional-service-card,
    .story-card,
    .success-story,
    .value-card {
        border: 2px solid #2c3e50;
    }
    
    .btn-primary {
        border: 2px solid #2c3e50;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid #86c540;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #86c540;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.social-links {
  display: flex;
  gap: 0px;
  margin-top: 1rem;
}

.social-link i {
  font-size: 18px;
  /* color: #fff; or your preferred color */
  transition: color 0.3s ease;
}

.social-link:hover i {
  color: #86BD44; /* change color on hover */
}
.footer {
    /* background-color: #111; */
    color: #fff;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-logo-img {
    max-width: 175px;
    height: auto;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #86BD44;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #000000;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #000000;
}

.footer-bottom a {
    color: #86BD44;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
.whatsapp-icon-img {
    width: 48px;
    height: 48px;
}
/* ✅ Clean and organized floating cards */
.floating-cards {
    position: absolute;
    top: 0%;
    left: 39%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
    pointer-events: none; /* optional if they shouldn't be clickable */
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
    width: fit-content;
    max-width: 90vw;
}

/* Optional: animation */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card.card-1 {
    animation: cardFloat 6s ease-in-out infinite;
}

.floating-card.card-2 {
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: 3s;
}
@media (max-width: 768px) {
    .floating-cards {
        flex-direction: row;
        top: auto;
        bottom: 10%;
        transform: translateX(-50%);
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-card {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}
.navbar {
  position: relative; /* or fixed, if sticky */
  z-index: 10;
}

.success-stories {
  padding: 60px 20px;
  background-color: #f9fbfc;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(45deg, #7f5af0, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-quote {
  font-style: italic;
  font-size: 15px;
  color: #333;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.swiper-pagination-bullet {
  background-color: #555 !important;
  margin-top:20px !important;
}

.journey-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
  margin-top: 30px;
  overflow: hidden;
}

.journey-slider {
  overflow: hidden;
  width: 100%;
}

.journey-track {
  display: flex;
  transition: transform 0.4s ease;
}

.timeline-step {
  flex: 0 0 25%;
  padding: 1rem;
  margin: 0.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-height: 200px;
}

.step-marker {
  font-size: 24px;
  margin-bottom: 10px;
}

.step-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 14px;
  color: #666;
}

/* Nav Buttons */
.nav-btn {
  background: #333;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 6px;
}

.nav-btn:hover {
  background-color: #000;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .timeline-step {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 600px) {
  .timeline-step {
    flex: 0 0 100%;
  }
}

.social-link {
    text-decoration: none !important;
}

.social-link:hover {
    text-decoration: none !important;
}

.social-link:hover .social-icon {
    color: inherit !important;
}

/* Maintain specific colors on hover */
.social-link:hover .social-icon i.fa-facebook-f {
    color: #1877f2 !important;
}

.social-link:hover .social-icon i.fa-instagram {
    color: #e4405f !important;
}

.social-link:hover .social-icon i.fa-linkedin-in {
    color: #0077b5 !important;
}

.social-link:hover .social-icon i.fa-telegram-plane {
    color: #0088cc !important;
}

/* For X (Twitter) text */
.social-link:hover .social-icon:has(no i) {
    color: black !important;
}
