* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
    }
    
    .transition {
        transition: all 0.3s ease;
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    
    /* Moving Ribbon - Continuous Slow Movement */
    .ribbon {
        background: #0a192f; /* Solid Dark Blue */
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        max-height: 0;
        opacity: 0;
        padding: 0;
        animation: showRibbon 0.5s ease forwards;
        
    }
    
    @keyframes showRibbon {
        0% {
            max-height: 0;
            opacity: 0;
            padding-top: 0;
            padding-bottom: 0;
        }
        100% {
            max-height: 50px;
            opacity: 1;
            padding-top: 0.625rem;
            padding-bottom: 0.625rem;
        }
    }
    
    .ribbon-content {
        display: inline-block;
        animation: scrollText 40s linear infinite; /* Slow: 40 seconds for complete scroll */
        white-space: nowrap;
        will-change: transform; /* Smooth performance */
    }
    
    @keyframes scrollText {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    /* For continuous infinite loop - duplicate content in HTML */
    .ribbon:hover .ribbon-content {
        animation-play-state: paused;
    }
    
    /* Amber text highlight */
    .ribbon .highlight {
        color: #fbbf24; /* amber-400 */
        font-weight: bold;
    }
    
    /* Logo Styling */
    .logo-text {
        background: linear-gradient(135deg, #02061a 0%, #101c8c 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 800;
    }
    
    .logo-cpa {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    /* Navbar Glass Effect */
    .glass-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Premium Button */
    .premium-btn {
        background: linear-gradient(135deg, #04091e 0%, #1630b1 100%);
        position: relative;
        overflow: hidden;
    }
    
    .premium-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .premium-btn:hover::before {
        left: 100%;
    }
    
    /* Hover Effects */
    .nav-link {
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #030821 0%, #030724 100%);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    /* Dropdown Menu */
    .dropdown {
        position: relative;
        display: inline-block;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 12px;
        z-index: 1;
        top: 100%;
        left: 0;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 12px 16px;
        display: block;
        transition: all 0.3s;
    }
    
    .dropdown-content a:hover {
        background: linear-gradient(135deg, #0e2799 0%, #020323 100%);
        color: white;
        border-radius: 12px;
    }
    
    /* Mobile Menu Animation */
    .mobile-menu-open {
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Accent Colors */
    .text-amber {
        color: #fbbf24;
    }
    
    .bg-amber {
        background-color: #fbbf24;
    }
    
    .border-amber {
        border-color: #fbbf24;
    }

.cour12cond{
    width: 100%;
    padding: 35px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

.cour12cond h2,
.cour12cond h3{
    color: #152230;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cour12cond h2{
    font-size: 34px;
    position: relative;
    padding-left: 18px;
}

.cour12cond h2::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 80%;
    background: #f59e0b;
    border-radius: 10px;
}

.cour12cond h3{
    font-size: 28px;
    color: #0b8be4;
}

.cour12cond p{
    font-size: 18px;
    color: #444;
    margin-bottom: 18px;
}

.cour12cond strong{
    color: #152230;
    font-weight: 700;
}

.cour12cond ul{
    margin: 20px 0;
    padding-left: 0;
}

.cour12cond ul li{
    list-style: none;
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #333;
    line-height: 1.7;
}

.cour12cond ul li::before{
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: #0b8be4;
    font-size: 16px;
    font-weight: bold;
}

.cour12cond a{
    color: #0b8be4;
    text-decoration: none;
    transition: 0.3s ease;
}

.cour12cond a:hover{
    color: #f59e0b;
}

.cour12cond p:first-child{
    font-size: 19px;
    color: #152230;
}

/* Responsive */

@media(max-width:991px){

    .cour12cond{
        padding: 28px;
    }

    .cour12cond h2{
        font-size: 30px;
    }

    .cour12cond h3{
        font-size: 25px;
    }

    .cour12cond p,
    .cour12cond ul li{
        font-size: 17px;
    }
}

@media(max-width:767px){

    .cour12cond{
        padding: 22px 18px;
        border-radius: 12px;
    }

    .cour12cond h2{
        font-size: 25px;
        padding-left: 14px;
    }

    .cour12cond h2::before{
        width: 5px;
    }

    .cour12cond h3{
        font-size: 22px;
    }

    .cour12cond p,
    .cour12cond ul li{
        font-size: 16px;
        line-height: 1.6;
    }

    .cour12cond ul li{
        padding-left: 24px;
    }
}

@media(max-width:480px){

    .cour12cond h2{
        font-size: 22px;
    }

    .cour12cond h3{
        font-size: 20px;
    }

    .cour12cond p,
    .cour12cond ul li{
        font-size: 15px;
    }
}

.whatsapp-float,
.call-float{
position:fixed;
right:15px;
width:56px;
height:56px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
z-index:9999;
}

.whatsapp-float{
bottom:20px;
background:#25d366;
font-size:30px;
box-shadow:0 0 15px rgba(37,211,102,0.7);
animation:blink 1.5s infinite;
}

.call-float{
bottom:90px;
background:#007bff;
font-size:24px;
box-shadow:0 4px 12px rgba(0,0,0,0.25);
}

@keyframes blink{
0%{
transform:scale(1);
}
50%{
transform:scale(1.08);
}
100%{
transform:scale(1);
}
}

/* Mobile Fix */

@media(max-width:767px){

.whatsapp-float,
.call-float{
right:12px;
width:52px;
height:52px;
}

.whatsapp-float{
font-size:28px;
bottom:18px;
}

.call-float{
font-size:22px;
bottom:80px;
}

}

.course-appointment{
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    width: 100%;
    margin-bottom:20px;
}

.course-appointment h3 { font-size: 23px; font-weight: 700; color: #152230; margin-bottom: 15px; line-height: 1.3; }

.course-appointment form{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.course-appointment .fc{
    width: 100%;
    height: 40px;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 16px;
    color: #152230;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.course-appointment .fc:focus{
    border-color: #0b8be4;
    box-shadow: 0 0 0 4px rgba(11,139,228,0.12);
}

.course-appointment .fc::placeholder{
    color: #888;
}

.course-appointment .btn-sub{
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #f59e0b, #e98d00);
    color: #fff;
    height: 58px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(245,158,11,0.25);
}

.course-appointment .btn-sub:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e98d00, #d97f00);
}

.course-appointment .btn-sub i{
    margin-right: 8px;
}

/* Responsive */

@media(max-width:991px){

    .course-appointment{
        padding: 28px;
    }

    .course-appointment h3{
        font-size: 28px;
    }
}

@media(max-width:767px){

    .course-appointment{
        padding: 24px 18px;
        border-radius: 14px;
    }

    .course-appointment h3{
        font-size: 24px;
        margin-bottom: 20px;
    }

    .course-appointment .fc{
        height: 52px;
        font-size: 15px;
        padding: 0 15px;
    }

    .course-appointment .btn-sub{
        height: 54px;
        font-size: 16px;
        border-radius: 12px;
    }
}

@media(max-width:480px){

    .course-appointment h3{
        font-size: 22px;
    }

    .course-appointment .fc{
        font-size: 14px;
    }

    .course-appointment .btn-sub{
        font-size: 15px;
    }
}

ul.space-y-2, ul.space-y-3.mb-6 { padding-left: 0px; }
.space-y-2 li a {text-decoration:none;}

.footer-bottom-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.copyright-text{
    margin:0;
    color:#9ca3af;
    font-size:15px;
    white-space:nowrap;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:nowrap;
}

.footer-links a{
    color:#9ca3af;
    text-decoration:none;
    transition:0.3s ease;
    white-space:nowrap;
}

.footer-links a:hover{
    color:#f59e0b;
}

.footer-links span{
    color:#4b5563;
}

/* Mobile */

@media(max-width:767px){

    .footer-bottom-wrap{
        flex-direction:column;
        text-align:center;
    }

    .copyright-text{
        white-space:normal;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
    }
}