
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root{
    --color-primary: #01345b;
    --color-secondary: #ec631f;
    --color-light: #EEF9FF;
    --color-yellow: #ffbb14;
    --color-dark: #222222;
    --color-gradient: linear-gradient(135deg, #01345b 0%, #ec631f 100%);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    --font-headings: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    --border: rgba(26, 111, 186, 0.12);
    --shadow: 0 4px 24px rgba(13, 43, 69, 0.07);
    --shadow-hover: 0 10px 40px rgba(26, 111, 186, 0.18);
}

h1, h2, h3, h4, h5, h6, 
.hero-title, .section-title, .impact-title, .partners-title, .course-label, .course-overlay h5 {
    font-family: var(--font-headings) !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(10deg);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}


* { box-sizing: border-box; }

body{
    background: #fff; 
    color:var(--color-dark); 
    -webkit-font-smoothing:antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Enhanced Navbar */
.navbar{
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled{
    padding: 0.25rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand{
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.navbar-nav .nav-link{
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
    color: #333;
}

.navbar-nav .nav-link:hover{
    color: var(--color-primary) !important;
}

.navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after{
    width: 80%;
}

/* Enhanced Dropdown */
.dropdown-menu{
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 280px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-10px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item{
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item:hover{
    background: var(--color-light);
    color: var(--color-primary);
    transform: translateX(5px);
}

.dropdown-item i{
    width: 20px;
    color: var(--color-primary);
}

/* CTA Buttons */
.btn-primary{
    background:var(--color-primary);
    border:0;
    font-weight: 600;
    padding: 0.725rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,97,140,0.3);
    color: white;
    background: var(--color-secondary);
}

.btn-outline-primary{
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary:hover{
    background: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,97,140,0.3);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Mobile Drawer Overlay */
.drawer-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
}

.drawer-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.mobile-drawer{
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 9999;
    overflow-y: auto;
}

.mobile-drawer.active{
    right: 0;
}

.drawer-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.drawer-close{
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.drawer-close:hover{
    background: var(--color-light);
}

.drawer-close i{
    font-size: 1.5rem;
    color: #333;
}

.drawer-content{
    padding: 1.5rem;
}

.drawer-nav-item{
    margin-bottom: 0.5rem;
}

.drawer-nav-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.drawer-nav-link:hover{
    background: var(--color-light);
    color: var(--color-primary);
}

.drawer-submenu{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.drawer-submenu.active{
    max-height: 800px;
}

.drawer-submenu-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.drawer-submenu-item:hover{
    background: var(--color-light);
    color: var(--color-primary);
}

.drawer-submenu-item i{
    width: 18px;
    color: var(--color-primary);
}

.drawer-cta{
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.drawer-contact{
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 12px;
}

.drawer-contact h6{
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.contact-item i{
    color: var(--color-primary);
    width: 20px;
}

.contact-item a{
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover{
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        display: none;
    }
    .desktop-cta {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

.hero-slider {
    width: 100%;
    height: 100vh;
    margin-top: 70px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 97, 140, 0.6) 0%, rgba(0, 127, 176, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-main {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 14, 14, 0.3);
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: var(--color-secondary);
}

.outline-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    background: transparent;
    color: white;
    border: 2px solid #fff;
}

.outline-btn:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Community Impact Section */
.community-impact {
    background-color: var(--color-light);
    padding: 60px 0;
}

.impact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    min-height: 400px;
}

.impact-content {
    padding-left: 18px;
    padding-right: 18px;
}

.impact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.impact-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Offerings Section */
.offerings-section {
    padding: 60px 0;
    background: #fff;
}

.offering-card {
    background: var(--color-light);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,97,140,0.15);
    border-color: var(--color-primary);
}

.offering-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offering-icon i {
    font-size: 17.5px;
    color: #fff;
}

.offering-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.offering-card p {
    color: #666;
    font-size: 1rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.offering-item {
    margin-bottom: 1.5rem;
}

.offering-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offering-header h4 {
    margin: 0;
}

.offering-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0; /* remove previous spacing */
}

/* CTA Section */
/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: url(../images/hero-4.png) center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Overlay */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

/* Keep content above overlay */
.cta-section .container {
    position: relative;
    z-index: 2;
}


.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--color-yellow);
}

/* What Makes Us Different Section */
.different-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.different-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.03;
    border-radius: 50%;
}

.different-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    opacity: 0.03;
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Difference Cards */
.difference-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.difference-card:hover::before {
    transform: scaleX(1);
}

.difference-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(1, 52, 91, 0.15);
    border-color: var(--color-primary);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1;
    transition: var(--transition);
}

.difference-card:hover .card-number {
    color: rgba(1, 52, 91, 0.1);
    transform: scale(1.1);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--color-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.difference-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.card-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.card-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .different-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .difference-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .card-number {
        font-size: 2.5rem;
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .card-icon-wrapper i {
        font-size: 1.8rem;
    }

    .different-section {
        padding: 50px 0;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays */
.difference-card:nth-child(1) { animation-delay: 0.1s; }
.difference-card:nth-child(2) { animation-delay: 0.2s; }
.difference-card:nth-child(3) { animation-delay: 0.3s; }
.difference-card:nth-child(4) { animation-delay: 0.4s; }
.difference-card:nth-child(5) { animation-delay: 0.5s; }
.difference-card:nth-child(6) { animation-delay: 0.6s; }

/* Partner Section */
.partner-section {
    position: relative;
    padding: 5rem 0;
    background: url(../images/pro-20.jpg) center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.partner-section .container{
    position: relative;
    z-index: 2;
}

.partner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 2rem;
}

.partner-tag {
    background: var(--color-light);
    color: var(--color-secondary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-yellow);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--color-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.course-card-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 350px;
}
.course-card-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.course-card-wrapper:hover img {
  transform: scale(1.05);
}
.course-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.course-overlay {
  position: absolute;
  inset: 0;
  background: #1a3a6e;
  color: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  border-radius: 12px;
}
.course-card-wrapper:hover .course-overlay {
  opacity: 1;
  transform: translateY(0);
}
.course-card-wrapper:hover .course-label {
  opacity: 0;
}
.course-overlay h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.course-overlay p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
  flex: 1;
}
.course-overlay a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.2s;
}
.course-overlay a:hover { 
    border-color: var(--color-yellow); 
    color: var(--color-yellow);
    transform: translateX(4px);
    transition: all 0.3s ease;
}

/* ── Section wrapper ── */
.partners-section {
    width: 100%;
    max-width: 1200px;
}

/* ── Header ── */
.partners-header {
    text-align: center;
    margin-bottom: 48px;
}

.partners-title {
    font-size: 2.4rem;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 800;
}

.partners-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Swiper container ── */
.swiper-outer {
    position: relative;
    padding: 0 52px;
}

.partners-swiper {
    overflow: hidden;
    border-radius: var(--radius);
}

/* ── Logo card ── */
.logo-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    cursor: default;
}

.logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26, 111, 186, 0.3);
}

.logo-card:hover::before { opacity: 1; }

.logo-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.85);
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-card:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ── SVG placeholder logos (inline) ── */
.logo-svg-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* ── Navigation arrows ── */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: var(--color-light);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow);
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-light);
    border-color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(26,111,186,0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 12px !important;
    font-weight: 700;
    color: var(--color-primary);
    transition: color 0.2s;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after { color: #fff; }


/* ── Trust badge row ── */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    margin-bottom: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
}

.trust-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border);
}

