*{
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', 'Times New Roman', Times, serif;
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider {
    position: relative;
    margin-top: 56px;
}

#carouselExampleCaptions {
    overflow: hidden;
}

#carouselExampleCaptions .carousel-inner {
    height: 85vh;
    min-height: 500px;
}

#carouselExampleCaptions .carousel-item {
    height: 100%;
    transition: transform 1.2s ease-in-out;
}

/* Image styling with object-fit */
#carouselExampleCaptions .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient overlay for better text readability */
#carouselExampleCaptions .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 42, 102, 0.85) 0%,
        rgba(10, 42, 102, 0.6) 50%,
        rgba(30, 75, 184, 0.4) 100%
    );
    z-index: 1;
}

/* Carousel caption container */
#carouselExampleCaptions .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 900px;
    padding: 0;
}

/* Caption content animation - Initial state */
#carouselExampleCaptions .carousel-item.active .carousel-caption > * {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 0.8s ease forwards;
}

/* Staggered animation delays */
#carouselExampleCaptions .carousel-item.active .carousel-caption h5 {
    animation-delay: 0.2s;
}

#carouselExampleCaptions .carousel-item.active .carousel-caption p {
    animation-delay: 0.4s;
}

#carouselExampleCaptions .carousel-item.active .carousel-caption .cta-buttons {
    animation-delay: 0.6s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Caption heading */
#carouselExampleCaptions .carousel-caption h5 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Caption paragraph */
#carouselExampleCaptions .carousel-caption p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons container */
#carouselExampleCaptions .carousel-caption .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary CTA Button */
.cta-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #0a2a66;
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ffa500 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    color: #0a2a66;
}

/* Secondary CTA Button */
.cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-4px);
    color: #ffffff;
}

/* Carousel Indicators */
#carouselExampleCaptions .carousel-indicators {
    bottom: 40px;
    z-index: 3;
}

#carouselExampleCaptions .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.4s ease;
    cursor: pointer;
}

#carouselExampleCaptions .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

#carouselExampleCaptions .carousel-indicators button.active {
    background-color: #ffd700;
    border-color: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Carousel Navigation Arrows */
#carouselExampleCaptions .carousel-control-prev,
#carouselExampleCaptions .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 3;
    opacity: 0.8;
    transition: all 0.4s ease;
    background: rgba(10, 42, 102, 0.5);
    border-radius: 50%;
    margin: 0 30px;
}

#carouselExampleCaptions .carousel-control-prev {
    left: 20px;
}

#carouselExampleCaptions .carousel-control-next {
    right: 20px;
}

#carouselExampleCaptions .carousel-control-prev:hover,
#carouselExampleCaptions .carousel-control-next:hover {
    opacity: 1;
    background: rgba(10, 42, 102, 0.8);
    transform: translateY(-50%) scale(1.1);
}

#carouselExampleCaptions .carousel-control-prev-icon,
#carouselExampleCaptions .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 992px) {
    #carouselExampleCaptions .carousel-inner {
        height: 70vh;
        min-height: 450px;
    }

    #carouselExampleCaptions .carousel-caption h5 {
        font-size: 40px;
    }

    #carouselExampleCaptions .carousel-caption p {
        font-size: 18px;
    }

    #carouselExampleCaptions .carousel-control-prev,
    #carouselExampleCaptions .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    #carouselExampleCaptions .carousel-inner {
        height: 60vh;
        min-height: 400px;
    }

    #carouselExampleCaptions .carousel-caption {
        top: 55%;
    }

    #carouselExampleCaptions .carousel-caption h5 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    #carouselExampleCaptions .carousel-caption p {
        font-size: 15px;
        margin-bottom: 25px;
        display: none;
    }

    #carouselExampleCaptions .carousel-caption .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    #carouselExampleCaptions .carousel-caption .cta-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    #carouselExampleCaptions .carousel-indicators {
        bottom: 25px;
    }

    #carouselExampleCaptions .carousel-indicators button {
        width: 10px;
        height: 10px;
    }

    #carouselExampleCaptions .carousel-control-prev,
    #carouselExampleCaptions .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    #carouselExampleCaptions .carousel-control-prev-icon,
    #carouselExampleCaptions .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    #carouselExampleCaptions .carousel-inner {
        height: 55vh;
        min-height: 350px;
    }

    #carouselExampleCaptions .carousel-caption h5 {
        font-size: 22px;
    }
}

