/* ===== HEADER CSS ===== */

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    padding: 3px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    border-radius: 0px 0px 50px 50px;
    border-bottom: 4px solid #fa9805;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

/* Updated Active Link Styling */
.nav-links li a {
    text-decoration: none;
    color: #001a33;
    font-weight: 600;
    margin-right: 12px;
    font-size: 15px;
    padding: 4px 0;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.nav-links li a.active {
    color: #fa9805;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fa9805;
    animation: underline 0.3s ease-out;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fa9805;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive Auth Buttons Container */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Desktop Auth Buttons */
.desktop-auth {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

/* Mobile Auth Buttons */
.mobile-auth {
    display: none;
}

/* Responsive Button Styles */
.login-btn {
    background-color: #002936;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.login-btn.register {
    background-color: #fa9805;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color:white;
}

.login-btn.register:hover {
    background-color: #fa9805;
}

/* Mobile Menu Auth Buttons */
.mobile-auth-buttons {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-auth-btn {
    background-color: #001a33;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

.mobile-auth-btn.register {
    background-color: #3498db;
}

.mobile-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger div {
    width: 27px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    padding-top: 120px !important;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 90px 25px 30px;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

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

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin-bottom: 20px;
}

.mobile-links li a {
    text-decoration: none;
    color: #34495e;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.mobile-links li a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    transform: translateX(5px);
}

/* Hamburger Animation */
.hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Scrolled Header */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Mobile active link */
.mobile-links li a.active {
    color: #fa9805;
    font-weight: 600;
    background: rgba(13, 95, 249, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    display: block;
}

/* ===== DROPDOWN SUBMENU STYLES ===== */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(13, 95, 249, 0.15);
    min-width: 280px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, top 0.25s ease;
    z-index: 9999;
    border-top: 3px solid #fa9805;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fa9805;
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu-custom li {
    margin: 0;
    padding: 0;
}

.dropdown-menu-custom li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu-custom li a i {
    font-size: 18px;
    color: #fa9805;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.dropdown-menu-custom li a:hover {
    background: #f0f7ff;
    color: #fa9805 !important;
    padding-left: 26px;
}

.dropdown-menu-custom li a:hover i {
    color: #fa9805;
}

.dropdown-menu-custom li:not(:last-child) a {
    border-bottom: 1px solid #f0f0f0;
}

/* ===== MOBILE DROPDOWN STYLES ===== */
.mobile-has-dropdown .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-has-dropdown.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f0f7ff;
    border-radius: 8px;
}

.mobile-has-dropdown.open .mobile-dropdown-list {
    max-height: 860px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.mobile-dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    color: #333 !important;
    border-bottom: 1px solid #e0ecff;
    text-decoration: none;
}

.mobile-dropdown-list li a i {
    font-size: 17px;
    color: #fa9805;
}

.mobile-dropdown-list li:last-child a {
    border-bottom: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1228px) {
    .login-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (min-width: 1025px) {
    .mobile-nav,
    .mobile-overlay {
        display: none !important;
    }
}

@media (min-width: 1024px) and (max-width: 1136px) {
    .nav-links li a {
        margin-right: 0 !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .nav-links li a {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    header {
        background-color: #ffffff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
        padding: 3px 25px;
    }
    .header-container {
        justify-content: space-between !important;
    }
    .hamburger {
        display: block;
    }
    .desktop-auth {
        display: none;
    }
    .mobile-auth {
        display: block;
    }
    .mobile-auth-buttons {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-auth-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 1321px) and (min-width: 1199px) {
    .nav-links li a {
        margin-right: 0px;
        font-size: 14px;
    }
}

/* ===== SECTION PADDING FIX - LEFT & RIGHT ===== */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4e 100%);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

/* Why Choose Section */
.why-choose-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

/* Our Story Section */
.our-story-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

/* FAQ Section */
.faq-section {
    padding: 40px 60px;
}

/* Container Fluid Override for consistent padding */
.container-fluid {
    max-width: 100%;
    padding: 0 !important;
    margin: 0 auto;
}

/* Hero Row */
.hero-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1.2;
    padding: 20px 0;
}

.hero-content-inner {
    max-width: 100%;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 28px !important;
    font-weight: 700;
    color: #fa9805;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-align: justify !important;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: #fa9805;
    color: #ffff;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    padding: 80px 0;
}

.hero-image-inner {
    width: 100%;
    height: auto;
}

.hero-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .hero-section {
        padding: 60px 30px;
    }
    
    .why-choose-section {
        padding: 60px 30px;
    }
    
    .our-story-section {
        padding: 60px 30px;
    }
    
    .faq-section {
        padding: 60px 30px;
    }
    
    .hero-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        order: 2;
        padding: 0;
    }
    
    .hero-image {
        order: 1;
        padding: 0;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 24px !important;
    }
    
    .hero-image-inner img {
        display: none;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .why-choose-section {
        padding: 50px 20px;
    }
    
    .our-story-section {
        padding: 50px 20px;
    }
    
    .faq-section {
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px !important;
    }
    
    .hero-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
    }
    
    .hero-image-inner img {
        display: none;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 100px 15px;
    }
    
    .why-choose-section {
        padding: 40px 15px;
    }
    
    .our-story-section {
        padding: 40px 15px;
    }
    
    .faq-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
    }
    
    .hero-text {
        font-size: 14px;
    }
}

/* Why Choose Section Inner Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    background: #f8f9fa;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
}

.stat-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Tablet Devices - Why Choose */
@media screen and (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-icon {
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 16px;
    }
}

/* Mobile Devices - Why Choose */
@media screen and (max-width: 768px) {
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-item {
        padding: 18px 10px;
    }
    
    .stat-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 15px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Small Mobile Devices - Why Choose */
@media screen and (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 15px 8px;
        border-radius: 8px;
    }
    
    .stat-icon {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .stat-number {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .stat-item {
        padding: 12px 6px;
    }
    
    .stat-icon {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 13px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Our Story Section Styles */
.story-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.story-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 2px;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.story-content {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #fa9805;
}

.story-text {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: justify;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices - Story */
@media screen and (max-width: 992px) {
    .story-title {
        font-size: 30px;
    }
    
    .story-content {
        padding: 40px 35px;
    }
    
    .story-text {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* Mobile Devices - Story */
@media screen and (max-width: 768px) {
    .story-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .story-title::after {
        width: 50px;
        bottom: -8px;
    }
    
    .story-content {
        padding: 30px 25px;
        border-left-width: 4px;
    }
    
    .story-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices - Story */
@media screen and (max-width: 480px) {
    .story-title {
        font-size: 22px;
    }
    
    .story-title::after {
        width: 40px;
        height: 3px;
        bottom: -6px;
    }
    
    .story-content {
        padding: 20px 18px;
        border-left-width: 3px;
        border-radius: 12px;
    }
    
    .story-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
}

/* Extra Small Devices - Story */
@media screen and (max-width: 360px) {
    .story-title {
        font-size: 20px;
    }
    
    .story-content {
        padding: 16px 14px;
    }
    
    .story-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Our Story Section - F8FAFC Background */
.our-story-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.story-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.story-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.story-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 2px;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.story-content {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #fa9805;
}

.story-text {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: justify;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .our-story-section {
        padding: 60px 30px;
    }
    
    .story-title {
        font-size: 30px;
    }
    
    .story-content {
        padding: 40px 35px;
    }
    
    .story-text {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .our-story-section {
        padding: 50px 20px;
    }
    
    .story-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .story-title::after {
        width: 50px;
        bottom: -8px;
    }
    
    .story-content {
        padding: 30px 25px;
        border-left-width: 4px;
    }
    
    .story-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .our-story-section {
        padding: 40px 15px;
    }
    
    .story-title {
        font-size: 22px;
    }
    
    .story-title::after {
        width: 40px;
        height: 3px;
        bottom: -6px;
    }
    
    .story-content {
        padding: 20px 18px;
        border-left-width: 3px;
        border-radius: 12px;
    }
    
    .story-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .story-title {
        font-size: 20px;
    }
    
    .story-content {
        padding: 16px 14px;
    }
    
    .story-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Teaching Approach Section - White Background */
.teaching-approach-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.approach-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    margin-bottom: 20px;
}

.approach-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.approach-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.approach-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #4a5568;
    margin-top: 20px;
    margin-bottom: 0;
}

.approach-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 10px;
}

.approach-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 18px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
    position: relative;
}

.approach-step:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
    background: #fffbf5;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: #fa9805;
    background: rgba(250, 152, 5, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.step-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.step-text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
    text-align: left;
}

.step-arrow {
    font-size: 24px;
    color: #fa9805;
    font-weight: 700;
    flex-shrink: 0;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .teaching-approach-section {
        padding: 60px 30px;
    }
    
    .approach-title {
        font-size: 32px;
    }
    
    .approach-subtitle {
        font-size: 22px;
    }
    
    .approach-step {
        padding: 16px 25px;
        max-width: 450px;
    }
    
    .step-icon {
        font-size: 24px;
    }
    
    .step-text {
        font-size: 15px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .teaching-approach-section {
        padding: 50px 20px;
    }
    
    .approach-title {
        font-size: 28px;
    }
    
    .approach-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .approach-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .approach-step {
        padding: 14px 20px;
        max-width: 100%;
        gap: 15px;
    }
    
    .step-number {
        font-size: 12px;
        min-width: 35px;
        padding: 3px 8px;
    }
    
    .step-icon {
        font-size: 22px;
    }
    
    .step-text {
        font-size: 14px;
    }
    
    .step-arrow {
        font-size: 20px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .teaching-approach-section {
        padding: 40px 15px;
    }
    
    .approach-title {
        font-size: 24px;
    }
    
    .approach-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .approach-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .approach-header {
        margin-bottom: 35px;
    }
    
    .approach-step {
        padding: 12px 15px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .step-number {
        font-size: 11px;
        min-width: 30px;
        padding: 2px 6px;
    }
    
    .step-icon {
        font-size: 20px;
    }
    
    .step-text {
        font-size: 13px;
    }
    
    .step-arrow {
        font-size: 18px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .approach-step {
        padding: 10px 12px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-text {
        font-size: 12px;
        text-align: center;
        width: 100%;
        order: 3;
    }
    
    .step-number {
        font-size: 10px;
        min-width: 28px;
    }
    
    .step-icon {
        font-size: 18px;
    }
    
    .step-arrow {
        font-size: 16px;
        order: 4;
        width: 100%;
        text-align: center;
    }
}

/* Why Choose Well Spring Section - dae2eb Background */
.why-wellspring-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.wellspring-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.wellspring-header {
    text-align: center;
    margin-bottom: 30px;
}

.wellspring-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.wellspring-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.wellspring-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
}

.wellspring-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 40px;
}

.wellspring-intro strong {
    color: #0a0e27;
}

.wellspring-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.wellspring-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.wellspring-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
}

.wellspring-card-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 15px;
}

.wellspring-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 12px;
}

.wellspring-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .why-wellspring-section {
        padding: 60px 30px;
    }
    
    .wellspring-title {
        font-size: 32px;
    }
    
    .wellspring-subtitle {
        font-size: 22px;
    }
    
    .wellspring-intro {
        font-size: 16px;
        margin: 15px auto 30px;
    }
    
    .wellspring-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wellspring-card {
        padding: 25px 20px;
    }
    
    .wellspring-card-icon {
        font-size: 36px;
    }
    
    .wellspring-card-title {
        font-size: 17px;
    }
    
    .wellspring-card-text {
        font-size: 14px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .why-wellspring-section {
        padding: 50px 20px;
    }
    
    .wellspring-title {
        font-size: 28px;
    }
    
    .wellspring-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .wellspring-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .wellspring-intro {
        font-size: 15px;
        line-height: 1.8;
        margin: 15px auto 25px;
    }
    
    .wellspring-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .wellspring-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .wellspring-card-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .wellspring-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .wellspring-card-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .why-wellspring-section {
        padding: 40px 15px;
    }
    
    .wellspring-title {
        font-size: 24px;
    }
    
    .wellspring-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .wellspring-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .wellspring-header {
        margin-bottom: 20px;
    }
    
    .wellspring-intro {
        font-size: 14px;
        line-height: 1.7;
        margin: 10px auto 20px;
    }
    
    .wellspring-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wellspring-card {
        padding: 18px 15px;
        border-radius: 10px;
    }
    
    .wellspring-card-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .wellspring-card-title {
        font-size: 15px;
    }
    
    .wellspring-card-text {
        font-size: 13px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .wellspring-card {
        padding: 15px 12px;
    }
    
    .wellspring-card-icon {
        font-size: 24px;
    }
    
    .wellspring-card-title {
        font-size: 14px;
    }
    
    .wellspring-card-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Mentor Section - White Background */
.mentor-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.mentor-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.mentor-header {
    text-align: center;
    margin-bottom: 30px;
}

.mentor-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.mentor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.mentor-intro {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0 35px;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.mentor-item {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mentor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
    background: #fffbf5;
}

.mentor-icon {
    font-size: 40px;
    display: block;
}

.mentor-text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .mentor-section {
        padding: 60px 30px;
    }
    
    .mentor-title {
        font-size: 32px;
    }
    
    .mentor-intro {
        font-size: 18px;
        margin: 15px 0 30px;
    }
    
    .mentor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mentor-item {
        padding: 22px 18px;
    }
    
    .mentor-icon {
        font-size: 36px;
    }
    
    .mentor-text {
        font-size: 15px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .mentor-section {
        padding: 50px 20px;
    }
    
    .mentor-title {
        font-size: 28px;
    }
    
    .mentor-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .mentor-intro {
        font-size: 17px;
        margin: 15px 0 25px;
    }
    
    .mentor-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .mentor-item {
        padding: 18px 15px;
        border-radius: 10px;
        gap: 8px;
    }
    
    .mentor-icon {
        font-size: 32px;
    }
    
    .mentor-text {
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .mentor-section {
        padding: 40px 15px;
    }
    
    .mentor-title {
        font-size: 24px;
    }
    
    .mentor-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .mentor-intro {
        font-size: 16px;
        margin: 12px 0 20px;
    }
    
    .mentor-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 400px;
    }
    
    .mentor-item {
        padding: 15px 12px;
        border-radius: 8px;
        gap: 6px;
    }
    
    .mentor-icon {
        font-size: 28px;
    }
    
    .mentor-text {
        font-size: 13px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mentor-item {
        padding: 14px 12px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .mentor-icon {
        font-size: 24px;
    }
    
    .mentor-text {
        font-size: 14px;
    }
}
/* Software Training Programs Section - dae2eb Background */
.programs-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.programs-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.programs-header {
    text-align: center;
    margin-bottom: 25px;
}

.programs-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.programs-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.programs-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
}

.programs-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 30px;
}

.programs-intro strong {
    color: #0a0e27;
}

.programs-list-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 30px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.programs-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.programs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
}

.programs-card-icon {
    font-size: 38px;
    display: block;
    margin-bottom: 12px;
}

.programs-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 10px;
}

.programs-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Tablet Devices */
@media screen and (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media screen and (max-width: 992px) {
    .programs-section {
        padding: 60px 30px;
    }
    
    .programs-title {
        font-size: 32px;
    }
    
    .programs-subtitle {
        font-size: 22px;
    }
    
    .programs-intro {
        font-size: 16px;
        margin: 15px auto 25px;
    }
    
    .programs-list-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .programs-card {
        padding: 22px 18px;
    }
    
    .programs-card-icon {
        font-size: 34px;
    }
    
    .programs-card-title {
        font-size: 15px;
    }
    
    .programs-card-text {
        font-size: 13px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .programs-section {
        padding: 50px 20px;
    }
    
    .programs-title {
        font-size: 28px;
    }
    
    .programs-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .programs-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .programs-intro {
        font-size: 15px;
        line-height: 1.8;
        margin: 15px auto 20px;
    }
    
    .programs-list-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .programs-card {
        padding: 18px 15px;
        border-radius: 12px;
    }
    
    .programs-card-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .programs-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .programs-card-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .programs-section {
        padding: 40px 15px;
    }
    
    .programs-title {
        font-size: 24px;
    }
    
    .programs-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .programs-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .programs-header {
        margin-bottom: 18px;
    }
    
    .programs-intro {
        font-size: 14px;
        line-height: 1.7;
        margin: 10px auto 15px;
    }
    
    .programs-list-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .programs-card {
        padding: 15px 12px;
        border-radius: 10px;
    }
    
    .programs-card-icon {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    .programs-card-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .programs-card-text {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .programs-card {
        padding: 14px 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .programs-card-icon {
        font-size: 28px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .programs-card-title {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .programs-card-text {
        font-size: 12px;
    }
}
/* Internship Programs Section - White Background */
.internship-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.internship-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.internship-header {
    text-align: center;
    margin-bottom: 30px;
}

.internship-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.internship-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.internship-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
}

.internship-content-wrapper {
    max-width: 1000px;
    margin: 0 auto 20px;
}

.internship-text-content {
    background: #f8f9fa;
    text-align: justify;
    padding: 35px 45px;
    border-radius: 16px;
    border-left: 5px solid #fa9805;
}

.internship-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    margin-bottom: 15px;
}

.internship-text {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    margin: 0;
}

.internship-list-title {
    font-size: 26px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 40px 0 30px;
    position: relative;
}

.internship-list-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #fa9805;
    margin: 8px auto 0;
    border-radius: 2px;
}

.internship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.internship-item {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.internship-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
}

.internship-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(250, 152, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.internship-item:hover .internship-icon-wrapper {
    background: rgba(250, 152, 5, 0.2);
    transform: scale(1.05);
}

.internship-icon {
    font-size: 32px;
    display: block;
}

.internship-item-content {
    width: 100%;
}

.internship-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 8px;
}

.internship-item-text {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .internship-section {
        padding: 60px 30px;
    }
    
    .internship-title {
        font-size: 32px;
    }
    
    .internship-subtitle {
        font-size: 22px;
    }
    
    .internship-text-content {
        padding: 30px 35px;
    }
    
    .internship-intro {
        font-size: 16px;
    }
    
    .internship-text {
        font-size: 16px;
    }
    
    .internship-list-title {
        font-size: 24px;
        margin: 35px 0 25px;
    }
    
    .internship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .internship-item {
        padding: 22px 18px;
    }
    
    .internship-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .internship-icon {
        font-size: 28px;
    }
    
    .internship-item-title {
        font-size: 15px;
    }
    
    .internship-item-text {
        font-size: 13px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .internship-section {
        padding: 50px 20px;
    }
    
    .internship-title {
        font-size: 28px;
    }
    
    .internship-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .internship-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .internship-text-content {
        padding: 25px 25px;
        border-left-width: 4px;
    }
    
    .internship-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .internship-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .internship-list-title {
        font-size: 22px;
        margin: 30px 0 20px;
    }
    
    .internship-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .internship-item {
        padding: 18px 15px;
        border-radius: 12px;
    }
    
    .internship-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .internship-icon {
        font-size: 26px;
    }
    
    .internship-item-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .internship-item-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .internship-section {
        padding: 40px 15px;
    }
    
    .internship-title {
        font-size: 24px;
    }
    
    .internship-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .internship-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .internship-header {
        margin-bottom: 20px;
    }
    
    .internship-text-content {
        padding: 20px 18px;
        border-left-width: 3px;
        border-radius: 12px;
    }
    
    .internship-intro {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .internship-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .internship-list-title {
        font-size: 20px;
        margin: 25px 0 15px;
    }
    
    .internship-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .internship-item {
        padding: 15px 12px;
        border-radius: 10px;
    }
    
    .internship-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .internship-icon {
        font-size: 22px;
    }
    
    .internship-item-title {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .internship-item-text {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .internship-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .internship-item {
        padding: 14px 15px;
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .internship-icon-wrapper {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .internship-icon {
        font-size: 22px;
    }
    
    .internship-item-content {
        text-align: left;
    }
    
    .internship-item-title {
        font-size: 14px;
    }
    
    .internship-item-text {
        font-size: 12px;
    }
}
/* Career Preparation Section - dae2eb Background */
.career-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.career-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.career-header {
    text-align: center;
    margin-bottom: 30px;
}

.career-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.career-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.career-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
}

.career-content-wrapper {
    max-width: 1000px;
    margin: 0 auto 30px;
}

.career-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    text-align: center;
    margin-bottom: 15px;
}

.career-intro strong {
    color: #0a0e27;
}

.career-text {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    text-align: center;
    margin: 0;
}

.career-list-title {
    font-size: 26px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 30px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.career-item {
    background: #ffffff;
    padding: 22px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.career-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
}

.career-icon {
    font-size: 36px;
    display: block;
    background: rgba(250, 152, 5, 0.08);
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.career-item:hover .career-icon {
    background: rgba(250, 152, 5, 0.18);
    transform: scale(1.05);
}

.career-label {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

/* Process Section - White Background */
.process-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.process-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 30px;
}

.process-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.process-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
}

.process-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 40px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: 40px;
    width: 3px;
    background: #fa9805;
    opacity: 0.3;
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    background: #fa9805;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-step-content {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 12px;
    flex: 1;
    transition: all 0.3s ease;
    border-left: 4px solid #fa9805;
}

.process-step-content:hover {
    background: #fffbf5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.process-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 8px;
}

.process-step-text {
    font-size: 15px;
    text-align: justify;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.process-step-arrow {
    display: none;
}

/* Tablet Devices - Career */
@media screen and (max-width: 992px) {
    .career-section {
        padding: 60px 30px;
    }
    
    .career-title {
        font-size: 32px;
    }
    
    .career-subtitle {
        font-size: 22px;
    }
    
    .career-intro {
        font-size: 16px;
    }
    
    .career-text {
        font-size: 16px;
    }
    
    .career-list-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .career-item {
        padding: 20px 15px;
    }
    
    .career-icon {
        font-size: 32px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .career-label {
        font-size: 14px;
    }
}

/* Tablet Devices - Process */
@media screen and (max-width: 992px) {
    .process-section {
        padding: 60px 30px;
    }
    
    .process-title {
        font-size: 32px;
    }
    
    .process-subtitle {
        font-size: 22px;
    }
    
    .process-intro {
        font-size: 16px;
        margin: 15px auto 30px;
    }
    
    .process-step-content {
        padding: 18px 20px;
    }
    
    .process-step-title {
        font-size: 17px;
    }
    
    .process-step-text {
        font-size: 14px;
    }
}

/* Mobile Devices - Career */
@media screen and (max-width: 768px) {
    .career-section {
        padding: 50px 20px;
    }
    
    .career-title {
        font-size: 28px;
    }
    
    .career-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .career-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .career-content-wrapper {
        margin-bottom: 25px;
    }
    
    .career-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .career-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .career-list-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .career-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .career-item {
        padding: 18px 12px;
        border-radius: 10px;
        gap: 8px;
    }
    
    .career-icon {
        font-size: 28px;
        width: 55px;
        height: 55px;
        line-height: 55px;
    }
    
    .career-label {
        font-size: 14px;
    }
}

/* Mobile Devices - Process */
@media screen and (max-width: 768px) {
    .process-section {
        padding: 50px 20px;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .process-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .process-intro {
        font-size: 15px;
        line-height: 1.8;
        margin: 15px auto 25px;
    }
    
    .process-timeline::before {
        left: 20px;
        top: 50px;
    }
    
    .process-step {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .process-step-number {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 15px;
    }
    
    .process-step-content {
        padding: 16px 18px;
    }
    
    .process-step-title {
        font-size: 16px;
    }
    
    .process-step-text {
        font-size: 14px;
    }
}

/* Small Mobile Devices - Career */
@media screen and (max-width: 480px) {
    .career-section {
        padding: 40px 15px;
    }
    
    .career-title {
        font-size: 24px;
    }
    
    .career-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .career-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .career-header {
        margin-bottom: 20px;
    }
    
    .career-intro {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .career-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .career-list-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .career-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .career-item {
        padding: 14px 10px;
        border-radius: 8px;
        gap: 6px;
    }
    
    .career-icon {
        font-size: 24px;
        width: 48px;
        height: 48px;
        line-height: 48px;
    }
    
    .career-label {
        font-size: 13px;
    }
}

/* Small Mobile Devices - Process */
@media screen and (max-width: 480px) {
    .process-section {
        padding: 40px 15px;
    }
    
    .process-title {
        font-size: 24px;
    }
    
    .process-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .process-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .process-intro {
        font-size: 14px;
        line-height: 1.7;
        margin: 12px auto 20px;
    }
    
    .process-timeline::before {
        left: 16px;
        top: 40px;
    }
    
    .process-step {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .process-step-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 13px;
    }
    
    .process-step-content {
        padding: 14px 15px;
        border-left-width: 3px;
    }
    
    .process-step-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .process-step-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Extra Small Devices - Career */
@media screen and (max-width: 360px) {
    .career-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .career-item {
        padding: 12px 15px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .career-icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        flex-shrink: 0;
    }
    
    .career-label {
        font-size: 14px;
        text-align: left;
    }
}

/* Extra Small Devices - Process */
@media screen and (max-width: 360px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
    
    .process-step-content {
        width: 100%;
        text-align: center;
    }
    
    .process-step-title {
        font-size: 15px;
    }
    
    .process-step-text {
        font-size: 13px;
    }
}
/* Real Student Experiences Section - dae2eb Background */
.testimonials-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.testimonials-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 25px;
}

.testimonials-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
}

.testimonials-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #1f2937;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 40px;
}

.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.testimonial-video-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.testimonial-video-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #fa9805;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.testimonials-rating {
    text-align: center;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.rating-stars {
    font-size: 36px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
}

.rating-text {
    font-size: 22px;
    font-weight: 700;
    color: #0a0e27;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .testimonials-section {
        padding: 60px 30px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 22px;
    }
    
    .testimonials-intro {
        font-size: 16px;
        margin: 15px auto 30px;
    }
    
    .testimonials-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .rating-stars {
        font-size: 32px;
    }
    
    .rating-text {
        font-size: 20px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 50px 20px;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonials-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .testimonials-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .testimonials-intro {
        font-size: 15px;
        line-height: 1.8;
        margin: 15px auto 25px;
    }
    
    .testimonials-video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .testimonials-rating {
        padding: 20px 15px;
    }
    
    .rating-stars {
        font-size: 28px;
    }
    
    .rating-text {
        font-size: 18px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-title {
        font-size: 24px;
    }
    
    .testimonials-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .testimonials-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .testimonials-header {
        margin-bottom: 18px;
    }
    
    .testimonials-intro {
        font-size: 14px;
        line-height: 1.7;
        margin: 10px auto 20px;
    }
    
    .testimonials-video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 400px;
    }
    
    .testimonials-rating {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .rating-stars {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .rating-text {
        font-size: 16px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .testimonials-video-grid {
        gap: 15px;
    }
    
    .testimonials-rating {
        padding: 15px 10px;
    }
    
    .rating-stars {
        font-size: 20px;
    }
    
    .rating-text {
        font-size: 14px;
    }
}


/* Trusted by Students & Professionals Section - White Background */
.trusted-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.trusted-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

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

.trusted-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.trusted-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.trusted-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 0;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trusted-item {
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #fa9805;
    background: #fffbf5;
}

.trusted-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-image-wrapper img {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.trusted-item:hover .trusted-image-wrapper img {
    transform: scale(1.05);
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .trusted-section {
        padding: 60px 30px;
    }
    
    .trusted-title {
        font-size: 32px;
    }
    
    .trusted-subtitle {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .trusted-grid {
        gap: 25px;
    }
    
    .trusted-item {
        padding: 25px 18px;
    }
    
    .trusted-image-wrapper img {
        max-height: 70px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .trusted-section {
        padding: 50px 20px;
    }
    
    .trusted-title {
        font-size: 28px;
    }
    
    .trusted-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .trusted-subtitle {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .trusted-header {
        margin-bottom: 30px;
    }
    
    .trusted-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .trusted-item {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .trusted-image-wrapper img {
        max-height: 60px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .trusted-section {
        padding: 40px 15px;
    }
    
    .trusted-title {
        font-size: 24px;
    }
    
    .trusted-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .trusted-subtitle {
        font-size: 16px;
        margin-top: 10px;
    }
    
    .trusted-header {
        margin-bottom: 25px;
    }
    
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .trusted-item {
        padding: 18px 15px;
        border-radius: 10px;
    }
    
    .trusted-image-wrapper img {
        max-height: 70px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .trusted-title {
        font-size: 22px;
    }
    
    .trusted-subtitle {
        font-size: 14px;
    }
    
    .trusted-item {
        padding: 15px 12px;
    }
    
    .trusted-image-wrapper img {
        max-height: 60px;
    }
}
/* Best Training Institute Section - dae2eb Background with Image */
.about-institute-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.institute-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.institute-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.institute-content-left {
    flex: 1.2;
}

.institute-image-right {
    flex: 1;
}

.institute-header {
    margin-bottom: 25px;
}

.institute-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.institute-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.institute-content {
    max-width: 100%;
}

.institute-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 18px;
}

.institute-text:last-child {
    margin-bottom: 0;
}

.institute-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.institute-image-wrapper {
    width: 100%;
    height: auto;
}

.institute-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.institute-image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .about-institute-section {
        padding: 60px 30px;
    }
    
    .institute-wrapper {
        flex-direction: column;
        gap: 35px;
    }
    
    .institute-content-left {
        order: 2;
    }
    
    .institute-image-right {
        order: 1;
    }
    
    .institute-title {
        font-size: 32px;
    }
    
    .institute-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .institute-header {
        text-align: center;
    }
    
    .institute-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 16px;
    }
    
    .institute-image-wrapper img {
        max-width: 400px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .about-institute-section {
        padding: 50px 20px;
    }
    
    .institute-wrapper {
        gap: 30px;
    }
    
    .institute-title {
        font-size: 28px;
    }
    
    .institute-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .institute-header {
        margin-bottom: 20px;
    }
    
    .institute-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .institute-image-wrapper img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .about-institute-section {
        padding: 40px 15px;
    }
    
    .institute-wrapper {
        gap: 25px;
    }
    
    .institute-title {
        font-size: 24px;
    }
    
    .institute-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .institute-header {
        margin-bottom: 15px;
    }
    
    .institute-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .institute-image-wrapper img {
        border-radius: 10px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .institute-title {
        font-size: 22px;
    }
    
    .institute-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

/* FAQ Section - White Background with Smooth Animations */
.faq-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.faq-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

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

.faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fa9805;
}

.faq-item.active {
    border-color: #fa9805;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #0a0e27;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #fa9805;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #fa9805;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-style: normal;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                padding 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 25px 0 25px;
    transform: translateY(-10px);
    transition: transform 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
    padding: 0 25px 25px 25px;
    transform: translateY(0);
}

.faq-answer-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    animation: fadeInContent 0.5s ease;
}

.faq-answer-inner strong {
    color: #0a0e27;
    font-weight: 700;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-inner p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer-inner p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 15px;
        gap: 10px;
    }
    
    .faq-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-inner p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .faq-question {
        font-size: 13px;
        padding: 12px 12px;
    }
    
    .faq-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 12px 12px 12px;
    }
    
    .faq-answer-inner p {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* Take the First Step Section - f8f9fa Background */
.cta-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.cta-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.cta-wrapper:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: #fa9805;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #fa9805;
    border-radius: 20px 0 0 20px;
}

.cta-header {
    text-align: center;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #fa9805;
    margin-top: 12px;
    margin-bottom: 0;
}

.cta-content {
    max-width: 100%;
}

.cta-text {
    font-size: 17px;
    text-align: justify;
    line-height: 1.9;
    color: #1f2937;
    margin-bottom: 18px;
}

.cta-text:last-of-type {
    margin-bottom: 0;
}

.cta-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #0a0e27;
    margin-top: 5px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-btn-primary {
    background: #fa9805;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(250, 152, 5, 0.3);
}

.cta-btn-primary:hover {
    background: #e08900;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 152, 5, 0.4);
    color: #ffffff;
}

.cta-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.cta-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .cta-section {
        padding: 60px 30px;
    }
    
    .cta-wrapper {
        padding: 40px 40px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .cta-subtitle {
        font-size: 22px;
    }
    
    .cta-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 16px;
    }
    
    .cta-highlight {
        font-size: 17px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-wrapper {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-subtitle {
        font-size: 20px;
        margin-top: 10px;
    }
    
    .cta-header {
        margin-bottom: 25px;
    }
    
    .cta-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .cta-highlight {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .cta-wrapper::before {
        width: 4px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin-top: 8px;
    }
    
    .cta-header {
        margin-bottom: 20px;
    }
    
    .cta-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .cta-highlight {
        font-size: 15px;
    }
    
    .cta-buttons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 25px;
        font-size: 15px;
        max-width: 100%;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .cta-wrapper {
        padding: 20px 14px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .cta-highlight {
        font-size: 14px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 11px 20px;
        font-size: 14px;
    }
}
   .subscribe-whatsapp-section {
  padding: 60px 0;  
  background-color:#1a1f4e;
  color: #fff;
  
}

.subscribe-box,
.whatsapp-box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  height: 100%;
}

.subscribe-box h2,
.whatsapp-box h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.subscribe-box p,
.whatsapp-box p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.toast-error {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff4d4f;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.toast-error.show {
  opacity: 1;
  transform: translateY(0);
}
.subscribe-form input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.subscribe-form button {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: #fa9805;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.subscribe-form button:hover {
  background: #fa9805;
}

/* WhatsApp Button */
.whatsapp-join-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-join-btn:hover {
  background: #1ebe5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .subscribe-form {
    flex-direction: column;
  }
}

/* Footer */
 /* Custom styles using only the specified color scheme: #ffffff, #fa9805, #002935 */
        /* No font-family, no universal (*) tag selectors - fully responsive */
        
        /* ========== BEST FOOTER DESIGN ========== */
        .ws-footer {
            background: #1a1f4e;
            color: #ffffff;
            padding: 60px 0 20px;
            position: relative;
        }
        
        .ws-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #fa9805, #fa9805, #fa9805);
        }
        
        .ws-footer-logo {
            margin-bottom: 20px;
        }
          .ws-footer-logo img{
width: 100px;
height: 100px;

        }
        .ws-footer-logo-icon {
            font-size: 42px;
            color: #fa9805;
            display: inline-block;
        }
        
        .ws-footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-top: 8px;
            margin-bottom: 0;
        }
        
        .ws-footer-tagline {
            color: #fa9805;
            font-size: 0.85rem;
            margin-top: 5px;
            letter-spacing: 1px;
        }
        
        .ws-footer-about {
            color:#ffffff;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 0.9rem;
            text-align:justify;
        }
        
        .ws-footer-heading {
            color: #fa9805;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .ws-footer-heading:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #fa9805;
        }
        
        .ws-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .ws-footer-links li {
            margin-bottom: 12px;
        }
        
        .ws-footer-links li a {
            color:#ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.9rem;
        }
        
        .ws-footer-links li a:hover {
            color: #fa9805;
            transform: translateX(5px);
        }
        
        .ws-footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .ws-footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            color:#ffffff;
            font-size: 0.9rem;
        }
        
        .ws-footer-contact li i {
            width: 32px;
            height: 32px;
            background: rgba(255, 217, 102, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fa9805;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .ws-footer-contact li span {
            line-height: 1.4;
        }
        
        .ws-footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .ws-footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .ws-footer-social a:hover {
            background: #fa9805;
            color: #002935;
            transform: translateY(-3px);
        }
        
        .ws-footer-newsletter {
            margin-top: 20px;
        }
        
        .ws-footer-newsletter p {
            color:#ffffff;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }
        
        .ws-newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .ws-newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 50px;
            background: rgba(255,255,255,0.12);
            color: #ffffff;
            outline: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        .ws-newsletter-input:focus {
            background: rgba(255,255,255,0.2);
            box-shadow: 0 0 0 2px rgba(255, 217, 102, 0.3);
        }
        
        .ws-newsletter-input::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        .ws-newsletter-btn {
            background: #fa9805;
            color: #002935;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ws-newsletter-btn:hover {
            background: #ffffff;
            transform: scale(1.02);
        }
        
        .ws-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            padding-top: 25px;
            text-align: center;
        }
        
        .ws-footer-bottom p {
            color:#ffffff;
            font-size: 0.85rem;
            margin: 0;
        }
        
        .ws-footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        
        .ws-footer-bottom-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }
        
        .ws-footer-bottom-links a:hover {
            color: #fa9805;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .ws-footer {
                padding: 50px 0 20px;
            }
        }
        
        @media (max-width: 768px) {
            .ws-footer {
                padding: 40px 0 20px;
            }
            .ws-footer-heading {
                margin-top: 25px;
                margin-bottom: 20px;
            }
            .ws-footer-heading:first-of-type {
                margin-top: 0;
            }
            .ws-footer-bottom-links {
                gap: 15px;
            }
        }


/* floating icon */
         .floating-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            text-decoration: none;
            color: white;
            font-size: 24px;
            will-change: transform;
        }
        
        .scroll-top {
            background-color: #fa9805;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .call-btn {
            background-color: #fa9805;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            color:white;
        }
        
        .scroll-top {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 15px;
                right: 15px;
                gap: 10px;
            }
            .float-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .float-btn {
                transition: none;
            }
        }.whatsapp-btn {
  animation: pulse-green 1.8s infinite;
}

.call-btn {
  animation: pulse-blue 1.8s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(13,95,249,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(13,95,249,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,95,249,0); }
}

    /* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

/* Popup Container */
.popup-container {
    background: #ffffff;
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.popup-container::-webkit-scrollbar {
    width: 6px;
}

.popup-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
}

.popup-close:hover {
    background: #ff4757;
    color: #fff;
    transform: rotate(90deg);
}

/* Popup Content */
.popup-content {
    padding: 40px 35px 35px;
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1f4e, #1a1f4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: #fff;
}

.popup-header .start-your {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.popup-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Form Styles */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #007bff;
    font-size: 16px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #007bff;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Search Select Wrapper */
.search-select-wrapper {
    position: relative;
}

.search-select-wrapper .search-input {
    display: none;
    padding: 12px 15px;
    border: 2px solid #007bff;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    background: #fff;
}

.search-select-wrapper .search-input.active {
    display: block;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;    
}

/* Submit Button */
.submit-btn {
    padding: 14px 25px;
    background: linear-gradient(135deg, #fa9805, #fa9805);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 18px;
}

/* Success Message */
.success-message {
    padding: 12px 15px;
    background: #d4edda;
    border-radius: 8px;
    color: #155724;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 5px;
}

.success-message i {
    font-size: 20px;
    color: #28a745;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .popup-content {
        padding: 30px 20px 25px;
    }

    .popup-header .start-your {
        font-size: 22px;
    }

    .popup-container {
        max-width: 100%;
        margin: 10px;
        border-radius: 15px;
    }

    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }
}



/* Internal blog links */
.internal-link,
.internal-link strong {
    color: #0d6efd !important;
    text-decoration: underline;
}

.internal-link:hover,
.internal-link:hover strong {
    color: #084298 !important;
}
/* ===== HEADER CSS ===== */

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    padding: 3px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    border-radius: 0px 0px 50px 50px;
    border-bottom: 4px solid #fa9805;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

/* Updated Active Link Styling */
.nav-links li a {
    text-decoration: none;
    color: #001a33;
    font-weight: 600;
    margin-right: 12px;
    font-size: 15px;
    padding: 4px 0;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.nav-links li a.active {
    color: #fa9805;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fa9805;
    animation: underline 0.3s ease-out;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fa9805;
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive Auth Buttons Container */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Desktop Auth Buttons */
.desktop-auth {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

/* Mobile Auth Buttons */
.mobile-auth {
    display: none;
}

/* Responsive Button Styles */
.login-btn {
    background-color: #002936;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.login-btn.register {
    background-color: #fa9805;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color:white;
}

.login-btn.register:hover {
    background-color: #fa9805;
}

/* Mobile Menu Auth Buttons */
.mobile-auth-buttons {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-auth-btn {
    background-color: #001a33;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

.mobile-auth-btn.register {
    background-color: #3498db;
}

.mobile-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger div {
    width: 27px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    padding-top: 120px !important;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 90px 25px 30px;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

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

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin-bottom: 20px;
}

.mobile-links li a {
    text-decoration: none;
    color: #34495e;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.mobile-links li a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    transform: translateX(5px);
}

/* Hamburger Animation */
.hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Scrolled Header */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Mobile active link */
.mobile-links li a.active {
    color: #fa9805;
    font-weight: 600;
    background: rgba(13, 95, 249, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    display: block;
}

/* ===== DROPDOWN SUBMENU STYLES ===== */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(13, 95, 249, 0.15);
    min-width: 280px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, top 0.25s ease;
    z-index: 9999;
    border-top: 3px solid #fa9805;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fa9805;
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu-custom li {
    margin: 0;
    padding: 0;
}

.dropdown-menu-custom li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu-custom li a i {
    font-size: 18px;
    color: #fa9805;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.dropdown-menu-custom li a:hover {
    background: #f0f7ff;
    color: #fa9805 !important;
    padding-left: 26px;
}

.dropdown-menu-custom li a:hover i {
    color: #fa9805;
}

.dropdown-menu-custom li:not(:last-child) a {
    border-bottom: 1px solid #f0f0f0;
}

/* ===== MOBILE DROPDOWN STYLES ===== */
.mobile-has-dropdown .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-has-dropdown.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f0f7ff;
    border-radius: 8px;
}

.mobile-has-dropdown.open .mobile-dropdown-list {
    max-height: 860px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.mobile-dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    color: #333 !important;
    border-bottom: 1px solid #e0ecff;
    text-decoration: none;
}

.mobile-dropdown-list li a i {
    font-size: 17px;
    color: #fa9805;
}

.mobile-dropdown-list li:last-child a {
    border-bottom: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1228px) {
    .login-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (min-width: 1025px) {
    .mobile-nav,
    .mobile-overlay {
        display: none !important;
    }
}

@media (min-width: 1024px) and (max-width: 1136px) {
    .nav-links li a {
        margin-right: 0 !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .nav-links li a {
        font-size: 11px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    header {
        background-color: #ffffff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
        padding: 3px 25px;
    }
    .header-container {
        justify-content: space-between !important;
    }
    .hamburger {
        display: block;
    }
    .desktop-auth {
        display: none;
    }
    .mobile-auth {
        display: block;
    }
    .mobile-auth-buttons {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-auth-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 1321px) and (min-width: 1199px) {
    .nav-links li a {
        margin-right: 0px;
        font-size: 14px;
    }
}


/* ===== SECTION PADDING FIX - LEFT & RIGHT ===== */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4e 100%);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

/* Why Choose Section */
.why-choose-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

/* Our Story Section */
.our-story-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

/* FAQ Section */
.faq-section {
    padding: 40px 60px;
}

/* Container Fluid Override for consistent padding */
.container-fluid {
    max-width: 100%;
    padding: 0 !important;
    margin: 0 auto;
}

/* Hero Row */
.hero-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1.2;
    padding: 20px 0;
}

.hero-content-inner {
    max-width: 100%;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    margin-top: 25px;
}

.hero-subtitle {
    font-size: 28px !important;
    font-weight: 700;
    color: #fa9805;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-align: justify !important;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: #fa9805;
    color: #ffff;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    padding: 80px 0;
}

.hero-image-inner {
    width: 100%;
    height: auto;
}

.hero-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .hero-section {
        padding: 60px 30px;
    }
    
    .why-choose-section {
        padding: 60px 30px;
    }
    
    .our-story-section {
        padding: 60px 30px;
    }
    
    .faq-section {
        padding: 60px 30px;
    }
    
    .hero-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        order: 2;
        padding: 0;
    }
    
    .hero-image {
        order: 1;
        padding: 0;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 24px !important;
    }
    
    .hero-image-inner img {
        display: none;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .why-choose-section {
        padding: 50px 20px;
    }
    
    .our-story-section {
        padding: 50px 20px;
    }
    
    .faq-section {
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px !important;
    }
    
    .hero-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
    }
    
    .hero-image-inner img {
        display: none;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 100px 15px;
    }
    
    .why-choose-section {
        padding: 40px 15px;
    }
    
    .our-story-section {
        padding: 40px 15px;
    }
    
    .faq-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
    }
    
    .hero-text {
        font-size: 14px;
    }
}


/* =========================================================
   CAREER PATH / CAREER GROWTH SECTION
========================================================= */

.career-path-section {
    width: 100%;
    padding: 90px 20px;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.career-path-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
}

.career-path-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 70px;
    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.career-path-content {
    position: relative;
    width: 100%;
}

.career-path-label {
    font-size: 28px !important;
    font-weight: 700;
    color: #fa9805;
    line-height: 1.3;
    margin: 0 0 20px;
    padding: 0;
}

.career-path-title {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 25px;
    padding: 0;

}

.career-path-text {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 18px;
    padding: 0;
    text-align: justify;
}

.career-path-text strong {
    color: #fa9805;
    font-weight: 700;
}


/* =========================================================
   RIGHT JOURNEY SECTION
========================================================= */

.career-path-journey {
    position: relative;
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
}


/* =========================================================
   JOURNEY CARD
========================================================= */

.journey-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    width: 100%;
    padding: 16px 20px;

    background: #ffffff;

    border: 1px solid rgba(250, 152, 5, 0.35);
    border-radius: 14px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

    box-sizing: border-box;

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


/* =========================================================
   JOURNEY CARD HOVER
========================================================= */

.journey-card:hover {
    transform: translateX(8px);

    border-color: #fa9805;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(250, 152, 5, 0.18);
}


/* =========================================================
   JOURNEY NUMBER
========================================================= */

.journey-number {
    width: 42px;
    height: 42px;
    min-width: 42px;

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

    border-radius: 50%;

    background: #fa9805;
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
    line-height: 1;

    box-sizing: border-box;
}


/* =========================================================
   JOURNEY TEXT
========================================================= */

.journey-content {
    display: flex;
    align-items: center;
}

.journey-content span {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   JOURNEY CONNECTING LINE
========================================================= */

.journey-line {
    width: 2px;
    height: 25px;

    margin-left: 40px;

    background: #fa9805;

    opacity: 0.7;
}


/* =========================================================
   TABLET
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .career-path-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
        gap: 50px;
    }

    .career-path-title {
        font-size: 38px;
    }

    .career-path-text {
        font-size: 17px;
    }
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    .career-path-section {
        padding: 70px 20px;
    }

    .career-path-container {
        width: 94%;
    }

    .career-path-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .career-path-content {
        text-align: center;
    }

    .career-path-label {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .career-path-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .career-path-text {
        font-size: 17px;
        line-height: 1.75;
    }

    .career-path-journey {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767px) {

    .career-path-section {
        padding: 55px 18px;
    }

    .career-path-container {
        width: 100%;
    }

    .career-path-grid {
        gap: 40px;
    }

    .career-path-label {
        font-size: 22px !important;
        line-height: 1.35;
        margin-bottom: 15px;
    }

    .career-path-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .career-path-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .career-path-journey {
        padding: 5px 0;
    }

    .journey-card {
        padding: 14px 16px;
        gap: 15px;
        border-radius: 12px;
    }

    .journey-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 13px;
    }

    .journey-content span {
        font-size: 18px;
        line-height: 1.3;
    }

    .journey-line {
        margin-left: 35px;
        height: 20px;
    }
}


/* =========================================================
   SMALL MOBILE
   0px - 575px
========================================================= */

@media (max-width: 575px) {

    .career-path-section {
        padding: 50px 15px;
    }

    .career-path-container {
        width: 100%;
    }

    .career-path-grid {
        gap: 35px;
    }

    .career-path-label {
        font-size: 20px !important;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .career-path-title {
        font-size: 25px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .career-path-text {
        font-size: 15.5px;
        line-height: 1.65;
        margin-bottom: 15px;
    }

    .journey-card {
        padding: 12px 14px;
        gap: 14px;
        border-radius: 11px;
    }

    .journey-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 12px;
    }

    .journey-content span {
        font-size: 17px;
    }

    .journey-line {
        margin-left: 33px;
        height: 18px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   0px - 400px
========================================================= */

@media (max-width: 400px) {

    .career-path-section {
        padding: 40px 12px;
    }

    .career-path-label {
        font-size: 19px !important;
    }

    .career-path-title {
        font-size: 23px;
    }

    .career-path-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .journey-card {
        padding: 11px 12px;
        gap: 12px;
    }

    .journey-number {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .journey-content span {
        font-size: 16px;
    }

    .journey-line {
        margin-left: 31px;
        height: 16px;
    }
}


/* =========================================================
   OUR IMPACT SECTION
========================================================= */

.impact-section {
    width: 100%;
    padding: 90px 20px;
    background: #dae2eb;
    overflow: hidden;
    box-sizing: border-box;
}

.impact-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   IMPACT HEADER
========================================================= */

.impact-header {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
    box-sizing: border-box;
}

.impact-label {
    margin: 0 0 18px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
}

.impact-intro {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #333333;
}


/* =========================================================
   IMPACT GRID
========================================================= */

.impact-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    box-sizing: border-box;
}


/* =========================================================
   IMPACT CARD
========================================================= */

.impact-card {
    width: 100%;
    min-width: 0;
    padding: 35px 25px;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.impact-card:hover {
    transform: translateY(-7px);

    border-color: #fa9805;

    box-shadow: 0 12px 30px rgba(250, 152, 5, 0.15);
}


/* =========================================================
   IMPACT ICON
========================================================= */

.impact-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 15px;

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

    font-size: 42px;
    line-height: 1;

    box-sizing: border-box;

    transition: transform 0.3s ease;
}


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

.impact-icon i {
    font-size: 42px;
    color: #fa9805;
    line-height: 1;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   EMOJI ICON
========================================================= */

.impact-icon {
    font-family:
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Noto Color Emoji",
        sans-serif;
}


/* =========================================================
   ICON HOVER
========================================================= */

.impact-card:hover .impact-icon {
    transform: translateY(-3px) scale(1.05);
}

.impact-card:hover .impact-icon i {
    color: #fa9805;
    transform: scale(1.08);
}


/* =========================================================
   IMPACT NUMBER
========================================================= */

.impact-card h3 {
    margin: 0 0 10px;

    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;

    color: #fa9805;

    white-space: nowrap;
}


/* =========================================================
   IMPACT CARD LABEL
========================================================= */

.impact-card p {
    margin: 0;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;

    color: #000000;

    overflow-wrap: break-word;
}


/* =========================================================
   BOTTOM CONTENT
========================================================= */

.impact-bottom {
    width: 100%;
    max-width: 850px;

    margin: 45px auto 0;

    text-align: center;
    box-sizing: border-box;
}

.impact-bottom p {
    margin: 0;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;

    color: #333333;
}


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .impact-section {
        padding: 80px 20px;
    }

    .impact-container {
        width: 94%;
    }

    .impact-grid {
        gap: 20px;
    }

    .impact-card {
        padding: 32px 20px;
    }

    .impact-card h3 {
        font-size: 34px;
    }

    .impact-card p {
        font-size: 16px;
    }

}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    .impact-section {
        padding: 70px 20px;
    }

    .impact-container {
        width: 94%;
        max-width: 750px;
    }

    .impact-header {
        margin-bottom: 40px;
    }

    .impact-label {
        font-size: 36px;
    }

    .impact-intro {
        font-size: 17px;
        line-height: 1.7;
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .impact-card {
        padding: 30px 20px;
    }

    .impact-icon {
        width: 58px;
        height: 58px;
        font-size: 40px;
        margin-bottom: 14px;
    }

    .impact-icon i {
        font-size: 40px;
    }

    .impact-card h3 {
        font-size: 34px;
    }

    .impact-card p {
        font-size: 16px;
    }

    .impact-bottom {
        margin-top: 40px;
    }

}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767px) {

    .impact-section {
        padding: 55px 18px;
    }

    .impact-container {
        width: 100%;
        max-width: 100%;
    }

    .impact-header {
        margin-bottom: 35px;
    }

    .impact-label {
        margin-bottom: 15px;
        font-size: 30px;
        line-height: 1.25;
    }

    .impact-intro {
        font-size: 16px;
        line-height: 1.7;
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .impact-card {
        padding: 25px 12px;
        border-radius: 13px;
    }

    .impact-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 12px;

        font-size: 36px;
    }

    .impact-icon i {
        font-size: 35px;
    }

    .impact-card h3 {
        margin-bottom: 8px;
        font-size: 29px;
    }

    .impact-card p {
        font-size: 15px;
        line-height: 1.4;
    }

    .impact-bottom {
        margin-top: 35px;
    }

    .impact-bottom p {
        font-size: 15.5px;
        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
   0px - 575px
========================================================= */

@media (max-width: 575px) {

    .impact-section {
        padding: 45px 15px;
    }

    .impact-container {
        width: 100%;
    }

    .impact-header {
        margin-bottom: 30px;
    }

    .impact-label {
        font-size: 27px;
    }

    .impact-intro {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .impact-card {
        padding: 22px 8px;
        border-radius: 12px;
    }

    .impact-icon {
        width: 50px;
        height: 50px;

        margin-bottom: 10px;

        font-size: 32px;
    }

    .impact-icon i {
        font-size: 31px;
    }

    .impact-card h3 {
        margin-bottom: 7px;
        font-size: 26px;
    }

    .impact-card p {
        font-size: 14px;
        line-height: 1.4;
    }

    .impact-bottom {
        margin-top: 30px;
    }

    .impact-bottom p {
        font-size: 15px;
        line-height: 1.65;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   0px - 400px
========================================================= */

@media (max-width: 400px) {

    .impact-section {
        padding: 40px 12px;
    }

    .impact-header {
        margin-bottom: 27px;
    }

    .impact-label {
        font-size: 25px;
    }

    .impact-intro {
        font-size: 15px;
        line-height: 1.65;
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .impact-card {
        padding: 20px 6px;
        border-radius: 11px;
    }

    .impact-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 9px;

        font-size: 29px;
    }

    .impact-icon i {
        font-size: 29px;
    }

    .impact-card h3 {
        font-size: 23px;
        margin-bottom: 6px;
    }

    .impact-card p {
        font-size: 13px;
        line-height: 1.35;
    }

    .impact-bottom {
        margin-top: 28px;
    }

    .impact-bottom p {
        font-size: 14.5px;
        line-height: 1.6;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   0px - 350px
========================================================= */

@media (max-width: 350px) {

    .impact-section {
        padding: 35px 10px;
    }

    .impact-label {
        font-size: 23px;
    }

    .impact-intro {
        font-size: 14px;
    }

    .impact-grid {
        gap: 8px;
    }

    .impact-card {
        padding: 18px 5px;
    }

    .impact-icon {
        width: 42px;
        height: 42px;

        font-size: 26px;
    }

    .impact-icon i {
        font-size: 26px;
    }

    .impact-card h3 {
        font-size: 21px;
    }

    .impact-card p {
        font-size: 12px;
    }

    .impact-bottom p {
        font-size: 14px;
    }

}


/* =========================================
   WHY LEARNERS SECTION
========================================= */

.why-learners-section {
    width: 100%;
    padding: 90px 20px;
    background: #ffffff;
}

.why-learners-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.why-learners-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-learners-tag {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-left: 38px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #fa9805;
    text-transform: uppercase;
}

.why-learners-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 27px;
    height: 2px;
    background: #fa9805;
    transform: translateY(-50%);
}

.why-learners-header h2 {
    margin: 0 0 18px;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;

    color: #1b2735;
}

.why-learners-header p {
    max-width: 780px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #687383;
}


/* =========================================
   GRID
========================================= */

.why-learners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


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

.why-learners-card {
    position: relative;

    display: flex;
    gap: 20px;

    padding: 30px;

        border:1px solid  #dae2eb;
    background:#dae2eb;
    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Orange vertical accent */





.why-learners-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: #fa9805;

    transition: height 0.35s ease;
}

.why-learners-card:hover::before {
    height: 100%;
}

.why-learners-card:hover {
    transform: translateY(-6px);

    border-color: #fa9805;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}


/* =========================================
   NUMBER
========================================= */

.why-card-number {
    flex: 0 0 auto;

    font-size: 14px;
    font-weight: 700;

    color: #fa9805;

    line-height: 1;
    padding-top: 5px;
}


/* =========================================
   CARD BODY
========================================= */

.why-card-body {
    flex: 1;
}


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

.why-card-icon {
    width: 48px;
    height: 48px;

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

    margin-bottom: 17px;

    border-radius: 12px;

    background: #fff6e8;
    color: #fa9805;

    font-size: 21px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.why-learners-card:hover .why-card-icon {
    background: #fa9805;
    color: #ffffff;
    transform: rotate(5deg);
}


/* =========================================
   CARD TITLE
========================================= */

.why-card-body h3 {
    margin: 0 0 10px;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;

    color: #1b2735;
}


/* =========================================
   CARD TEXT
========================================= */

.why-card-body p {
    margin: 0;
    text-align: justify;
    font-size: 15px;
    line-height: 1.7;

    color: #687383;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-learners-section {
        padding: 75px 20px;
    }

    .why-learners-header {
        margin-bottom: 45px;
    }

    .why-learners-header h2 {
        font-size: 34px;
    }

    .why-learners-grid {
        gap: 18px;
    }

    .why-learners-card {
        padding: 25px 22px;
    }

    .why-card-body h3 {
        font-size: 18px;
    }

    .why-card-body p {
        font-size: 14px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-learners-section {
        padding: 60px 16px;
    }

    .why-learners-container {
        width: 100%;
    }

    .why-learners-header {
        margin-bottom: 38px;
    }

    .why-learners-header h2 {
        font-size: 29px;
    }

    .why-learners-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .why-learners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-learners-card {
        padding: 23px 20px;
        gap: 16px;
    }

    .why-card-number {
        font-size: 13px;
    }

    .why-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 14px;
    }

    .why-card-body h3 {
        font-size: 18px;
    }

    .why-card-body p {
        font-size: 14px;
        line-height: 1.65;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-learners-section {
        padding: 50px 14px;
    }

    .why-learners-header h2 {
        font-size: 26px;
    }

    .why-learners-card {
        padding: 20px 17px;
    }

    .why-card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .why-card-body h3 {
        font-size: 17px;
    }

    .why-card-body p {
        font-size: 13.5px;
    }
}




/* =========================================
   IT COURSES SECTION
========================================= */

.it-courses-section {
    width: 100%;
    padding: 90px 20px;
    background: #dae2eb;
}

.it-courses-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.it-courses-content {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   LABEL
========================================= */

.it-courses-label {
    position: relative;
    display: inline-block;

    margin-bottom: 15px;
    padding-left: 38px;

    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.it-courses-label::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 26px;
    height: 2px;

    background: #fa9805;

    transform: translateY(-50%);
}


/* =========================================
   HEADING
========================================= */

.it-courses-content h2 {
    max-width: 850px;

    margin: 0 0 20px;

    color: #182433;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================
   INTRO
========================================= */

.it-courses-intro {
    max-width: 900px;
   text-align: justify;
    margin: 0 0 35px;

    color: #536273;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   COURSE LIST
========================================= */

.it-courses-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-bottom: 35px;
}


/* =========================================
   COURSE ITEM
========================================= */

.it-course-item {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 17px 18px;

    background: #ffffff;

    border: 1px solid rgba(24, 36, 51, 0.08);
    border-radius: 10px;

    color: #253446;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.it-course-item:hover {
    border-color: #fa9805;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(24, 36, 51, 0.08);
}


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

.it-course-icon {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

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

    background: #fff4df;

    border-radius: 7px;

    color: #fa9805;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.it-courses-description {
    max-width: 950px;

    margin: 0 0 30px;

    color: #536273;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   BUTTON
========================================= */

.it-courses-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 22px;

    background: #fa9805;

    border: 1px solid #fa9805;
    border-radius: 8px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.it-courses-button span {
    font-size: 19px;
    line-height: 1;
}

.it-courses-button:hover {
    background: #ffffff;
    color: #fa9805;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .it-courses-section {
        padding: 75px 20px;
    }

    .it-courses-content h2 {
        font-size: 34px;
    }

    .it-courses-intro {
        font-size: 16px;
    }

    .it-courses-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .it-courses-section {
        padding: 60px 16px;
    }

    .it-courses-container {
        width: 100%;
    }

    .it-courses-label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .it-courses-content h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .it-courses-intro {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .it-courses-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .it-course-item {
        padding: 15px 16px;
        font-size: 14px;
    }

    .it-courses-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .it-courses-button {
        padding: 13px 19px;
        font-size: 14px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .it-courses-section {
        padding: 50px 14px;
    }

    .it-courses-content h2 {
        font-size: 26px;
    }

    .it-courses-intro {
        font-size: 14px;
    }

    .it-course-item {
        padding: 14px;
    }

    .it-courses-description {
        font-size: 14px;
    }
}



.learning-section {
    width: 100%;
    background: #ffffff;
    padding: 90px 0;
}

.learning-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.learning-header {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.learning-label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ed4b5c;
}

.learning-header h2 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.learning-header h2 span {
    color: #000000;
}

.learning-header p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* =========================
   MAIN AREA
========================= */

.learning-main {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.learning-description {
    padding-right: 20px;
}

.learning-highlight {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #fcf4e7;
    border-radius: 12px;
}

.learning-highlight h3 {
    margin: 0 0 9px;
    font-size: 21px;
    color: #222;
}

.learning-highlight p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    text-align: justify;
}

.learning-outro {
    margin: 25px 5px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* =========================
   SKILLS GRID
========================= */

.learning-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.learning-skill {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 82px;
    padding: 17px 18px;
    background: #ffffff;
    border: 1px solid #fa9805;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.learning-skill:hover {
    transform: translateY(-4px);
    border-color:  #fa9805;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.skill-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background: #f8f8f8;
    border-radius: 12px;
}

.learning-skill strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #222;
}

.learning-skill small {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: #777;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .learning-section {
        padding: 70px 0;
    }

    .learning-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .learning-description {
        padding-right: 0;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .learning-section {
        padding: 55px 0;
    }

    .learning-header {
        margin-bottom: 35px;
    }

    .learning-header h2 {
        font-size: 30px;
    }

    .learning-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .learning-highlight {
        padding: 20px;
    }

    .learning-highlight h3 {
        font-size: 18px;
    }

    .learning-skills {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .learning-skill {
        min-height: 72px;
    }
}



.internship-section {
    width: 100%;
    background: #dae2eb;
    padding: 90px 0;
}

.internship-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.internship-header {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.internship-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 16px;
    background: #fa9805;
    color: #ffffff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.internship-header h2 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.internship-header h2 span {
    color: #000000;
}

.internship-header p {
    margin: 0;
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   MAIN
========================= */

.internship-main {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 45px;
    align-items: start;
}


/* =========================
   LEFT CONTENT
========================= */

.internship-content {
    padding: 10px 10px 0 0;
}

.internship-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 9px 15px;
    background: #ffffff;
    border-radius: 30px;
    color: #000000;
    font-size: 13px;
    font-weight: 600;
}

.internship-badge span {
    font-size: 19px;
}

.internship-content h3 {
    margin: 0 0 20px;
    color: #000000;
    font-size: 31px;
    line-height: 1.3;
    font-weight: 500;
}

.internship-content h3 strong {
    display: block;
    color: #fa9805;
    font-weight: 700;
}

.internship-content > p {
    margin: 0 0 17px;
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
     text-align: justify;
}


/* =========================
   HIGHLIGHT BOX
========================= */

.internship-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 27px;
    padding: 21px;
    background: #ffffff;
    border-left: 5px solid #fa9805;
    border-radius: 10px;
}

.highlight-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    border-radius: 10px;
    font-size: 23px;
}

.internship-highlight strong {
    display: block;
    margin-bottom: 5px;
    color: #000000;
    font-size: 16px;
}

.internship-highlight p {
    margin: 0;
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
     text-align: justify;
}


/* =========================
   RIGHT BENEFITS
========================= */

.internship-benefits {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
}

.benefits-heading {
    margin-bottom: 25px;
}

.benefits-heading span {
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-heading h3 {
    margin: 5px 0 0;
    color: #000000;
    font-size: 25px;
}


/* =========================
   BENEFIT GRID
========================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-card {
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background:#f8fbff;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    display: block;
    margin-bottom: 9px;
    font-size: 25px;
}

.benefit-card h4 {
    margin: 0 0 5px;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
}

.benefit-card p {
    margin: 0;
    color: #555555;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================
   BOTTOM AUDIENCE
========================= */

.internship-audience {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 25px 30px;
    background: #000000;
    border-radius: 15px;
}

.audience-icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    border-radius: 12px;
    font-size: 27px;
}

.audience-content h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 19px;
}

.audience-content p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
     text-align: justify;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .internship-section {
        padding: 70px 0;
    }

    .internship-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .internship-content {
        padding-right: 0;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .internship-section {
        padding: 55px 0;
    }

    .internship-header {
        margin-bottom: 35px;
    }

    .internship-header h2 {
        font-size: 30px;
    }

    .internship-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .internship-content h3 {
        font-size: 26px;
    }

    .internship-benefits {
        padding: 20px;
        border-radius: 14px;
    }

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

    .internship-audience {
        align-items: flex-start;
        padding: 20px;
    }

    .audience-content h3 {
        font-size: 17px;
    }

    .audience-content p {
        font-size: 13px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .internship-section {
        padding: 45px 0;
    }

    .internship-header h2 {
        font-size: 27px;
    }

    .internship-content h3 {
        font-size: 23px;
    }

    .internship-highlight {
        padding: 17px;
    }

    .audience-icon {
        width: 45px;
        min-width: 45px;
        height: 45px;
        font-size: 22px;
    }

}



.career-section {
    width: 100%;
    background: #ffffff;
    padding: 90px 0;
}

.career-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.career-header {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}

.career-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.career-header h2 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.career-header h2 span {
    color: #000000;
}

.career-header p {
    margin: 0;
    color: #555555;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   INTRO BOX
========================= */

.career-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 45px;
    padding: 24px 28px;
    background: #dae2eb;
    border-radius: 14px;
}

.career-intro-icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    border-radius: 12px;
    font-size: 27px;
}

.career-intro h3 {
    margin: 0 0 6px;
    color: #000000;
    font-size: 19px;
}

.career-intro p {
    margin: 0;
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   CAREER GRID
========================= */

.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.career-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #f3f6f9;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    border-color: #fa9805;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


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

.career-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4e5;
    border-radius: 12px;
    font-size: 26px;
}


/* =========================
   CARD CONTENT
========================= */

.career-card-content {
    flex: 1;
}

.career-number {
    display: block;
    margin-bottom: 4px;
    color: #fa9805;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.career-card h3 {
    margin: 0 0 8px;
    color: #000000;
    font-size: 19px;
    font-weight: 700;
}

.career-card p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}


/* =========================
   WIDE CARD
========================= */

.career-card-wide {
    grid-column: span 2;
}


/* =========================
   BOTTOM MESSAGE
========================= */

.career-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
    padding: 28px;
    background: #000000;
    border-radius: 15px;
    text-align: left;
}

.career-bottom-icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    border-radius: 12px;
    font-size: 27px;
}

.career-bottom span {
    display: block;
    margin-bottom: 5px;
    color: #fa9805;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.career-bottom h3 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 500;
}

.career-bottom strong {
    color: #fa9805;
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .career-section {
        padding: 70px 0;
    }

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

    .career-card-wide {
        grid-column: auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .career-section {
        padding: 55px 0;
    }

    .career-header {
        margin-bottom: 35px;
    }

    .career-header h2 {
        font-size: 30px;
    }

    .career-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .career-intro {
        align-items: flex-start;
        padding: 20px;
        margin-bottom: 30px;
    }

    .career-intro h3 {
        font-size: 17px;
    }

    .career-intro p {
        font-size: 13px;
    }

    .career-card {
        padding: 20px;
        gap: 14px;
    }

    .career-icon {
        width: 45px;
        min-width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .career-card h3 {
        font-size: 17px;
    }

    .career-card p {
        font-size: 13px;
    }

    .career-bottom {
        justify-content: flex-start;
        padding: 20px;
    }

    .career-bottom h3 {
        font-size: 17px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .career-header h2 {
        font-size: 27px;
    }

    .career-card {
        flex-direction: column;
    }

    .career-bottom {
        align-items: flex-start;
    }

}



/* ========================================
   WHO CAN JOIN WELLSPRING
======================================== */

.join-section {
    width: 100%;
    background: #dae2eb;
    padding: 90px 0;
}

.join-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.join-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.join-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    background: #fa9805;
    color: #ffffff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.join-header h2 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.join-header h2 span {
    color: #000000;
}

.join-header p {
    margin: 0;
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   CARDS
========================= */

.join-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.join-card {
    position: relative;
    min-height: 275px;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.join-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #fa9805;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.join-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.join-card:hover::after {
    transform: scaleX(1);
}


/* =========================
   CARD TOP
========================= */

.join-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.join-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#ffedd2;
    border-radius: 14px;
    font-size: 27px;
}

.join-number {
    color: #fa9805;
    font-size: 14px;
    font-weight: 800;
}


/* =========================
   CARD CONTENT
========================= */

.join-card h3 {
    margin: 0 0 12px;
    color: #000000;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.join-card p {
    margin: 0;
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   BOTTOM MESSAGE
========================= */

.join-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 850px;
    margin: 45px auto 0;
    padding: 24px 28px;
    background: #000000;
    border-radius: 18px;
}

.join-bottom-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    border-radius: 14px;
    font-size: 28px;
}

.join-bottom-content span {
    display: block;
    margin-bottom: 6px;
    color: #fa9805;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.join-bottom-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 500;
}

.join-bottom-content strong {
    color: #fa9805;
    font-weight: 700;
}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1100px) {

    .join-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .join-section {
        padding: 70px 0;
    }

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

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .join-section {
        padding: 55px 0;
    }

    .join-header {
        margin-bottom: 35px;
    }

    .join-header h2 {
        font-size: 30px;
    }

    .join-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .join-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .join-card {
        min-height: auto;
        padding: 22px;
    }

    .join-card-top {
        margin-bottom: 18px;
    }

    .join-bottom {
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }

    .join-bottom-icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .join-bottom-content h3 {
        font-size: 17px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .join-header h2 {
        font-size: 27px;
    }

    .join-bottom {
        padding: 18px;
    }

    .join-bottom-content span {
        font-size: 9px;
    }

}


/* =========================================
   SIMPLE & NEAT GROWTH SECTION
========================================= */

.growth-focus-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.growth-focus-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADER */

.growth-focus-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.growth-focus-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #fa9805;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.growth-focus-header h2 {
    margin: 0;
    color: #000000;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.growth-focus-header h2 span {
    display: block;
    color: #000000;
}


/* MAIN CONTENT */

.growth-simple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* TEXT */

.growth-simple-text {
    border-left: 4px solid #fa9805;
    padding-left: 25px;
}

.growth-simple-text p {
    margin: 0 0 18px;
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}

.growth-simple-text .growth-main-text {
    color: #000000;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
}


/* APPROACH */

.growth-simple-list {
    padding: 30px;
    background: #dae2eb;
    border-radius: 15px;
}

.growth-list-title {
    margin-bottom: 20px;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
}

.growth-list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.growth-list-items span {
    padding: 10px 14px;
    background: #ffffff;
    color: #000000;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}


/* RESULT */

.growth-simple-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #dae2eb;
    text-align: center;
}

.result-icon {
    font-size: 28px;
}

.growth-simple-result p {
    margin: 0;
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}

.growth-simple-result strong {
    color: #fa9805;
}



/* =========================================
   NEW BOTTOM RESULT DESIGN ONLY
========================================= */

.growth-simple-result {
    max-width: 950px;
    margin: 65px auto 0;
    padding: 0;
    border: none;
    text-align: center;
}


/* TOP LABEL */

.growth-result-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.result-line {
    width: 100px;
    height: 1px;
    background: #dae2eb;
}

.result-badge {
    color: #fa9805;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
}


/* MAIN MESSAGE */

.growth-result-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 30px;
    background: #dae2eb;
    border-radius: 12px;
    text-align: left;
}

.result-check {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
}

.growth-result-message p {
    margin: 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
}

.growth-result-message strong {
    color: #000000;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 600px) {

    .growth-simple-result {
        margin-top: 45px;
    }

    .result-line {
        width: 40px;
    }

    .growth-result-message {
        align-items: flex-start;
        padding: 20px;
        gap: 14px;
    }

    .result-check {
        width: 42px;
        min-width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .growth-result-message p {
        font-size: 14px;
    }
}

/* TABLET */

@media (max-width: 768px) {

    .growth-focus-section {
        padding: 65px 0;
    }

    .growth-simple-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .growth-focus-section {
        padding: 50px 0;
    }

    .growth-focus-header {
        margin-bottom: 35px;
    }

    .growth-focus-header h2 {
        font-size: 30px;
    }

    .growth-simple-text {
        padding-left: 18px;
    }

    .growth-simple-text .growth-main-text {
        font-size: 18px;
    }

    .growth-simple-text p {
        font-size: 15px;
    }

    .growth-simple-list {
        padding: 22px;
    }

    .growth-list-items span {
        width: 100%;
        padding: 11px 14px;
    }

    .growth-simple-result {
        flex-direction: column;
        margin-top: 40px;
    }
}



/* =========================================================
   WHY PRACTICAL EXPERIENCE MATTERS
========================================================= */

.practical-experience-section {
    width: 100%;
    padding: 90px 20px;
    background: #dae2eb;
    overflow: hidden;
    box-sizing: border-box;
}

.practical-experience-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.practical-experience-header {
    width: 100%;
    max-width: 750px;
    margin: 0 0 55px;
}

.practical-experience-header h2 {
    margin: 0;
    color: #000000;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

.practical-experience-header h2 span {
    color: #000000;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.practical-experience-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 70px;
    align-items: center;
}


/* =========================================================
   LEFT TEXT
========================================================= */

.practical-text {
    min-width: 0;
    border-left: 4px solid #fa9805;
    padding-left: 25px;
    box-sizing: border-box;
}

.practical-text p {
    margin: 0 0 18px;
    color: #444444;
    font-size: 16px;
    line-height: 1.8;
}

.practical-text p:last-child {
    margin-bottom: 0;
}

.practical-text .practical-intro {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
}


/* =========================================================
   SKILLS
========================================================= */

.practical-skills {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.practical-skill {
    min-width: 0;
    padding: 22px 18px;
    background: #ffffff;
    border-radius: 12px;
    box-sizing: border-box;
}

.practical-skill span {
    display: block;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1;
}

.practical-skill p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   EXPERIENCE BRIDGE
========================================================= */

.experience-bridge {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 1.5fr) minmax(0, 1fr);
    align-items: center;
    gap: 20px;

    margin-top: 70px;
    padding: 35px;

    background: #ffffff;
    border-radius: 18px;

    box-sizing: border-box;
}


/* =========================================================
   BRIDGE SIDE
========================================================= */

.bridge-side {
    min-width: 0;

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

    gap: 10px;

    text-align: center;
}

.bridge-icon {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

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

    background: #dae2eb;
    border-radius: 50%;

    font-size: 28px;
    line-height: 1;
}

.bridge-side strong {
    color: #000000;
    font-size: 16px;
    line-height: 1.4;
}

.bridge-result .bridge-icon {
    background: #fa9805;
}


/* =========================================================
   BRIDGE MIDDLE - DESKTOP
========================================================= */

.bridge-middle {
    position: relative;

    min-width: 0;

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

    gap: 0;
}

.bridge-line {
    width: 100%;
    height: 2px;

    display: block;

    background: #dae2eb;
}


/* =========================================================
   BRIDGE ARROW
========================================================= */

.bridge-arrow {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

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

    margin: -25px 0 12px;

    background: #fa9805;
    color: #ffffff;

    border-radius: 50%;

    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================================
   BRIDGE LABEL
========================================================= */

.bridge-middle > span:last-child {
    display: block;

    color: #000000;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1.4;

    text-align: center;
}


/* =========================================================
   BOTTOM TEXT
========================================================= */

.practical-bottom-text {
    width: 100%;
    max-width: 850px;

    margin: 45px auto 0;

    text-align: center;
    box-sizing: border-box;
}

.practical-bottom-text p {
    margin: 0 0 15px;

    color: #333333;

    font-size: 17px;
    line-height: 1.8;
}

.practical-bottom-text strong {
    color: #fa9805;
}

.bottom-note {
    display: inline-block;

    max-width: 100%;

    padding: 10px 18px;

    border: 1px solid #fa9805;
    border-radius: 30px;

    color: #000000;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;

    box-sizing: border-box;
}


/* =========================================================
   LARGE TABLET
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .practical-experience-section {
        padding: 80px 20px;
    }

    .practical-experience-container {
        width: 94%;
    }

    .practical-experience-content {
        gap: 45px;
    }

    .experience-bridge {
        gap: 15px;
        padding: 30px;
    }

}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    .practical-experience-section {
        padding: 70px 20px;
    }

    .practical-experience-container {
        width: 94%;
        max-width: 850px;
    }

    .practical-experience-header {
        margin-bottom: 45px;
    }

    .practical-experience-header h2 {
        font-size: 40px;
    }

    /* Main content becomes one column */
    .practical-experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .practical-text {
        padding-left: 22px;
    }

    /* Keep bridge horizontal on tablet */
    .experience-bridge {
        grid-template-columns:
            minmax(130px, 1fr)
            minmax(180px, 1.5fr)
            minmax(130px, 1fr);

        gap: 15px;

        margin-top: 55px;
        padding: 30px 20px;
    }

    .bridge-side strong {
        font-size: 15px;
    }

    .bridge-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
        font-size: 26px;
    }

    .bridge-middle > span:last-child {
        font-size: 9px;
        letter-spacing: 1px;
    }

}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767px) {

    .practical-experience-section {
        padding: 55px 18px;
    }

    .practical-experience-container {
        width: 100%;
        max-width: 100%;
    }

    .practical-experience-header {
        margin-bottom: 35px;
    }

    .practical-experience-header h2 {
        font-size: 32px;
        line-height: 1.25;
    }


    /* -----------------------------------------------------
       MAIN CONTENT
    ----------------------------------------------------- */

    .practical-experience-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .practical-text {
        padding-left: 18px;
        border-left-width: 3px;
    }

    .practical-text .practical-intro {
        font-size: 18px;
        line-height: 1.55;
    }

    .practical-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }


    /* -----------------------------------------------------
       SKILLS
    ----------------------------------------------------- */

    .practical-skills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .practical-skill {
        padding: 18px 12px;
        border-radius: 11px;
    }

    .practical-skill span {
        margin-bottom: 10px;
        font-size: 26px;
    }

    .practical-skill p {
        font-size: 13px;
        line-height: 1.4;
    }


    /* -----------------------------------------------------
       BRIDGE
       IMPORTANT:
       Do NOT rotate the middle.
       Build a clean vertical bridge.
    ----------------------------------------------------- */

    .experience-bridge {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 45px;
        padding: 28px 20px;

        border-radius: 15px;
    }

    .bridge-side {
        gap: 9px;
    }

    .bridge-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;

        font-size: 25px;
    }

    .bridge-side strong {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       VERTICAL BRIDGE MIDDLE
    ----------------------------------------------------- */

    .bridge-middle {
        width: 100%;

        margin: 20px 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .bridge-line {
        width: 2px;
        height: 45px;

        background: #dae2eb;
    }

    .bridge-arrow {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        margin: -1px 0 10px;

        font-size: 22px;

        transform: rotate(90deg);
    }

    .bridge-middle > span:last-child {
        display: block;

        max-width: 180px;

        font-size: 9px;
        letter-spacing: 1px;
        line-height: 1.4;
    }


    /* -----------------------------------------------------
       BOTTOM
    ----------------------------------------------------- */

    .practical-bottom-text {
        margin-top: 35px;
    }

    .practical-bottom-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .bottom-note {
        padding: 9px 15px;

        font-size: 11px;
        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
   0px - 575px
========================================================= */

@media (max-width: 575px) {

    .practical-experience-section {
        padding: 45px 15px;
    }

    .practical-experience-header {
        margin-bottom: 30px;
    }

    .practical-experience-header h2 {
        font-size: 29px;
    }

    .practical-experience-content {
        gap: 30px;
    }

    .practical-text {
        padding-left: 16px;
    }

    .practical-text .practical-intro {
        font-size: 17px;
    }

    .practical-text p {
        font-size: 14.5px;
        line-height: 1.7;
    }


    /* Skills */

    .practical-skills {
        gap: 9px;
    }

    .practical-skill {
        padding: 17px 9px;
        border-radius: 10px;
    }

    .practical-skill span {
        font-size: 24px;
    }

    .practical-skill p {
        font-size: 12.5px;
    }


    /* Bridge */

    .experience-bridge {
        margin-top: 40px;
        padding: 25px 15px;
        border-radius: 14px;
    }

    .bridge-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;

        font-size: 23px;
    }

    .bridge-side strong {
        font-size: 14px;
    }

    .bridge-middle {
        margin: 18px 0;
    }

    .bridge-line {
        height: 40px;
    }

    .bridge-arrow {
        width: 42px;
        height: 42px;
        flex-basis: 42px;

        font-size: 20px;
    }

    .bridge-middle > span:last-child {
        max-width: 170px;
        font-size: 8px;
        letter-spacing: 0.9px;
    }


    /* Bottom */

    .practical-bottom-text {
        margin-top: 30px;
    }

    .practical-bottom-text p {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .bottom-note {
        padding: 8px 13px;
        font-size: 10.5px;
    }

}


/* =========================================================
   EXTRA SMALL
   0px - 400px
========================================================= */

@media (max-width: 400px) {

    .practical-experience-section {
        padding: 40px 12px;
    }

    .practical-experience-header h2 {
        font-size: 26px;
    }

    .practical-experience-content {
        gap: 27px;
    }

    .practical-text {
        padding-left: 14px;
    }

    .practical-text .practical-intro {
        font-size: 16px;
    }

    .practical-text p {
        font-size: 14px;
    }


    /* Skills remain 2 columns */

    .practical-skills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .practical-skill {
        padding: 16px 7px;
    }

    .practical-skill span {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .practical-skill p {
        font-size: 12px;
    }


    /* Bridge */

    .experience-bridge {
        margin-top: 35px;
        padding: 23px 12px;
    }

    .bridge-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 22px;
    }

    .bridge-side strong {
        font-size: 13.5px;
    }

    .bridge-middle {
        margin: 16px 0;
    }

    .bridge-line {
        height: 35px;
    }

    .bridge-arrow {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 19px;
    }

    .bridge-middle > span:last-child {
        font-size: 8px;
        letter-spacing: 0.7px;
    }


    /* Bottom */

    .practical-bottom-text p {
        font-size: 14px;
    }

    .bottom-note {
        font-size: 10px;
        padding: 8px 11px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   0px - 350px
========================================================= */

@media (max-width: 350px) {

    .practical-experience-section {
        padding: 35px 10px;
    }

    .practical-experience-header h2 {
        font-size: 24px;
    }

    .practical-text .practical-intro {
        font-size: 15px;
    }

    .practical-text p {
        font-size: 13.5px;
    }

    .practical-skills {
        gap: 7px;
    }

    .practical-skill {
        padding: 14px 5px;
    }

    .practical-skill span {
        font-size: 21px;
    }

    .practical-skill p {
        font-size: 11.5px;
    }

    .experience-bridge {
        padding: 20px 10px;
    }

    .bridge-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 20px;
    }

    .bridge-side strong {
        font-size: 13px;
    }

    .bridge-line {
        height: 32px;
    }

    .bridge-arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 18px;
    }

    .practical-bottom-text p {
        font-size: 13.5px;
    }

}

/* =========================================
   FINAL CAREER CTA SECTION
========================================= */

.career-cta-section {
    width: 100%;
    padding: 90px 0 45px;
    background:white;
}

.career-cta-container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   MAIN CONTENT
========================================= */

.career-cta-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.career-cta-tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid #fa9805;
    color: #fa9805;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.career-cta-content h2 {
    margin: 0 0 22px;
    color: #000000;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.career-cta-content h2 span {
    color: #000000;
}

.career-cta-intro {
    margin: 0 auto 15px;
    color: #000000;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 500;
}

.career-cta-description {
    max-width: 720px;
    margin: auto;
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
}

.career-cta-description strong {
    color: #fa9805;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.career-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 750px;
    margin: 45px auto 0;
}

.career-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 20px;
    background:white;
    border: 1px solid #fa9805;
    color: #000000;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.career-cta-btn:hover {
    background:#fa9805;
    color: #ffffff;
}

.career-cta-btn span {
    font-size: 19px;
}


/* Primary Button */

.career-cta-btn.primary-btn {
    background: #fa9805;
    border-color: #fa9805;
    color: #000000;
}

.career-cta-btn.primary-btn:hover {
    background: #ffffff;
    border-color:#fa9805;
}


/* =========================================
   FOOTER
========================================= */

.career-cta-footer {
    margin-top: 70px;
    padding-top: 28px;
    border-top: 1px solid #333333;
    text-align: center;
}

.career-cta-brand {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.career-cta-footer p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.career-cta-footer p span {
    color: #fa9805;
}
.testimonials-intro{
    text-align: justify;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .career-cta-section {
        padding: 70px 0 40px;
    }

    .career-cta-content h2 {
        font-size: 38px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .career-cta-section {
        padding: 55px 0 35px;
    }

    .career-cta-content h2 {
        font-size: 30px;
    }

    .career-cta-intro {
        font-size: 17px;
    }

    .career-cta-description {
        font-size: 14px;
    }

    .career-cta-actions {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .career-cta-btn {
        padding: 15px;
        font-size: 14px;
    }

    .career-cta-footer {
        margin-top: 50px;
    }

    .career-cta-brand {
        font-size: 16px;
    }

    .career-cta-footer p {
        font-size: 12px;
    }
}

.faq-section{
    background: #dae2eb;
}
