﻿body 
{
    
        /* Popup Form Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .popup-content {
           background: linear-gradient(145deg, #eff0f7, #eff0f7);
            width: 90%;
            height:50%;
            max-width: 800px;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
            position: relative;
            animation: popup 0.5s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @keyframes popup {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .close-btn {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 28px;
            color: #f44336;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .close-btn:hover {
            transform: rotate(90deg);
        }
        
        .popup-content h2 
        {
            text-align: center;
            margin-bottom: 25px;
            color: gray;
            font-size: 1.8rem;
            text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
        }
        
        .popup-content p {
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: gray;
        }
        
        .form-group input,
        .form-group textarea,
       
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4fc3f7;
            box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #00c853, #64dd17);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 200, 83, 0.6);
        }
        
        .info-section {
            margin-top: 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .info-card {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            background: rgba(0, 0, 0, 0.4);
        }
        
        .info-card i {
            font-size: 50px;
            color: #4fc3f7;
            margin-bottom: 20px;
        }
        
        .info-card h3 {
            color: #bb86fc;
            margin-bottom: 15px;
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: rgba(255, 255, 255, 0.7);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .carousel-item {
                padding: 25px;
            }
            
            .carousel-container h1 {
                font-size: 1.6rem;
            }
            
            .popup-content {
                padding: 30px 20px;
            }
        }