/* Original Hero (deprecated - kept for reference)
.hero{
    background:linear-gradient(to right,#0a2a66,#1e4bb8);
    color:white;
    text-align:center;
    padding:100px 20px;
}

.hero h1{
    font-size:40px;
}

.hero p{
    margin-top:15px;
    font-size:18px;
}

.hero button{
    margin-top:25px;
    padding:12px 25px;
    background:white;
    color:#0a2a66;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-weight:bold;
}

.hero button:hover{
    background:#ffd700;
}
*/

/* FOOTER */
footer{
    background:#0a2a66;
    color:white;
    text-align:center;
    padding:15px;
}

/* NAVBAR */
.navbar{
    background-color: #0a2a66;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* GPU Acceleration for smoother animations */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.navbar .container-fluid {
    padding: 0 30px;
}

/* Brand/Logo Styling */
.navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: #ffd700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.navbar-brand:hover {
    color: #ffd700 !important;
    transform: scale(1.02);
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Cross icon when menu is open */
.navbar-toggler.show .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}

/* Nav Links Base */
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px !important;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
    letter-spacing: 0.5px;
    will-change: transform;
}

/* Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffd700;
    transition: width 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%);
    will-change: width;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 8px;
    margin-top: 10px;
    /* Use transform for smoother GPU-accelerated animation */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    /* Prevent scrolling inside dropdown menus */
    max-height: none;
    overflow: hidden;
    /* GPU acceleration */
    will-change: transform, opacity;
}

.dropdown-menu:not(.show) {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.dropdown-item {
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
    color: #fff !important;
    padding-left: 25px;
}

.dropdown-item.active,
.dropdown-item:active {
    background: #0a2a66;
    color: #fff !important;
}

/* Dropdown Arrow */
.dropdown-toggle::after {
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

/* Search Form */
.navbar .d-flex {
    gap: 10px;
}

.navbar .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 180px;
}

.navbar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.navbar .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 220px;
}

