 
        /* Alert styles */
        .alert {
            padding: 12px 20px;
            border-radius: 8px;
            margin: 15px 0;
            font-weight: 500;
            text-align: center;
        }

        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Country Code Picker Styles */
        .phone-input-group {
            display: flex;
            width: 100%;
        }

        .country-code-select {
            flex: 0 0 165px;
            margin-right: 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
            padding: 12px 10px;
            font-size: 1rem;
            background-color: white;
            cursor: pointer;
        }

        .country-code-select:focus {
            outline: none;
            border-color: #003319;
            box-shadow: 0 0 0 2px rgba(0, 51, 25, 0.1);
        }

        .phone-number-input {
            flex: 1;
            border-radius: 8px;
            border: 1px solid #ccc;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .location {
            margin-top: 10px;
            width: 100%;
        }

        .phone-number-input:focus {
            outline: none;
            border-color: #003319;
            box-shadow: 0 0 0 2px rgba(0, 51, 25, 0.1);
        }

        .validation-message {
            font-size: 0.85rem;
            margin-top: 5px;
            color: #666;
        }

        .validation-message.error {
            color: #dc3545;
        }

        .validation-message.success {
            color: #198754;
        }
        
        /* Contact form specific styles */
        .connect-section {
            display: flex;
            justify-content: space-between;
            padding: 40px 5%;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }

        .left {
            flex: 1 1 45%;
            min-width: 320px;
        }

        .right {
            flex: 1 1 30%;
            min-width: 320px;
            background: #f3f8ff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 30px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .right::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #10f27d 0%, #003319 100%);
        }

        .right:hover {
            transform: translateY(-5px);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .form-group input {
            flex: 1;
            min-width: 45%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #003319;
            box-shadow: 0 0 0 2px rgba(0, 51, 25, 0.1);
        }

        .contact-form select,
        .contact-form textarea {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s;
            background-color: white;
            color: black;
        }

        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #003319;
            box-shadow: 0 0 0 2px rgba(0, 51, 25, 0.1);
        }

        .submit-btn {
            background: linear-gradient(90deg, #0ea858 0%, #003319 100%);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: linear-gradient(90deg, #246e15 0%, #72ea8a 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .contact-info p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .join-card {
            margin-top: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 20px;
            transition: transform 0.3s ease;
        }
        
        .join-card:hover {
            transform: translateY(-5px);
        }
        
        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-top: 15px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .quick-enquirys {
            background: linear-gradient(90deg, #0ea858 0%, #003319 100%);
            color: white;
            text-align: center;
            padding: 15px;
            font-weight: bold;
            border-radius: 15px;
            margin-bottom: 0px;
            box-shadow: 0 3px 8px rgba(192, 0, 0, 0.3);
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .connect-section {
                flex-direction: column;
                padding: 20px;
            }

            .form-group {
                flex-direction: column;
            }

            .left, .right {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .phone-input-group {
                flex-direction: column;
            }

            .country-code-select {
                flex: 1;
                margin-right: 0;
                margin-bottom: 10px;
            }
        }