    /* ==================== GLOBAL STYLES ==================== */
    body {
        font-family: Arial, sans-serif;
        background: linear-gradient(to bottom, #fff7f0, #fde5c0ff);
        min-height: 100vh;
        margin: 0;
        padding: 0;
    }

    /* ==================== NAVBAR ==================== */
    .navbar {
        padding: 1rem 2rem;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .navbar-brand img {
        height: 50px;
    }
    .dropdown .btn-warning {
        border-radius: 8px;
        background-color: #ff6600;
        padding: 5px 10px;
        font-weight: bold;
        box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }
    .dropdown-menu {
        min-width: 160px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* ==================== CARDS ==================== */
    .card-section {
        background: linear-gradient(to bottom, #fde5c0ff, #fff7f0);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 12px;
        padding: 15px;
    }
    .stats-box {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        font-weight: bold;
        font-size: 14px;
        word-wrap: break-word;
    }
    .cm-section {
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 15px;
    }
    .about-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        height: 100%;
        padding: 15px;
        text-align: center;
    }
    .about-card img {
        max-width: 60px;
        margin-bottom: 15px;
    }

    /* style for event info */
    .event-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .event-info img {
        width: 70px;
        height: 70px;
        transition: 0.3s;
    }

    .event-info h2 {
        color: #ff6600;
        font-weight: bold;
        margin: 0;
        font-size: 24px;
    }

    .event-info p {
        color: #000;
        font-weight: bold;
        margin: 0;
        font-size: 16px;
    }

    @media (max-width: 600px) {
        .event-info img {
        width: 40px;
        height: 40px;
        }

        .event-info h2 {
        font-size: 18px;
        }

        .event-info p {
        font-size: 12px;
        }

        .event-info {
        flex-wrap: nowrap;
        gap: 5px;
        }
    }

    /* ==================== BUTTONS ==================== */
    .btn-orange {
        background-color: #ff6600;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .btn-orange:hover {
        background-color: #e55b00;
    }
    .btn-orange-outline {
        background-color: #fff;
        color: #ff6600;
        border: 2px solid #ff6600;
        padding: 5px 20px;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    .btn-orange-outline:hover {
        background-color: #ff6600;
        color: #fff;
        border-color: #ff6600;
    }

    /* ==================== HOVER GRADIENTS ==================== */
    .gradient-organizer:hover {
        background: linear-gradient(to bottom, #800080, #ffffff);
    }
    .gradient-judge:hover {
        background: linear-gradient(to bottom, #008080, #ffffff);
    }
    .gradient-participant:hover {
        background: linear-gradient(to bottom, #ff6600, #ffffff);
    }

    /* ==================== REGISTRATION & LOGIN ==================== */
    .page-title {
        text-align: center;
        margin-top: 20px;
    }
    .page-title span {
        background: #fff;
        color: #ff6600;
        font-weight: bold;
        padding: 5px 15px;
        border-radius: 5px;
    }
    .page-subtext {
        text-align: center;
        margin-top: 10px;
        font-size: 18px;
    }

    .registration-box,
    .login-box {
        max-width: 400px;
        margin: 15px auto;
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #ff6600;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        text-align: center;
    }

    .profile-icon {
        font-size: 48px;
        background: linear-gradient(45deg, #ff6600, #ffcc33);
        -webkit-background-clip: text; /* required for Chrome, Safari */
        -webkit-text-fill-color: transparent; /* required for Chrome, Safari */
        background-clip: text; /* for Firefox (currently works only in some versions) */
        color: transparent; /* fallback for other browsers */
        display: inline-block;
    }

    /* ==================== FORM STYLES ==================== */
    .form-label {
        font-weight: bold;
        font-size: 14px;
    }
    .form-control {
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    }
    .form-check-label {
        font-size: 12px;
    }
    .form-check-label a {
        color: blue;
        text-decoration: none;
        font-weight: 500;
    }
    .form-check-label a:hover {
        text-decoration: underline;
    }
    .otp-timer {
        font-size: 14px;
        color: #666;
        text-align: right;
    }

    /* ==================== CUSTOM CHECKBOX ==================== */
    .custom-check {
        width: 18px;
        height: 18px;
        cursor: pointer;
        border: 2px solid black;
        border-radius: 4px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        transition: all 0.2s ease;
    }
    .custom-check.checked {
        background-color: #ff6600;
    }
    .custom-check.checked::after {
        content: '✓';
        color: white;
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* ==================== RESPONSIVE STYLES ==================== */
    @media (max-width: 768px) {
        .event-info {
            margin-top: 5px;
        }
        .card-section {
            text-align: center;
        }
        .card-section .stats-box {
            margin-bottom: 2px;
        }
        .cm-section blockquote {
            text-align: center;
        }
    }

    /* ==================== ANNIMATION STYLES ==================== */
    .heritage-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
        border-radius: 15px;
    }
    .heritage-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    .heritage-img img {
        transition: transform 0.6s ease;
    }
    .heritage-card:hover .heritage-img img {
        transform: scale(1.08);
    }

    .heritage-text h5 {
        color: #ff6600;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    .heritage-card:hover .heritage-text h5 {
        color: #e64a19;
    }

    .heritage-text p {
        font-size: 14px;
        opacity: 0.85;
    }

    .heritage-text {
        text-align: center;
    }
    .btn-orange-outline {
        border: 1px solid #ff6600;
        color: #ff6600;
        border-radius: 20px;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: 10px;
    }
    .btn-orange-outline:hover {
        background: #ff6600;
        color: #fff;
    }

    .section-animate {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease-out;
    }
    .section-animate.active {
        opacity: 1;
        transform: translateY(0);
    }

    
    /* ==================== NAVBAR CUSTOM RESPONSIVE ==================== */
    .navbar-subtitle {
        font-size: 12px;
        color: #000;
        font-weight: normal;
    }

    .navbar-nav {
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .navbar-nav .nav-item {
        margin-left: 3px;
        margin-right: 3px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 5px 8px;
        white-space: nowrap;
    }

    .navbar-brand {
        max-width: 280px;
        min-width: 250px;
    }

    .navbar-brand .ms-2 {
        line-height: 1.1;
    }

    @media (max-width: 1200px) {
        .navbar-nav .nav-link {
            font-size: 13px;
            padding: 0.5rem 0.6rem;
        }
        
        .navbar-brand {
            max-width: 250px;
            min-width: 220px;
        }
        
        .navbar-brand img {
            height: 45px;
        }
    }

    @media (max-width: 992px) {
        .navbar {
            padding: 0.8rem 1rem;
        }
        
        .navbar-nav {
            margin-top: 1rem;
            margin-bottom: 1rem;
        }
        
        .navbar-nav .nav-item {
            margin: 0.2rem 0;
        }
        
        .navbar-nav .nav-link {
            padding: 0.5rem 1rem;
            text-align: center;
            border-bottom: 1px solid #f8f9fa;
        }
        
        .navbar-collapse {
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .navbar {
            padding: 0.8rem 1rem;
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .navbar-brand {
            max-width: 220px;
            min-width: 200px;
        }
        
        .navbar-subtitle {
            font-size: 11px;
            line-height: 1.3;
            display: block;
        }
        
        .navbar .navbar-toggler {
            margin-left: 5px;
        }
        
        .navbar .d-flex img {
            height: 35px; /* smaller extra logo */
        }
        
        #loginDropdownMobile {
            display: inline-block;   
            margin: 0 auto;      
        }
        
        /* Reduce font size for mobile */
        .navbar-brand .ms-2 div:first-child {
            font-size: 16px !important;
        }
    }

    /* Extra small devices */
    @media (max-width: 576px) {
        .navbar-brand {
            max-width: 200px;
            min-width: 180px;
        }
        
        .navbar-brand img {
            height: 35px;
        }
        
        .navbar-brand .ms-2 div:first-child {
            font-size: 14px !important;
        }
        
        .navbar-brand .ms-2 span {
            font-size: 10px !important;
        }
        
        .navbar-subtitle {
            font-size: 10px !important;
        }
    }

    /* Ensure login dropdown stays aligned */
    .navbar .dropdown {
        margin-left: 0.5rem;
    }

    /* Compact the navbar brand text spacing */
    .navbar-brand .ms-2 div:first-child {
        margin-bottom: 0;
        line-height: 1.1;
    }

    .navbar-brand .ms-2 span {
        line-height: 1.1;
        display: inline-block;
    }

    .navbar-brand .navbar-subtitle {
        margin-top: 1px;
        line-height: 1.2;
    }

    .sponsors-section {
        background: linear-gradient(135deg, #fff9f2, #fff0e6);
        margin-top: 30px;
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
        border: 1px solid #ffe0cc;
    }
    /* Sponsors slider styles */
    .sponsors-slider-container {
        position: relative;
        overflow: hidden;
        padding: 20px 0;
    }
    
    .sponsors-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }
    
    .sponsor-slide {
        flex: 0 0 33.333%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .sponsor-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        padding: 20px;
        text-align: center;
        transition: transform 0.3s ease;
        height: 100%;
    }
    
    .sponsor-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    
    .sponsor-logo {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .sponsor-logo img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .sponsor-slide {
            flex: 0 0 50%;
        }
    }
    
    @media (max-width: 576px) {
        .sponsor-slide {
            flex: 0 0 100%;
        }
    }

    /* Gallery slider styles */
    .gallery-slider-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .gallery-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-slide img {
        height: 400px;
        object-fit: cover;
        width: 100%;
    }

    .small-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        transition: all 0.3s ease;
        height: 100%;
    }

    .small-card:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }
    
    /* Minister section styles */
    .minister-card {
        background: linear-gradient(135deg, #fff7f2, #ffe0cc);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }
    
    .minister-img-container {
        position: relative;
        display: inline-block;
        max-width: 55%;
    }
    
    .minister-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        margin-top: 10px;
    }
    
    .minister-title {
        background-color: #ff6600;
        color: #fff;
        padding: 5px 12px;
        border-radius: 0 0 8px 8px;
        font-weight: bold;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .minister-content {
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .stats-box {
        padding: 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* PDF Modal Styles */
    .pdf-modal .modal-dialog {
        max-width: 95%;
        height: 95vh;
    }
    
    .pdf-modal .modal-content {
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .pdf-modal .modal-header {
        background: #ff6600;
        color: white;
        border-bottom: none;
        padding: 12px 20px;
    }
    
    .pdf-modal .modal-body {
        padding: 0;
        height: calc(100% - 60px);
        overflow: hidden;
    }
    
    .pdf-modal iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .pdf-modal .btn-close {
        filter: invert(1);
        opacity: 0.8;
    }
    
    .pdf-modal .btn-close:hover {
        opacity: 1;
    }
    
    /* Awards Modal Styles - FIXED FOR MOBILE */
    .awards-modal .modal-dialog {
        max-width: 800px;
    }
    
    .awards-modal .modal-header {
        background: linear-gradient(135deg, #ff6600, #ff9933);
        color: white;
        border-bottom: none;
    }
    
    .awards-modal .modal-body {
        padding: 25px;
    }
    
    .award-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 7px;
        padding: 10px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }
    
    .award-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .award-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        font-size: 20px;
        color: white;
    }
    
    .award-content {
        flex: 1;
    }
    
    .award-title {
        font-weight: bold;
        color: #ff6600;
        margin-bottom: 5px;
        font-size: 16px;
    }
    
    .award-description {
        color: #555;
        margin: 0;
        line-height: 1.5;
    }
    
    /* Mobile Responsive Styles - FIXED FOR PDF AND AWARDS */
    @media (max-width: 768px) {
        .pdf-modal .modal-dialog {
            max-width: 100%;
            height: 100vh;
            margin: 0;
        }
        
        .pdf-modal .modal-content {
            border-radius: 0;
        }
        
        .pdf-modal .modal-header {
            padding: 10px 15px;
        }
        
        .pdf-modal .modal-title {
            font-size: 16px;
        }
        
        /* Fix for PDF display on mobile */
        .pdf-modal iframe {
            -webkit-overflow-scrolling: touch;
        }
        
        .awards-modal .modal-dialog {
            margin: 10px;
        }
        
        /* FIXED: Award items alignment on mobile */
        .award-item {
            flex-direction: row;
            text-align: left;
            align-items: center;
            padding: 12px 15px;
        }
        
        .award-icon {
            margin-right: 12px;
            margin-bottom: 0;
            width: 45px;
            height: 45px;
            font-size: 18px;
        }
        
        .award-content {
            flex: 1;
        }
        
        .award-title {
            font-size: 15px;
        }
        
        .award-description {
            font-size: 13px;
        }
    }
    
    @media (max-width: 576px) {
        .pdf-modal .modal-header {
            padding: 8px 12px;
        }
        
        .pdf-modal .modal-title {
            font-size: 14px;
        }
        
        .awards-modal .modal-body {
            padding: 15px;
        }
        
        /* FIXED: Further adjustments for very small screens */
        .award-item {
            padding: 10px 12px;
        }
        
        .award-icon {
            width: 40px;
            height: 40px;
            font-size: 16px;
            margin-right: 10px;
        }
        
        .award-title {
            font-size: 14px;
        }
        
        .award-description {
            font-size: 12px;
        }
    }

    /* Heritage slider styles - maintaining original card size */
    .heritage-slider-container {
        position: relative;
        overflow: hidden;
        padding: 10px 0;
    }

    .heritage-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    .heritage-slide {
        flex: 0 0 25%; /* 4 cards per view on desktop to match original layout */
        padding: 0 12px;
        box-sizing: border-box;
    }

    .heritage-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
        border-radius: 15px;
        height: 100%;
    }
    .heritage-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    .heritage-img img {
        transition: transform 0.6s ease;
        width: 100%;
        height: 180px; /* Fixed height to match original */
        object-fit: cover;
    }
    .heritage-card:hover .heritage-img img {
        transform: scale(1.08);
    }

    .heritage-text h5 {
        color: #ff6600;
        font-weight: bold;
        transition: color 0.3s ease;
        font-size: 18px; /* Matching original size */
        margin-bottom: 10px;
    }
    .heritage-card:hover .heritage-text h5 {
        color: #e64a19;
    }

    .heritage-text p {
        font-size: 14px;
        opacity: 0.85;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .heritage-text {
        text-align: center;
        padding: 15px;
    }

    /* Responsive adjustments for heritage slider */
    @media (max-width: 992px) {
        .heritage-slide {
            flex: 0 0 50%;
        }
    }

    @media (max-width: 768px) {
        .heritage-slide {
            flex: 0 0 100%; 
        }
        
        .heritage-img img {
            height: 200px;
        }
    }

    /* Ensure original card styling is preserved */
    .heritage-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        height: 100%;
        overflow: hidden;
    }

    .btn-orange-outline {
        background-color: #fff;
        color: #ff6600;
        border: 2px solid #ff6600;
        padding: 5px 20px;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }
    .btn-orange-outline:hover {
        background-color: #ff6600;
        color: #fff;
        border-color: #ff6600;
    }

    /* video style */
    .step-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
    }
    .step-item:hover {
    transform: translateY(-3px);
    border-color: #ff9933;
    box-shadow: 0 6px 18px rgba(255,102,0,0.15);
    }
    .step-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    }
    .step-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    }
    .step-text {
    flex: 1;
    }
    .step-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
    font-size: 1.05rem;
    }
    .step-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    }
    .step-right {
    text-align: center;
    color: #d9534f;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    }
    .step-right i {
    font-size: 26px;
    display: block;
    }

    /* Video Section */
    .video-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    .video-container video {
    width: 100%;
    height: auto;
    }

    /* Responsive Fixes */
    @media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }
    .step-left {
        flex-direction: column;
        align-items: center;
    }
    .step-icon {
        margin-bottom: 8px;
    }
    .step-text {
        margin-bottom: 10px;
    }
    .step-right i {
        font-size: 24px;
    }
    }



    /* Custom styles for the geeta advertisement */
         /* Geeta Advertisement Styles */
        .geeta-ad-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            max-width: 280px;
            width: 100%;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            animation: adEntrance 0.8s forwards 0.5s, floatNormal 4s ease-in-out infinite 1.3s;
        }
        
        @keyframes adEntrance {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes floatNormal {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        .geeta-ad-card {
            background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 0 1px rgba(255, 102, 0, 0.1);
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .geeta-ad-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(255, 102, 0, 0.2);
        }
        
        .geeta-ad-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            font-size: 12px;
        }
        
        .geeta-ad-close:hover {
            background: rgba(0,0,0,0.9);
            transform: scale(1.15) rotate(90deg);
        }
        
        .geeta-ad-minimize-btn {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            font-size: 12px;
        }
        
        .geeta-ad-minimize-btn:hover {
            background: rgba(0,0,0,0.9);
            transform: scale(1.15);
        }
        
        .geeta-ad-image-container {
            position: relative;
            overflow: hidden;
            height: 140px;
        }
        
        .geeta-ad-image {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .geeta-ad-card:hover .geeta-ad-image {
            transform: scale(1.05);
        }
        
        .geeta-ad-content {
            padding: 16px;
            text-align: center;
            background: linear-gradient(to bottom, #fff, #f8f8f8);
        }
        
        .geeta-ad-title {
            color: #ff6600;
            font-weight: 800;
            font-size: 18px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
            letter-spacing: 0.5px;
        }
        
        .geeta-ad-subtitle {
            color: #555;
            font-size: 13px;
            font-weight: 500;
        }
        
        .geeta-ad-link {
            display: inline-block;
            background: linear-gradient(135deg, #ff6600, #e55a00);
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .geeta-ad-link:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.5s ease;
        }
        
        .geeta-ad-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
        }
        
        .geeta-ad-link:hover:before {
            left: 100%;
        }
        
        .geeta-ad-minimized {
            transform: translateX(calc(100% - 50px));
            opacity: 0.7;
            animation: floatMinimized 4s ease-in-out infinite !important;
        }
        
        .geeta-ad-minimized .geeta-ad-card {
            transform: scale(0.85);
        }
        
        .geeta-ad-minimized:hover {
            opacity: 1;
        }
        
        .geeta-ad-minimized .geeta-ad-minimize-btn {
            transform: rotate(180deg);
        }
        
        @keyframes floatMinimized {
            0%, 100% {
                transform: translateX(calc(100% - 50px)) translateY(0);
            }
            50% {
                transform: translateX(calc(100% - 50px)) translateY(-5px);
            }
        }
        
        .geeta-ad-decoration {
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ff6600, #ff9933, #ff6600);
            bottom: 0;
            left: 0;
            z-index: 5;
        }
        
        .geeta-ad-flare {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 25px;
            height: 25px;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,102,0,0.5) 70%, transparent 100%);
            border-radius: 50%;
            filter: blur(4px);
            z-index: 1;
            animation: flarePulse 3s infinite alternate;
        }
        
        @keyframes flarePulse {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.2);
            }
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .geeta-ad-container {
                max-width: 250px;
                bottom: 15px;
                right: 15px;
            }
            
            .geeta-ad-image-container {
                height: 120px;
            }
            
            .geeta-ad-content {
                padding: 14px;
            }
            
            .geeta-ad-title {
                font-size: 16px;
            }
            
            .geeta-ad-subtitle {
                font-size: 12px;
            }
            
            .geeta-ad-link {
                padding: 7px 16px;
                font-size: 11px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .geeta-ad-container {
                max-width: 220px;
                bottom: 10px;
                right: 10px;
            }
            
            .geeta-ad-image-container {
                height: 100px;
            }
            
            .geeta-ad-content {
                padding: 12px;
            }
            
            .geeta-ad-title {
                font-size: 15px;
            }
            
            .geeta-ad-minimized {
                transform: translateX(calc(100% - 45px));
            }
            
            @keyframes floatMinimized {
                0%, 100% {
                    transform: translateX(calc(100% - 45px)) translateY(0);
                }
                50% {
                    transform: translateX(calc(100% - 45px)) translateY(-5px);
                }
            }
        }

.registration-notice {
            background: linear-gradient(90deg, #fff0d9, #fffaf2);
            border-left: 4px solid #8B0100;
            border-right: 4px solid #8B0100;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(139, 1, 0, 0.15);
            padding: 7px 10px;
            text-align: center;
            font-size: 18px;
            color: #333;
            margin: 10px auto;
            max-width: 700px;
            width: 100%;
            position: relative;
            overflow: hidden;
            animation: flexing 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .registration-notice:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(139, 1, 0, 0.25);
        }

        .notice-header {
            color: #8B0100;
            font-weight: 700;
            margin-right: 15px;
            display: inline-flex;
            align-items: center;
            animation: pulse 2s infinite;
        }

        .notice-header i {
            margin-right: 8px;
            font-size: 20px;
        }

        .notice-text {
            font-weight: 600;
            display: inline;
	    font-size: 14px;
        }

        /* Decorations */
        .decoration {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(139, 1, 0, 0.05);
            z-index: 0;
        }

        .decoration-1 {
            top: -30px;
            left: -30px;
            animation: float 8s ease-in-out infinite;
        }

        .decoration-2 {
            bottom: -40px;
            right: -30px;
            animation: float 10s ease-in-out infinite 1s;
        }

        /* Progress bar */
        .progress-bar {
            height: 4px;
            background: rgba(139, 1, 0, 0.2);
            border-radius: 2px;
            margin-top: 15px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            width: 30%;
            background: #8B0100;
            border-radius: 2px;
            animation: progress 3s ease-in-out infinite;
        }

        /* Floating icons */
        .floating-icons {
            position: absolute;
            top: 8px;
            right: 15px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .floating-icons i {
            color: #8B0100;
            opacity: 0.7;
            animation: bounce 2s infinite;
        }

        .floating-icons i:nth-child(2) {
            animation-delay: 0.3s;
        }

        .floating-icons i:nth-child(3) {
            animation-delay: 0.6s;
        }

        /* Animations */
        @keyframes flexing {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(139, 1, 0, 0.15); }
            50% { transform: scale(1.02); box-shadow: 0 15px 35px rgba(139, 1, 0, 0.25); }
        }

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

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

        @keyframes progress {
            0% { width: 10%; }
            50% { width: 70%; }
            100% { width: 10%; }
        }

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

        /* ✅ Responsive fix for small screens */
        @media (max-width: 600px) {
            .registration-notice {
                padding: 10px 6px 6px;
                font-size: 13px;
            }

            .floating-icons {
                position: relative;
                justify-content: center;
                top: 0;
                right: 0;
                margin-bottom: 6px;
            }

            .notice-header {
                display: block;
                margin-right: 0;
                margin-bottom: 2px;
            }

            .notice-text {
                display: block;
            }
        }
