 :root {

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
       h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #070707;
            text-decoration-thickness: 2px;
            text-size-adjust: 20%;  
            font-weight: 600;
            font-size: 1.5em;
            line-height: 1.2;
        }
        
        .matrix-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            padding: 30px;  
            max-width: 1200px;
            margin: 0 auto;
            background-color: #d4e0ee;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(10, 10, 10, 20.1);
            transition: background-color 0.3s;

        }
        
        .matrix-item {
            padding: 25px;
            border-radius: 8px;
            background-color: #f8f9fa;
            border-left: 4px solid #4285f4;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .matrix-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .info-heading {
            margin-top: 0;
        }
        
        .info-heading a {
            color: #115deb;
            text-decoration: none;
            font-size: 1.3em;
        }
        
        .info-heading a:hover {
            text-decoration: underline;
        }
        
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            max-width: 600px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            padding: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
        }
        
        .popup h2 {
            margin-top: 0;
            color: #d6e2f1;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .popup p {
            margin: 15px 0;
            padding: 12px;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        
        .popup p:nth-child(odd) {
            background-color: rgba(66, 133, 244, 0.08);
        }
        
        .popup p:nth-child(even) {
            background-color: rgba(234, 67, 53, 0.08);
        }
        
        .popup p:hover {
            background-color: rgba(251, 188, 5, 0.15);
        }
        
        .booking-link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #34a853;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .booking-link:hover {
            background-color: #2d8e47;
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #777;
            cursor: pointer;
        }
        
        .close-btn:hover {
            color: #333;
        }
        
        @media (max-width: 768px) {
            .matrix-container {
                grid-template-columns: 1fr;
            }
        }

        /* Sticky header container */
        .sti {
            position: static;
            top: 10;
            z-index: 100;
            width: 100%;
        }
        
        /* Scrolling text container */
        .scrolling-text-container {
            background-color: #0066cc; /* Blue background */
            color: white;
            padding: 12px;
            overflow: hidden;
            white-space: nowrap;
            box-sizing: border-box;
            width: 100%;
            height: 50px; /* Fixed height for the sticky header */
            display: flex;
        }
        
        /* Scrolling text animation */
        .scrolling-text {
            display: inline-block;
            padding-left: 20%; /* Start off-screen */
            animation: scroll 5s linear infinite;   
            font-size: 1.2em;
            font-weight: bold;
            text-align: center;
        }
        
        @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }

        }
        
        /* Just some sample content to demonstrate scrolling */
        .content {
            height: 2000px;
            padding: 20px;
            background-color: #f0f0f0;  
        }

***
       
        .container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            gap: 20px;
        }
        
        /* Form styling */
        .form-container {
            flex: 1;
            background-color: #e6f2ff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .form-container h2 {
            color: #0066cc;
            margin-top: 0;
        }
        
        .form-container input, 
        .form-container textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #99c2ff;
            border-radius: 5px;
            box-sizing: border-box;
        }
        
        .form-container button {
            background-color: #0066cc;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        
        .form-container button:hover {
            background-color: #0052a3;
        }
        
        /* Content matrix styling */
        .content-matrix {
            flex: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .content-section {
            background: linear-gradient(135deg, #e6f2ff, #cce0ff);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .content-section:hover {
            transform: translateY(-5px);
        }
        
        .content-section h2 {
            color: #0066cc;
            margin-top: 0;
        }
        
        /* Popup styling */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            z-index: 100;
            width: 80%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .popup-content {
            position: relative;
        }
        
        .popup p {
            color: #666;
            line-height: 1.6;
            opacity: 0.8;
        }
        
        .popup a {
            display: inline-block;
            margin-top: 15px;
            padding: 8px 16px;
            background-color: #0066cc;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        
        .popup a:hover {
            background-color: #0052a3;
        }
        
        /* Welcome popup styling */
        #welcome-popup {
            background-color: #001a33;
            color: white;
            text-align: center;
        }
        
        #welcome-popup h2 {
            color: white;
        }
        
        #welcome-popup a {
            background-color: white;
            color: #001a33;
            font-weight: bold;
        }
        
        #welcome-popup a:hover {
            background-color: #e6f2ff;
        }
        
        /* Overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 50;
     }

    }