.skill-card:hover span, .skill-card:hover i {
    color: #ffffff !important;
}

.skill-card:hover {
    background: var(--color-secondary) !important;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,97,140,0.3);
    transition: all 0.3s ease;
}

.join-card{
    transition: all 0.3s ease;
}
.join-card:hover{
    background: var(--color-secondary) !important;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,97,140,0.3);
}
.join-card:hover i{
    color: white !important;
}
.join-card:hover h5,
.join-card:hover p{
    color: white !important;
}

/* ==========================================
   UNIFIED PREMIUM FORM & COMPONENT STYLING SYSTEM
   ========================================== */

/* --- Centralized Form Container --- */
.form-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(1, 52, 91, 0.06);
    border: 2px solid rgba(26, 111, 186, 0.08);
    transition: var(--transition);
}

.form-container:hover {
    box-shadow: 0 20px 50px rgba(1, 52, 91, 0.1);
    border-color: rgba(26, 111, 186, 0.15);
}

.form-container h2,
.form-container h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.form-container .subtitle,
.form-container p {
    text-align: center;
    color: #666666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* --- Form Layout Wrappers --- */
.form-group {
    margin-bottom: 1.75rem;
}

.form-label,
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-label .required,
.form-group label .required {
    color: var(--color-secondary);
    margin-left: 2px;
}

/* --- Premium Inputs & Selects --- */
.form-control,
.form-select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--color-dark);
    background: #fdfdfd;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(1, 52, 91, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* --- Custom Checkbox Group --- */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 2rem;
    padding: 0.25rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #cbd5e1;
    cursor: pointer;
    margin-top: 2px;
    accent-color: var(--color-primary);
    transition: var(--transition);
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