.navbar .btn-outline-light {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #0a2a66;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Nav Item Spacing */
.nav-item {
    margin: 0 3px;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar .container-fluid {
        padding: 0 15px;
    }
    
    .navbar-collapse {
        background: #0a2a66;
        padding: 20px;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-link {
        padding: 12px 15px !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar .form-control {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .navbar .form-control:focus {
        width: 100%;
    }
    
    .navbar .d-flex {
        flex-direction: column;
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 5px;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 18px;
    }
}

/* Navbar Scroll Effect (optional - add class 'scrolled' via JS) */
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .navbar-brand {
    font-size: 20px;
}

/* about */
    .featurette{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0px 10% 10px 10%;
        gap:50px;
        margin-top: 15px;
    }

    .featurette-text{
        flex:1;
    }

    .featurette-text h1{
        font-size:48px;
        font-weight:300;
        color:#212529;
        margin-bottom:20px;
        line-height:1.2;
        margin-top: 16px;
    }

    .featurette-text p{
        font-size:18px;
        color:#6c757d;
        line-height:1.6;
    }

    .featurette-image{
        flex:1;
        display:flex;
        justify-content:center;
    }

    .image-box{
        background-image: url('/images/slide1.png');
        background-size: cover;
        width:500px;
        height:500px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:40px;
    }

    @media(max-width:992px){
        .featurette{
            flex-direction:column;
            text-align:center;
        }

        .featurette-text h1{
            font-size:36px;
        }

        .image-box{
            width:300px;
            height:300px;
            font-size:28px;
        }
    }

    .contact-section{
        padding:80px 10%;
        background:#ffffff;
    }

    .contact-title{
        text-align:center;
        margin-bottom:50px;
    }

    .contact-title h2{
        font-size:36px;
        margin-bottom:10px;
        color:#212529;
    }

    .contact-title p{
        color:#6c757d;
        font-size:16px;
    }

    .contact-container{
        display:flex;
        gap:50px;
        justify-content:space-between;
        flex-wrap:wrap;
    }

    .contact-info{
        flex:1;
        min-width:280px;
    }

    .contact-info h3{
        margin-bottom:20px;
        color:#212529;
    }

    .contact-info p{
        margin-bottom:15px;
        color:#6c757d;
    }

    .contact-form{
        flex:1;
        min-width:280px;
    }

    .contact-form form{
        display:flex;
        flex-direction:column;
    }

    .contact-form input,
    .contact-form textarea{
        margin-bottom:15px;
        padding:12px;
        border:1px solid #ced4da;
        border-radius:5px;
        font-size:14px;
        width: 100%;
    }

    .contact-form textarea{
        resize:none;
        height:120px;
    }

    .contact-form button{
        padding:12px;
        background:#0d6efd;
        color:#fff;
        border:none;
        border-radius:5px;
        cursor:pointer;
        font-size:16px;
        transition:0.3s;
    }

    .contact-form button:hover{
        background:#0b5ed7;
    }

    @media(max-width:768px){
        .contact-container{
            flex-direction:column;
        }
    }

    .about-section{
        position:relative;
        padding:60px 10%;
        text-align:center;
        background:#eef3f9;
        overflow:hidden;
    }

    .about-section::before{
        content:"";
        position:absolute;
        width:300px;
        height:300px;
        background:rgba(13,110,253,0.08);
        border-radius:50%;
        top:30px;
        left:-100px;
    }

    .about-section::after{
        content:"";
        position:absolute;
        width:250px;
        height:250px;
        background:rgba(13,110,253,0.05);
        border-radius:50%;
        bottom:30px;
        right:-80px;
    }

    .about-section h2{
        color:#0d3b8e;
        font-size:28px;
        margin-bottom:10px;
        margin-top:20px;
    }

    .about-section h4{
        color:#0d6efd;
        font-size:16px;
        margin-bottom:30px;
    }

    .about-image img{
        max-width:700px;
        width:100%;
        height:auto;
    }

    .about-description{
        max-width:900px;
        margin:30px auto 0;
        color:#6c757d;
        font-size:14px;
        line-height:1.6;
    }

    .floating-buttons{
        position:fixed;
        right:20px;
        bottom:20px;
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .believe-section{
        background:#f4f6f9;
        padding:80px 10%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        position:relative;
        overflow:hidden;
    }

    .believe-text{
        width:50%;
    }

    .believe-text h2{
        color:#1e4a8d;
        font-size:28px;
        margin-bottom:20px;
    }

    .believe-text p{
        color:#6c757d;
        font-size:14px;
        line-height:1.8;
        margin-bottom:15px;
    }

    .believe-graphic{
        width:45%;
        text-align:right;
    }

    .believe-graphic img{
        max-width:100%;
    }

    .lower-section{
        background:#eeeeee;
        padding:60px 15%;
        text-align:center;
    }

    .lower-section p{
        font-size:14px;
        color:#6c757d;
        line-height:1.8;
        margin-bottom:20px;
    }

    .contact-section{
        padding:60px 8%;
        display:flex;
        gap:40px;
        justify-content:space-between;
    }

    .contact-left{
        width:55%;
    }

    .contact-left h2{
        color:#0d3b8e;
        font-size:30px;
        margin-bottom:5px;
    }

    .contact-left p{
        color:#6c757d;
        margin-bottom:30px;
    }

    .contact-form{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap:15px;
    }

    .contact-form input,
    .contact-form textarea{
        padding:12px;
        border:1px solid #dcdcdc;
        border-radius:6px;
        font-size:14px;
        background:#fff;
    }

    .contact-form textarea{
        grid-column: span 2;
        height:100px;
        resize:none;
    }

    .address-field{
        grid-column: span 2;
    }

    .submit-btn{
        margin-top:20px;
        padding:12px 30px;
        background:#2d6cdf;
        color:#fff;
        border:none;
        border-radius:25px;
        cursor:pointer;
        font-weight:bold;
    }

    .social{
        margin-top:40px;
    }

    .social h4{
        margin-bottom:15px;
    }

    .social-icons{
        display:flex;
        gap:15px;
    }

    .social-icons a{
        width:40px;
        height:40px;
        background:#0d3b8e;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        text-decoration:none;
    }

    .contact-right{
        width:40%;
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .info-card{
        background:#fff;
        padding:20px;
        border-radius:10px;
        box-shadow:0 4px 15px rgba(0,0,0,0.05);
    }

    .info-item{
        display:flex;
        gap:15px;
        margin-bottom:15px;
    }

    .info-item i{
        background:#2d6cdf;
        color:#fff;
        padding:10px;
        border-radius:10px;
    }

    .phone-columns{
        display:flex;
        justify-content:space-between;
        margin-top:10px;
    }

    .phone-columns div{
        font-size:14px;
    }

    .tabs{
        display:flex;
        gap:20px;
        margin-bottom:15px;
        border-bottom:1px solid #ddd;
    }

    .tabs span{
        padding-bottom:8px;
        cursor:pointer;
        font-weight:bold;
        color:#2d6cdf;
    }

    .map{
        width:100%;
        height:200px;
        border-radius:8px;
        overflow:hidden;
    }

    iframe{
        width:100%;
        height:100%;
        border:0;
    }

    .course-section{
        padding:60px 8%;
    }

    .course-container{
        display:flex;
        justify-content:space-between;
        gap:40px;
        margin-top: 20px;
    }

    .course-card{
        width:32%;
    }

    .course-card h3{
        font-size:22px;
        margin-bottom:15px;
        color:#333;
        margin-top: 5px;
    }

    .course-card img{
        width:100%;
        height:220px;
        object-fit:cover;
        margin-bottom:15px;
    }

    .course-card p{
        font-size:14px;
        color:#666;
        line-height:1.7;
    }

    .course-list{
        display:flex;
        justify-content:space-between;
        margin:15px 0;
    }

    .course-list ul{
        padding-left:18px;
        font-size:13px;
        color:#2d6cdf;
    }

    .course-list li{
        margin-bottom:6px;
    }

    .read-btn{
        margin-top:15px;
        text-align: center;
    }

    .read-btn button{
        background:#2d6cdf;
        color:#fff;
        border:none;
        padding:10px 25px;
        border-radius:4px;
        cursor:pointer;
        font-size:13px;
    }

    .read-btn button:hover{
        background:#a40000;
    }

    .read-btn .read-more-link {
        background: #2d6cdf;
        color: #fff;
        border: none;
        padding: 10px 25px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 13px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .read-btn .read-more-link:hover {
        background: #0a2a66;
        color: #fff;
    }

    @media(max-width:992px){
        .contact-section{
            flex-direction:column;
        }
        .contact-left,
        .contact-right{
            width:100%;
        }
    }

    @media(max-width:992px){
        .course-container{
            flex-direction:column;
        }

        .course-card{
            width:100%;
        }
    }

    @media(max-width:992px){
        .believe-section{
            flex-direction:column;
            text-align:center;
        }

        .believe-text{
            width:100%;
            margin-bottom:30px;
        }

    .believe-graphic{
        width:100%;
        text-align:center;
    }
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
    color: white;
    padding: 120px 20px 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Enhanced Form Styles */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2d6cdf;
    box-shadow: 0 0 0 3px rgba(45, 108, 223, 0.1);
}

.submit-btn:hover {
    background: #1a4bb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 108, 223, 0.3);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 40px;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
}

/* Service Cards Section - Our Services */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-section h2 {
    text-align: center;
    color: #0a2a66;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.services-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a2a66, #1e4bb8);
    margin: 15px auto 0;
    border-radius: 2px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:nth-child(1) {
    border-top-color: #0a2a66;
}

.service-card:nth-child(2) {
    border-top-color: #1e4bb8;
}

.service-card:nth-child(3) {
    border-top-color: #0d6efd;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(10, 42, 102, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #1e4bb8 0%, #0d6efd 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: #0a2a66;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e4bb8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(30, 75, 184, 0.1) 0%, rgba(13, 110, 253, 0.1) 100%);
    transition: all 0.3s ease;
}

.service-card a:hover {
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
    color: white;
    transform: translateX(5px);
}

.service-card a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.service-card a:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* ===== COURSE DETAIL PAGES ===== */
.course-hero {
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
    padding: 150px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.python-hero {
    background: linear-gradient(135deg, #306998 0%, #FFD43B 100%);
}

.training-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.course-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.course-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.course-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.course-detail-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.course-detail-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.course-detail-main h2 {
    color: #0a2a66;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.course-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.course-detail-main h3 {
    color: #0a2a66;
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.course-features {
    list-style: none;
    padding: 0;
}

.course-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.course-features li::before {
    content: '\2022';
    font-size: 24px;
    position: absolute;
    left: 0;
    color: #0a2a66;
}

.course-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlight-item i {
    font-size: 24px;
    color: #0a2a66;
}

.highlight-item span {
    font-weight: 500;
    color: #333;
}

.course-target {
    list-style: none;
    padding: 0;
}

.course-target li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.course-target li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.course-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.sidebar-card h4 {
    color: #0a2a66;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.sidebar-card ul li {
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.sidebar-card ul li strong {
    color: #0a2a66;
}

.btn-enroll {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: linear-gradient(135deg, #1e4bb8 0%, #0a2a66 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 42, 102, 0.3);
    color: #fff;
}

/* Curriculum Section */
.curriculum-section {
    padding: 60px 0;
    background: #fff;
}

.curriculum-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.curriculum-section h2 {
    text-align: center;
    color: #0a2a66;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background: #fff;
    color: #0a2a66;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #0a2a66;
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background: #f8f9fa;
    padding: 20px;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-body ul li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.accordion-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    left: 0;
    color: #28a745;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 25px;
}

/* Training Options Section */
.training-options-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.training-options-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.training-options-section h2 {
    text-align: center;
    color: #0a2a66;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.option-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.online-card .option-icon {
    background: linear-gradient(135deg, #0a2a66 0%, #1e4bb8 100%);
}

.offline-card .option-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.option-icon i {
    font-size: 32px;
    color: #fff;
}

.option-card h3 {
    color: #0a2a66;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.option-card > p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.option-card ul {
    list-style: none;
    padding: 0;
}

.option-card ul li {
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-card ul li i {
    color: #28a745;
    font-size: 14px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: #fff;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-section h2 {
    text-align: center;
    color: #0a2a66;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #0a2a66;
    transform: translateY(-5px);
}

.feature-box:hover i,
.feature-box:hover h4,
.feature-box:hover p {
    color: #fff;
}

.feature-box i {
    font-size: 36px;
    color: #0a2a66;
    margin-bottom: 15px;
}

.feature-box h4 {
    color: #0a2a66;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive for Course Detail Pages */
@media (max-width: 992px) {
    .course-hero {
        padding: 120px 20px 60px;
    }
    
    .course-hero h1 {
        font-size: 36px;
    }
    
    .course-hero p {
        font-size: 18px;
    }
    
    .course-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .course-detail-sidebar {
        position: static;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .course-hero h1 {
        font-size: 28px;
    }
    
    .course-detail-main h2 {
        font-size: 26px;
    }
    
    .course-highlights {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
