  :root 

 .calculator-btn {
            background-color: #f36e01;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .calculator-btn:hover {
            background-color: #45a049;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }
        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            border-radius: 8px;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .close:hover {
            color: black;
        }
        .form-page {
            display: none;
        }
        .form-page.active {
            display: block;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input, select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .btn-container {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        .btn-next {
            background-color: #4CAF50;
            color: white;
        }
        .btn-prev {
            background-color: #f44336;
            color: white;
        }
        .btn-submit {
            background-color: #2196F3;
            color: white;
        }
        .progress-bar {
            height: 5px;
            background-color: #f1f1f1;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        .progress {
            height: 100%;
            background-color: #4CAF50;
            border-radius: 5px;
            width: 0%;
            transition: width 0.3s;
        }




/*Consulting pop-up*/

        .popup {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            justify-content: center;
            align-items: center;
        }
        
        .popup.active {
            display: flex;
        }
       .popup-container {
            display: inline-block;
            margin: 10px;
        }
        
        .popup-trigger {
            display: inline-block;
            padding: 10px 15px;
            background-color: #4a6fa5;
            color: white;
            border-radius: 5px;
            cursor: pointer;
            margin: 5px;
            transition: background-color 0.3s;
        }
        
        .popup-trigger:hover {
            background-color: #3a5a8f;
        }
        
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .popup-content {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            width: 80%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
            position: relative;
        }
        
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        .text-content {
            margin-bottom: 20px;
        }
        
        .flip-columns {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .flip-container {
            perspective: 1000px;
            width: 100%;
            height: 200px;
            flex: 1;
        }
        
        .flipper {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .flip-container:hover .flipper {
            transform: rotateY(180deg);
        }
        
        .front, .back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            overflow: hidden;
        }
        
        .front {
            background-color: #f5f5f5;
        }
        
        .back {
            background-color: #4a6fa5;
            transform: rotateY(180deg);
        }
        
        .front img, .back img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .scrolling-text {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 15px;
            height: 100px;
            overflow-y: auto;
            margin-top: 15px;
        }
        
        .scrolling-text p {
            margin: 0;
            padding: 5px 0;
            animation: scrollText 20s linear infinite;
        }
        
        @keyframes scrollText {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }

        /* Button stylesxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
        .consult-btn {
            background-color: #0056b3;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .consult-btn:hover {
            background-color: #003d7a;
        }
        
        /* Popup styles */
        .popdown {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            overflow: auto;
        }
        
        .popdown-content {
            background-color: white;
            margin: 5% auto;
            padding: 20px;
            width: 70%;
            max-width: 800px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            display: flex;
        }
        
        .form-section {
            flex: 60%;
            padding-right: 20px;
        }
        
        .info-section {
            flex: 40%;
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }
        
        .close-btn {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close-btn:hover {
            color: black;
        }
        
        /* Form styles */
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        
        .form-group textarea {
            height: 100px;
        }
        
        .submit-btn {
            background-color: #0056b3;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #003d7a;
        }
        
        /* Tab styles */
        .tab {
            overflow: hidden;
            border-bottom: 1px solid #ccc;
            margin-bottom: 20px;
        }
        
        .tab button {
            background-color: inherit;
            float: left;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 10px 16px;
            transition: 0.3s;
            font-size: 14px;
        }
        
        .tab button:hover {
            background-color: #ddd;
        }
        
        .tab button.active {
            border-bottom: 3px solid #0056b3;
            font-weight: bold;
            color: #0056b3;
        }
        
        /* Info section styles */
        .info-section h3 {
            color: #0056b3;
            margin-top: 0;
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .contact-item i {
            margin-right: 10px;
            color: #0056b3;
            width: 20px;
        }
        
        /* Live chat button */
        .live-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #0056b3;
            color: white;
            padding: 15px;
            border-radius: 8px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            z-index: 999;
            display: flex;
            align-items: center;
        }
        
        .live-chat i {
            margin-right: 8px;
        }