/* --- High-Fidelity Validation Feedback States --- */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #ef4444 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5' stroke-width='1'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4v3.6h-.4zM6 8.4a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.25rem) center;
    background-size: calc(0.85em + 0.35rem) calc(0.85em + 0.35rem);
    padding-right: calc(1.6em + 0.8rem) !important;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #22c55e !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2322c55e' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.25rem) center;
    background-size: calc(0.85em + 0.35rem) calc(0.85em + 0.35rem);
    padding-right: calc(1.6em + 0.8rem) !important;
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12) !important;
}

/* --- Elevated Action Buttons --- */
.submit-btn {
    width: 100%;
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    background: var(--color-primary);
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(1, 52, 91, 0.15);
}

.submit-btn:hover {
    background: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 99, 31, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(236, 99, 31, 0.15);
}

/* --- SweetAlert2 Premium Theming Styles --- */
.premium-swal-popup {
    border-radius: 20px !important;
    padding: 2.5rem 2rem !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(26, 111, 186, 0.1) !important;
}

.premium-swal-button {
    padding: 0.8rem 2.2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 12px rgba(1, 52, 91, 0.15) !important;
}

.premium-swal-button:hover {
    transform: translateY(-2px) !important;
}

/* ==========================================
   PAGE-SPECIFIC COMPONENT STYLES
   ========================================== */

/* --- 1. Contact Page Components --- */
.contact-hero {
    padding: 100px 0 80px;
    margin-top: 80px;
    color: white;
    overflow: hidden !important;
    position: relative;
    background: url(../images/hero-6.png) center/cover no-repeat;
    text-align: center;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-yellow);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: var(--color-light);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(1, 52, 91, 0.15);
    border-color: var(--color-primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-card p {
    color: #666;
    text-align: center;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.contact-info-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--color-secondary);
}

.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.map-section {
    padding: 80px 0;
    background: var(--color-light);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.cta-bottom {
    background: var(--color-gradient);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-bottom h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-bottom p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-white {
    background: white;
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-white:hover {
    background: var(--color-yellow);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- 2. Join Now (Bootcamp) Page Components --- */
.page-hero {
    background: linear-gradient(135deg, rgba(1, 52, 91, 0.5) 0%, rgba(236, 99, 31, 0.6) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 140px 0 80px;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.become-partner-hero {
    background: linear-gradient(135deg, rgba(1, 52, 91, 0.5) 0%, rgba(236, 99, 31, 0.6) 100%),
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat !important;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-yellow);
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.what-you-gain {
    padding: 80px 0;
    background: white;
}

.gain-item {
    background: var(--color-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--color-primary);
}

.gain-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--color-secondary);
}

.gain-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gain-icon i {
    font-size: 1.5rem;
    color: white;
}

.gain-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.gain-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.application-process {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--color-yellow);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.7;
}

.application-form-section {
    padding: 80px 0;
    background: var(--color-light);
}

/* --- 3. Become a Partner Page Components --- */
.benefit-card {
    background: var(--color-light);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid var(--color-primary);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ==========================================
   RESPONSIVE DESIGN ADAPTATIONS (@media)
   ========================================== */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-container h2,
    .form-container h3 {
        font-size: 1.75rem;
    }

    .contact-hero {
        padding: 80px 0 60px;
        margin-top: 60px;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.05rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .contact-section,
    .contact-form-section,
    .map-section,
    .what-you-gain,
    .application-process,
    .application-form-section {
        padding: 50px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-white {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}