 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a0a;
            overflow-x: hidden;
        }
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #173457 0%, #27649D 50%, #173457 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(240,172,36,0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(194,193,198,0.15) 0%, transparent 50%);
            z-index: 1;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
            min-height: 100vh;
            padding: 80px 0;
        }
        .hero-left {
            color: white;
        }
        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        .logo {
            width: 212px;
            height: 79px;
            background: white;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
            padding: 10px;
        }
        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 15px;
        }
        .logo::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #F0AC24, #42BFDD);
            border-radius: 30px;
            z-index: -1;
            opacity: 0.3;
            filter: blur(10px);
        }
        .university-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #F0AC24;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            position: relative;
        }
        .limited-seats-banner {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0 30px 0;
            position: relative;
        }
        .limited-seats-content {
            background: rgba(240, 172, 36, 0.9);
            color: #173457;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(240, 172, 36, 0.4);
            animation: bounce 2s infinite;
            text-align: center;
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        .limited-seats-content::before {
            content: '⚡';
            margin-right: 8px;
            font-size: 1.1rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: #C2C1C6;
            font-weight: 300;
            line-height: 1.4;
        }
        .why-choose {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 40px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .why-choose h3 {
            color: #F0AC24;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .benefit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        .benefit-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #F0AC24, #42BFDD);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #173457;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .benefit-content h4 {
            color: #fffff;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .benefit-content p {
            color: #C2C1C6;
            font-size: 0.9rem;
        }
        .cta-section {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: 40px;
        }
        .cta-button {
            background: linear-gradient(135deg, #F0AC24, #F0AC24);
            color: #ffffff;
            padding: 20px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(240,172,36,0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(240,172,36,0.6);
        }
        .limited-offer {
            background: rgba(255, 255, 255, 0.1);
            color: #F0AC24;
            padding: 12px 0;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 2px solid #F0AC24;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 160px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        .limited-offer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 2s infinite;
        }
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        .limited-offer-icon {
            font-size: 1.2rem;
            margin-bottom: 4px;
            animation: flash 1.5s infinite;
        }
        @keyframes flash {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0.5; }
        }
        .limited-offer-text {
            font-size: 0.85rem;
            line-height: 1.2;
        }
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240,172,36,0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(240,172,36,0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240,172,36,0); }
        }
        .contact-form {
            background: rgba(255,255,255,0.98);
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            position: sticky;
            top: 40px;
        }
        .form-title {
            color: #173457;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
            line-height: 33px;
        }
        .form-subtitle {
            color: #27649D;
            text-align: center;
            margin-bottom: 30px;
            font-size: 1rem;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #173457;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #C2C1C6;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.9);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #27649D;
            box-shadow: 0 0 0 3px rgba(39,100,157,0.1);
            transform: translateY(-2px);
        }
        .submit-btn {
            background: linear-gradient(135deg, #173457, #27649D);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(23,52,87,0.4);
        }
        .programs-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
        }
        .programs-title {
            text-align: center;
            color: white;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #F0AC24, #C2C1C6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .programs-subtitle {
            text-align: center;
            color: #C2C1C6;
            font-size: 1.2rem;
            margin-bottom: 60px;
        }
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }
        .program-card {
            background: rgba(255,255,255,0.05);
            border-radius: 25px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
        }
        .program-image {
            height: 200px;
            background: linear-gradient(135deg, #173457, #27649D);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .program-image.ms-it {
            background-image: linear-gradient(rgb(23 52 87 / 32%), rgb(39 100 157 / 22%)), url('https://www.bluecrest.edu.lr/msc-bsc-bba/images/Master-of-Science-in-Information-Technology.jpg');
        }
        .program-image.bs-it {
            background-image: linear-gradient(rgb(23 52 87 / 32%), rgb(39 100 157 / 22%)), url('https://www.bluecrest.edu.lr/msc-bsc-bba/images/Bachelor-of-Science-in-Information-Technology.jpg');
        }
        .program-image.bba {
            background-image: linear-gradient(rgb(23 52 87 / 32%), rgb(39 100 157 / 22%)), url('https://www.bluecrest.edu.lr/msc-bsc-bba/images/Bachelor-of-Business-Administration.jpg');
        }
        .program-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: 50px 50px;
        }
        .program-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255,255,255,0.2);
        }
        .program-content {
            padding: 30px;
        }
        .program-level {
            color: #F0AC24;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .program-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .program-description {
            color: #C2C1C6;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .program-features {
            list-style: none;
            margin-bottom: 25px;
        }
        .program-features li {
            color: #F0AC24;
            padding: 5px 0;
            position: relative;
            padding-left: 25px;
        }
        .program-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #F0AC24;
            font-weight: 700;
        }
        .program-duration {
            background: rgba(240,172,36,0.1);
            color: #F0AC24;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
        .program-btn {
            background: linear-gradient(135deg, #F0AC24, #C2C1C6);
            color: #173457;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .program-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(240,172,36,0.4);
        }
        .university-info {
            background: #173457;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        .university-info h3 {
            color: #F0AC24;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .contact-details {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #C2C1C6;
        }
        .contact-item strong {
            color: #F0AC24;
        }
        a.contact-link {
            /* color: black; */
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .contact-form {
                position: static;
                margin-top: 40px;
            }
            .programs-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .programs-title {
                font-size: 2rem;
            }
            .benefit-grid {
                grid-template-columns: 1fr;
            }
            .cta-section {
                flex-direction: column;
                align-items: stretch;
            }
            .contact-details {
                flex-direction: column;
                gap: 20px;
            }
            .limited-seats-content {
                font-size: 0.9rem;
                padding: 12px 20px;
            }
        }
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #F0AC24;
            border-radius: 50%;
            opacity: 0.6;
            animation: float-particle 15s linear infinite;
        }
        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        /* Fixed Bottom Navigation - Mobile Only */
        .mobile-actionbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(23, 52, 87, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            display: none;
        }
        /* Desktop Floating Action Button */
        .desktop-fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #F0AC24, #F0AC24);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            border: none;
            color: #173457;
            font-size: 24px;
        }
        .desktop-fab:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        .desktop-fab.active {
            transform: rotate(45deg);
        }
        /* Desktop Menu Options */
        .desktop-menu {
            position: fixed;
            bottom: 110px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        .desktop-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .desktop-menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 20px;
            border-radius: 50px;
            text-decoration: none;
            color: #173457;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            min-width: 180px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .desktop-menu-item:hover {
            transform: translateX(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .desktop-menu-item.apply-item {
            background: linear-gradient(135deg, #F0AC24, #F0AC24);
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .desktop-menu-item.courses-item {
            background: rgba(194,193,198,0.1);
            color: #ffffff;
        }
        .desktop-menu-item.contact-item {
            background: rgba(23, 52, 87, 0.1);
            color: #ffffff;
        }
        .desktop-menu-item.whatsapp-item {
            background: rgba(37, 211, 102, 0.1);
            color: #25D366;
        }
        .desktop-menu-icon {
            font-size: 18px;
            width: 20px;
            text-align: center;
        }
        .actionbar-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            max-width: 500px;
            margin: 0 auto;
        }
        .actionbar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 12px;
            background: none;
            border: none;
            cursor: pointer;
            min-width: 70px;
        }
        .actionbar-item:hover {
            background: rgba(240, 172, 36, 0.2);
            transform: translateY(-2px);
        }
        .actionbar-item.apply-btn:hover {
            background: rgba(240, 172, 36, 0.3);
            color: #F0AC24;
        }
        .actionbar-item.courses-btn:hover {
            background: rgba(66, 191, 221, 0.3);
            color: #42BFDD;
        }
        .actionbar-item.contact-btn:hover {
            background: rgba(125, 207, 182, 0.3);
            color: #7DCFB6;
        }
        .actionbar-item.whatsapp-btn:hover {
            background: rgba(37, 211, 102, 0.3);
            color: #25D366;
        }
        .actionbar-icon {
            font-size: 20px;
            margin-bottom: 4px;
        }
        .actionbar-text {
            font-size: 11px;
            font-weight: 500;
            text-align: center;
        }
        /* Popups */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .popup-overlay.active {
            display: flex;
            opacity: 1;
        }
        .popup-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            max-width: 400px;
            width: 90%;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        .popup-overlay.active .popup-content {
            transform: scale(1);
        }
        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }
        .popup-close:hover {
            color: #173457;
        }
        .popup-title {
            color: #173457;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }
        .popup-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }
        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .popup-form input,
        .popup-form textarea {
            padding: 12px;
            border: 2px solid #C2C1C6;
            border-radius: 10px;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }
        .popup-form input:focus,
        .popup-form textarea:focus {
            outline: none;
            border-color: #27649D;
        }
        .popup-btn {
            background: linear-gradient(135deg, #173457, #27649D);
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .popup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(23, 52, 87, 0.3);
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .contact-item-popup {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .contact-item-popup i {
            color: #173457;
            width: 20px;
        }
        .whatsapp-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
        }
        .whatsapp-btn-popup {
            background: #25D366;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }
        .whatsapp-btn-popup:hover {
            background: #20b358;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .actionbar-text {
                font-size: 10px;
            }
            
            .actionbar-icon {
                font-size: 18px;
            }
            
            /* Show mobile menu on small screens */
            .mobile-actionbar {
                display: block !important;
            }
            
            /* Hide desktop FAB on small screens */
            .desktop-fab,
            .desktop-menu {
                display: none !important;
            }
        }
        @media (min-width: 769px) {
            /* Show desktop FAB on larger screens */
            .desktop-fab {
                display: flex;
            }
            
            /* Hide mobile menu on larger screens */
            .mobile-actionbar {
                display: none;
            }
        }