/* styles.css */
body {
    font-family: 'Arial', sans-serif;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    color: #fff !important;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: #f0e68c !important;
}

.form-control {
    width: 200px;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    color: #333;
    background-color: #fff;
    border-color: #fff;
}

.modal-header {
    background-color: #007bff;
    color: #fff;
}

.modal-header .close {
    color: #fff;
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.navbar-nav .nav-item .nav-link {
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

@media (max-width: 768px) {
    .form-inline {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .form-control {
        width: 100%;
        margin-bottom: 10px;
    }
}



// new design form//
/* styles.css */
body {
    font-family: 'Arial', sans-serif;
}

.top-bar {
    font-size: 0.9rem;
}

.social-icons a {
    font-size: 1.2rem;
}

.navbar-brand img {
    width: 150px;
}

.middle-bar {
    background-color: #f8f9fa;
}

.middle-bar .form-inline .form-control {
    width: 200px;
}

.middle-bar .btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.middle-bar .btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-size: 1.1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #f0e68c;
}

.modal-header {
    background-color: #007bff;
    color: #fff;
}

@media (max-width: 576px) {
    .middle-bar .form-inline {
        flex-direction: column;
        align-items: stretch;
    }
    .middle-bar .form-inline .form-control {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .middle-bar .btn-outline-primary {
        width: 100%;
    }
}
// next header css code//
/* Example of additional media queries for better responsiveness */

/* For tablets (portrait) */
@media (max-width: 768px) {
    .middle-bar .form-inline {
        flex-direction: column;
        align-items: stretch;
    }
    .middle-bar .form-inline .form-control {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .middle-bar .btn-outline-primary {
        width: 100%;
    }
    .navbar-nav {
        text-align: center;
    }
}

/* For phones (portrait) */
@media (max-width: 576px) {
    .middle-bar .form-inline {
        flex-direction: column;
        align-items: stretch;
    }
    .middle-bar .form-inline .form-control {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .middle-bar .btn-outline-primary {
        width: 100%;
    }
    .navbar-nav {
        text-align: center;
    }
    .top-bar .container {
        flex-direction: column;
        align-items: center;
    }
    .social-icons {
        margin-bottom: 0.5rem;
    }
}



// about us Page css //
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
}

/* Subscription Form Styles */
.subscription {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.subscription .form-control {
    width: 300px;
    margin-right: 10px;
}

.subscription .btn {
    background-color: #007bff;
    border: none;
}

/* Statistics Styles */
.statistics .stat {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 30px 15px;
    border-radius: 5px;
}

.statistics .stat i {
    color: #007bff;
}

/* Testimonials Styles */
.testimonials {
    background-color: #f8f9fa;
}

.testimonials .carousel-item p {
    font-style: italic;
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    background-color: #007bff;
    border-radius: 50%;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .subscription .form-control {
        width: 100%;
        margin-bottom: 10px;
    }
}





// help css code /
body {
    font-family: 'Arial', sans-serif;
}

.help-section {
    background-color: #f8f9fa;
}

.help-section h1,
.help-section h2 {
    color: #007bff;
}

.help-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.help-section .card:hover {
    transform: translateY(-10px);
}

.help-section .card i {
    color: #007bff;
}

.help-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.help-section .btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

@media (max-width: 768px) {
    .help-section h1 {
        font-size: 2.5rem;
    }

    .help-section .card {
        margin-bottom: 20px;
    }
}




//help ki css 2nd file code
body {
    font-family: 'Arial', sans-serif;
}

.help-section {
    background-color: #f8f9fa;
}

.help-section h1,
.help-section h2 {
    color: #007bff;
}

.help-section .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.help-section .card:hover {
    transform: translateY(-10px);
}

.help-section .card i {
    color: #007bff;
}

.help-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.help-section .btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

/* Feedback Form Styles */
#feedback {
    padding: 50px 0;
    background-color: #f8f9fa;
}

#feedback h2 {
    color: #007bff;
}

#feedbackForm .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

/* Live Chat Styles */
.live-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.live-chat .btn-primary {
    font-size: 18px;
    padding: 10px 20px;
}

.chat-window {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
}

.chat-body {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.chat-body .messages {
    margin-bottom: 10px;
}

.chat-body input {
    width: calc(100% - 60px);
    padding: 5px;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .help-section h1 {
        font-size: 2.5rem;
    }

    .help-section .card {
        margin-bottom: 20px;
    }

    .live-chat .btn-primary {
        font-size: 16px;
        padding: 8px 16px;
    }

    .chat-window {
        width: 90%;
        bottom: 90px;
    }

    .chat-body {
        max-height: 200px;
    }
}



// contact us css
<style>
        .contact-section {
            background: #f8f9fa;
            padding: 50px 0;
        }

        .contact-section h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .contact-section .form-group label {
            font-weight: bold;
        }

        .contact-section .btn {
            background-color: #007bff;
            color: white;
            transition: background-color 0.3s;
        }

        .contact-section .btn:hover {
            background-color: #0056b3;
        }

        .contact-section .social-icons {
            margin-top: 20px;
        }

        .contact-section .social-icons a {
            color: #007bff;
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .contact-section .social-icons a:hover {
            color: #0056b3;
        }

        .map-container {
            height: 400px;
            margin-top: 30px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }



//

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

 
 
 
 
