
        :root {
            --primary: #004a99;
            --secondary: #ffcc00;
            --dark: #1e293b;
            --light: #f8fafc;
            --glass: rgba(255, 255, 255, 0.9);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { background-color: var(--light); overflow-x: hidden; }
      
        @keyframes blinker { 50% { opacity: 0; } }

        /* Top Bar */
        .top-bar { background: var(--primary); color: white; padding: 8px 0; font-size: 13px; }
        .top-flex { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .top-info a { color: white; text-decoration: none; margin-right: 15px; }

        /* Header & Logo */
        header { background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-main { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 10px 20px; }
        .logo-box { display: flex; align-items: center; gap: 15px; }
        .logo-box img { width: 70px; height: auto; }
        .logo-box h1 { font-size: 22px; color: var(--primary); font-weight: 700; line-height: 1.1; }
        .logo-box p { font-size: 12px; color: #64748b; }

    .logo-box {
        width: 100%;
        text-align: center; /* लोगो को सेंटर में रखने के लिए */
        padding: 5px;
        overflow: hidden; /* ताकि बाहर न निकले */
    }

    .main-logo {
        /* डेस्कटॉप के लिए डिफ़ॉल्ट साइज */
        width: 100%; 
        max-width: 650px; /* बड़ी स्क्रीन पर ६५० पिक्सेल से बड़ा नहीं होगा */
        height: auto;     /* फोटो की लम्बाई अपने आप सेट होगी, दबेगी नहीं */
        display: block;
        margin: 0 auto;   /* बीच में रखने के लिए */
    }

    /* मोबाइल फोन के लिए (Media Query) */
    @media screen and (max-width: 768px) {
        .main-logo {
            max-width: 95%; /* मोबाइल पर स्क्रीन की चौड़ाई का ९५% ले लेगा */
            padding: 2px;
        }
        
        .logo-box {
            padding: 5px 0;
        }
    }

        /* Modern Navbar */
        .navbar { background: var(--dark); }
        .nav-container { max-width: 1200px; margin: 0 auto; }
        .nav-links { list-style: none; display: flex; }
        .nav-links li { position: relative; }
        .nav-links li a { color: white; text-decoration: none; padding: 15px 20px; display: block; font-size: 14px; font-weight: 500; transition: 0.3s; }
        .nav-links li a:hover { background: var(--primary); color: var(--secondary); }
        
        /* Dropdown */
        .dropdown-content { position: absolute; top: 100%; left: 0; background: white; min-width: 220px; display: none; box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-top: 3px solid var(--secondary); }
        .dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.3s ease; }
        .dropdown-content li a { color: var(--dark); padding: 12px 20px; border-bottom: 1px solid #f1f5f9; }
        .dropdown-content li a:hover { background: #f8fafc; color: var(--primary); }

        /* Hero Slider Area */
        .hero { position: relative; height: 550px; overflow: hidden; }
        .slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: 1s ease-in-out; }
        .slide.active { opacity: 1; }
        .slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
        .hero-text { position: absolute; top: 50%; left: 10%; transform: translateY(-50%); color: white; max-width: 600px; z-index: 10; }
        .hero-text h2 { font-size: 48px; font-weight: 700; margin-bottom: 20px; animation: slideUp 0.8s ease; }
        .btn-main { padding: 12px 30px; background: var(--secondary); color: var(--dark); text-decoration: none; border-radius: 50px; font-weight: 600; display: inline-block; transition: 0.3s; }
        .btn-main:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(255, 204, 0, 0.4); }

        /* News Ticker */
        .news-ticker { background: #fff; border-bottom: 1px solid #ddd; display: flex; align-items: center; }
        .ticker-label { background: #e11d48; color: white; padding: 10px 20px; font-weight: 600; white-space: nowrap; z-index: 5; }
        marquee { padding: 10px; font-weight: 500; color: #1e293b; }

        /* Content Sections */
        .section { padding: 40px 20px; max-width: 1300px; margin: 0 auto; }
        .grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

        /* Notices Card */
        .notice-card { background: white; border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); height: 100%; border-top: 5px solid var(--primary); }
        .notice-card h2 { color: var(--primary); margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
        .notice-list { list-style: none; }
        .notice-item { padding: 15px; border-bottom: 1px solid #f1f5f9; display: flex; gap: 15px; transition: 0.3s; }
        .notice-item:hover { background: #f8fafc; transform: translateX(10px); }
        .date-box { background: #eff6ff; color: var(--primary); padding: 5px 10px; border-radius: 8px; text-align: center; min-width: 60px; font-weight: 700; font-size: 12px; }

        /* Principal Card */
        .principal-box { background: white; border-radius: 15px; padding: 30px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .p-img { width: 150px; height: 150px; border-radius: 50%; border: 5px solid #f1f5f9; margin-bottom: 20px; object-fit: cover; }
        .p-name { color: var(--primary); font-weight: 700; font-size: 18px; }
        .p-text { color: #64748b; font-size: 14px; margin: 15px 0; font-style: italic; }

        /* Footer */
        footer { background: var(--dark); color: white; padding: 60px 20px 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
        .footer-bottom { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid #334155; font-size: 13px; color: #94a3b8; }

        /* Mobile Menu */
        .menu-btn { display: none; color: white; font-size: 24px; cursor: pointer; padding: 15px; }

        /* Animations */
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

        /* Responsive */
        @media (max-width: 992px) {
            .grid-2 { grid-template-columns: 1fr; }
            .hero { height: 400px; }
            .hero-text h2 { font-size: 32px; }
            .nav-links { display: none; flex-direction: column; width: 100%; background: var(--dark); }
            .nav-links.active { display: flex; }
            .menu-btn { display: block; text-align: right; }
            .header-main { flex-direction: column; text-align: center; }
            .logo-box { margin-bottom: 15px; }
        }
        .new-blink {
    background: red;
    color: white;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    margin-left: 5px;
    animation: blinker 1s linear infinite;
}

/* Hero Section की ऊंचाई तय करें */
.hero { 
    position: relative; 
    height: 430px; /* आप अपनी ज़रूरत के हिसाब से 500px या 600px कर सकते हैं */
    width: 100%;
    overflow: hidden; 
}

.slide { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

.slide.active { 
    opacity: 1; 
}


/* इमेज को फुल फिट करने का मुख्य लॉजिक */
.slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;      /* यह इमेज को फ्रेम में पूरी तरह भर देगा (कटेगी नहीं, फिट होगी) */
    object-position: center; /* इमेज का केंद्र हिस्सा हमेशा बीच में रहेगा */
    filter: brightness(0.6); /* टेक्स्ट को उभरने के लिए इमेज को थोड़ा डार्क करेगा */
}
.slide.active img {
    animation: slowMove 10s ease-out forwards;
}

@keyframes slowMove {
    from {
        object-position: top;
        transform: scale(1.1);
    }
    to {
        object-position: center;
        transform: scale(1);
    }
}

/* मोबाइल के लिए एडजस्टमेंट */
@media (max-width: 768px) {
    .hero { height: 350px; } /* मोबाइल पर स्लाइडर की ऊंचाई थोड़ी कम */
}

@keyframes blinker { 50% { opacity: 0; } }

/* कंटेनर का डिजाइन */
.gallery-ticker-container {
    background: #111827; /* डार्क बैकग्राउंड */
    padding: 30px 0;
    width: 100%;
    overflow: hidden;
    border-top: 2px solid var(--secondary);
}

.ticker-header {
    text-align: center;
    margin-bottom: 20px;
}

.ticker-header h2 {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
}

.title-line {
    width: 50px;
    height: 3px;
    background: #ffcc00; /* Secondary Color */
    margin: 8px auto;
}

/* टिकर की मुख्य सेटिंग्स */
.ticker-wrapper-box {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite; /* Right to Left Animation */
}

/* Stop on Hover - माउस ले जाने पर रुक जाएगा */
.ticker-wrapper:hover {
    animation-play-state: paused;
}

/* छोटे इमेज का डिजाइन */
.ticker-item {
    width: 200px; /* छोटा साइज जैसा आपने माँगा */
    height: 130px;
    margin-right: 15px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #374151;
}

.ticker-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

/* इमेज के ऊपर नाम दिखाने के लिए */
.ticker-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    padding: 5px;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

.ticker-item:hover .ticker-overlay {
    opacity: 1;
}

/* Right to Left Animation Logic */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* आधा स्क्रॉल होते ही वापस शुरू होगा जिससे लूप टूटे नहीं */
    }
}
/* --- History Section Styles --- */
.college-history {
    padding: 50px 0;
    background: #ffffff;
}

.history-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Image Side */
.history-image {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.history-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0, 74, 153, 0.1);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--secondary); /* Yellow/Orange */
    color: #000;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Content Side */
.history-content {
    flex: 1;
    min-width: 350px;
}

.sub-title {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 5px;
}

.main-title {
    font-size: 36px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 25px;
    border-radius: 2px;
}

.history-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.history-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feat-item {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-item i {
    font-size: 20px;
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .history-flex {
        flex-direction: column;
    }
    .history-image img {
        height: 350px;
    }
    .main-title {
        font-size: 28px;
    }
}
        /* --- Custom Styles for New Sections --- */
        .mentor-section { background: white; padding: 60px 20px; text-align: center; }
        .mentor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 40px auto; }
        .mentor-card img { width: 200px; height: 200px; border-radius: 50%; border: 3px solid var(--secondary); margin-bottom: 15px; object-fit: cover; }
        .mentor-card h4 { color: var(--primary); font-size: 16px; margin-bottom: 5px; }
        .mentor-card p { font-size: 13px; color: #64748b; font-weight: 600; }
      
        /* Update Menu Styling */
.update-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.update-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-left: 4px solid #cbd5e1; /* Default Border */
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
}

.update-item i {
    width: 25px;
    font-size: 16px;
    color: var(--primary);
    margin-right: 10px;
}

.update-item:hover {
    background: #eff6ff;
    border-left-color: var(--primary);
    color: var(--primary);
    transform: translateX(5px);
}

/* Blinking New Badge */
.badge-new {
    background: #ef4444;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    text-transform: uppercase;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Header inside card */
.notice-card h2 {
    font-size: 18px;
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* नोटिस कंटेनर की फिक्स्ड हाइट */
.notice-scroll-container {
    height: 250px; /* आप अपनी जरूरत के हिसाब से कम-ज्यादा कर सकते हैं */
    overflow: hidden;
    position: relative;
    padding: 5px 0;
}

/* नोटिस लिस्ट जो ऊपर की तरफ मूव करेगी */
.notice-list {
    display: flex;
    flex-direction: column;
    animation: scroll-up 20s linear infinite; /* स्पीड बदलने के लिए 20s को कम या ज्यादा करें */
}

/* माउस ले जाने पर रुकना (STOP ON HOVER) */
.notice-scroll-container:hover .notice-list {
    animation-play-state: paused;
}

/* नोटिस आइटम का डिजाइन */
.notice-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ddd;
}

.notice-link {
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 500; 
    margin-left: 10px;
    font-size: 14px;
    line-height: 1.4;
    transition: 0.3s;
}

.notice-link:hover {
    color: var(--primary);
}

.new-blink {
    background: #ff0000;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    animation: blinker 1s linear infinite;
}

/* ऊपर की तरफ जाने वाला एनीमेशन */
@keyframes scroll-up {
    -50% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

/* NEW ब्लिंकिंग एनीमेशन */
@keyframes blinker {
    50% { opacity: 0; }
}

/* मोबाइल के लिए एडजस्टमेंट */
@media (max-width: 768px) {
    .notice-scroll-container { height: 200px; }
}
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.alumni-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.alumni-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.alumni-img-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f8fafc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.alumni-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-card h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 18px;
}

.alumni-card .batch {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.alumni-card .desig {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}
.dropdown-content {
    max-height: 450px; /* अपनी जरूरत अनुसार बदलें */
    overflow-y: auto;
}

/* 2. Mobile Specific CSS */
@media (max-width: 991px) {
    /* मेनू बटन को साफ़ दिखाएं */
    .menu-btn {
        display: block !important;
        cursor: pointer;
        padding: 10px;
        background: #004a99;
        color: white;
        text-align: center;
    }

    /* नेविगेशन लिंक्स को राइट साइड स्लाइडर बनाना */
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px; /* शुरू में स्क्रीन के बाहर (दाहिनी ओर) */
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 999;
        display: block !important; /* मोबाइल पर कॉलम में दिखाने के लिए */
        flex-direction: column;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        padding-top: 60px;
        overflow-y: auto;
    }

    /* जब मेनू खुला हो (JavaScript द्वारा जोड़ा जाएगा) */
    .nav-links.active {
        right: 0;
    }

    /* मेनू आइटम्स की स्टाइलिंग */
    .nav-links li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links li a {
        color: #333 !important;
        padding: 15px 20px;
        display: block;
    }

    /* ड्रॉपडाउन को मोबाइल पर सही करना */
    .dropdown-content {
        position: static;
        display: none;
        background: #f9f9f9;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}
@media (max-width: 991px) {
    /* मेनू बटन की पट्टी (Header Menu Bar) */
    .menu-btn {
        display: block !important;
        cursor: pointer;
        padding: 8px 15px; /* पैडिंग कम की ताकि पट्टी पतली दिखे */
        background: #004a99;
        color: white;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
    }

    /* राइट साइड स्लाइडर (Menu Drawer) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -250px; /* पट्टी को छोटा करने के लिए वैल्यू कम की (पहले 300px थी) */
        width: 240px;  /* पट्टी की चौड़ाई अब 240px है */
        height: 100vh;
        background: white;
        z-index: 999;
        display: block !important;
        flex-direction: column;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* स्मूथ एनीमेशन */
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        padding-top: 50px;
        overflow-y: auto;
    }

    /* जब मेनू एक्टिव हो */
    .nav-links.active {
        right: 0;
    }

    /* मेनू के अंदर के लिंक्स को छोटा और साफ़ दिखाने के लिए */
    .nav-links li a {
        color: #1e293b !important;
        padding: 12px 20px;
        font-size: 14px; /* फॉन्ट थोड़ा छोटा किया */
        border-bottom: 1px solid #f1f5f9;
        display: block;
        font-weight: 500;
    }

    /* होवर करने पर हल्का नीला रंग */
    .nav-links li a:hover {
        background: #f8fbff;
        color: #004a99 !important;
    }
}
 :root {
        --primary-blue: #004a99; 
        --light-blue: #eef5ff;
        --accent-blue: #2563eb;
        --text-dark: #1e293b;
    }

    .facilities-wrapper {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .header-info { text-align: center; margin-bottom: 50px; }
    .header-info h2 { color: var(--primary-blue); font-size: 32px; font-weight: 800; margin-bottom: 10px; }
    .header-info p { color: #64748b; font-size: 16px; }

    /* Grid Layout */
    .facility-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 25px;
    }

    /* Modern Blue Card Design */
    .f-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 24px;
        padding: 40px 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .f-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 0%;
        background: var(--primary-blue);
        transition: 0.4s;
        z-index: 0;
        opacity: 0.05;
    }

    .f-card:hover::before { height: 100%; }

    .f-card:hover {
        transform: translateY(-12px);
        border-color: var(--primary-blue);
        box-shadow: 0 20px 25px -5px rgba(0, 74, 153, 0.1), 0 10px 10px -5px rgba(0, 74, 153, 0.04);
    }

    .icon-box {
        width: 80px; height: 80px;
        background: var(--light-blue);
        color: var(--primary-blue);
        border-radius: 22px;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 20px;
        font-size: 32px;
        transition: 0.4s;
        position: relative; z-index: 1;
    }

    .f-card:hover .icon-box {
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
        color: #fff;
        transform: rotateY(360deg);
        box-shadow: 0 10px 15px rgba(0, 74, 153, 0.2);
    }

    .f-card h3 {
        font-size: 17px; color: var(--text-dark);
        font-weight: 700; margin: 0;
        position: relative; z-index: 1;
        letter-spacing: -0.5px;
    }

    /* Modal (Popup) Styling - Blue Theme */
    .f-modal {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(15, 23, 42, 0.8);
        display: none; align-items: center; justify-content: center;
        z-index: 9999; backdrop-filter: blur(10px);
        padding: 20px;
    }

    .modal-content {
        background: #fff; width: 100%; max-width: 550px;
        border-radius: 32px; padding: 45px;
        position: relative; animation: modalSlideUp 0.4s ease-out;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    @keyframes modalSlideUp { 
        from { transform: translateY(40px); opacity: 0; } 
        to { transform: translateY(0); opacity: 1; } 
    }

    .close-modal {
        position: absolute; top: 25px; right: 25px;
        font-size: 24px; cursor: pointer; color: #94a3b8; transition: 0.2s;
    }
    .close-modal:hover { color: var(--primary-blue); }

    .modal-body { text-align: center; }
    .modal-body i { 
        font-size: 64px; 
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 25px; 
    }
    .modal-body h2 { margin-bottom: 15px; color: var(--text-dark); font-weight: 800; }
    .modal-body p { color: #475569; line-height: 1.7; font-size: 16px; }

    .btn-close {
        margin-top: 30px; 
        background: var(--primary-blue); 
        color: #fff; border: none; 
        padding: 14px 35px; border-radius: 14px; 
        cursor: pointer; font-weight: 600; font-size: 15px;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 74, 153, 0.2);
    }
    .btn-close:hover { background: var(--accent-blue); transform: translateY(-2px); }