﻿
/* General Reset */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Roboto', sans-serif; /* Updated font */
    background-color: linear-gradient(135deg, #64b5f6, #29b6f6); /* Blue gradient */ /* Light sky blue background for the page */
}


/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #81d4fa, #29b6f6);
    z-index: 1030; /* Make sure the navbar is above other content */
}


.navbar-brand {
    font-weight: bold;
}

.nav-link {
    color: #ffffff !important; /* White color for links */
}

.nav-link:hover {
    color: #b3e5fc !important; /* Lighter blue hover color */
}

.form-control {
    border-radius: 50px;
}

.btn-outline-success {
    border-radius: 50px;
}



.marquee-section {
    position: relative;
    width: 100%;
    height: 150px; /* Adjusted height for better responsiveness */
    overflow: hidden;
    background: skyblue;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-top:  10px; /* Added padding for better responsiveness */
    margin-top: .5rem;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 1; /* Ensure header is above the marquee-content */
}



.marquee-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.marquee-content {
    display: flex;
    width: 200%; /* Ensure width is large enough for scrolling */
    animation: marquee 20s linear infinite;
}

.marquee-card {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    width: 120px; /* Adjusted width for better responsiveness */
    height: 40px; /* Adjusted height for better responsiveness */
    margin: 5px; /* Adjusted margin for better responsiveness */
    background: #750EF2;
    border: 2px solid #ddd;
    border-radius: 8px; /* Adjusted border-radius for better responsiveness */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adjusted shadow for better responsiveness */
    text-align: center;
    font-size: 14px; /* Adjusted font size for better responsiveness */
    text-decoration: none;
    color: white;
    transition: background 0.3s, box-shadow 0.3s;
}

.marquee-card:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .marquee-section {
        height: 80px; /* Reduced height for smaller screens */
    }

    .header h1 {
        font-size: 1.2em; /* Adjusted font size for smaller screens */
    }

    .marquee-card {
        width: 100px; /* Adjusted width for smaller screens */
        height: 35px; /* Adjusted height for smaller screens */
        font-size: 12px; /* Adjusted font size for smaller screens */
        margin: 3px; /* Adjusted margin for smaller screens */
    }

    .marquee-content {
        animation: marquee 30s linear infinite; /* Adjusted animation speed for smaller screens */
    }
}

@media (max-width: 480px) {
    .marquee-section {
        height: 60px; /* Further reduced height for very small screens */
    }

    .header h1 {
        font-size: 1em; /* Further adjusted font size for very small screens */
    }

    .marquee-card {
        width: 80px; /* Further adjusted width for very small screens */
        height: 30px; /* Further adjusted height for very small screens */
        font-size: 10px; /* Further adjusted font size for very small screens */
        margin: 2px; /* Further adjusted margin for very small screens */
    }

    .marquee-content {
        animation: marquee 40s linear infinite; /* Further adjusted animation speed for very small screens */
    }
}
    /* Custom Styles for .topic */
.topic {
    background-color: #e3f2fd; /* Light blue background for emphasis */
    border: 1px solid #b3e5fc; /* Light blue border */
    border-radius: 8px; /* Rounded corners */
    padding: 1rem; /* Space inside the box */
    margin-top: 10px;
    margin-bottom: 10px; /* Space below the topic section */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.topic h1 {
    font-size: 2rem; /* Larger font size for the heading */
    color: #0277bd; /* Darker blue color for the heading */
    margin-bottom: 0.5rem; /* Space below the heading */
    text-align: center;
}


       
        .sidebar {
            background-color: #f4f4f4;
            padding: 1rem;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
        }

        .sidebar h2 {
            font-size: 1.5rem;
            margin-top: 0;
        }

        .sidebar ul {
            list-style-type: none;
            padding: 0;
        }

        .sidebar ul li {
            margin: 0.5rem 0;
        }

        .sidebar ul li a {
            text-decoration: none;
            color: #0277bd;
        }

        .sidebar ul li a:hover {
            text-decoration: underline;
        }

        .content {
            padding: 1rem;
        }

        section {
            margin-bottom: .5rem;
        }

        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin-bottom: 1rem;
        }

        .footer {
            background-color: #f4f4f4;
            padding: 1rem;
            text-align: center;
            margin-top: 2rem;
        }

        .hero {
            display: flex;
            justify-content: center;
            align-items: center;
            background: skyblue;
            padding: 40px;
            height: auto;
            box-sizing: border-box;
        }

        .hero-content {
            max-width: 600px;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .hero h1 {
            margin: 0;
            font-size: 2.5rem;
            color: #333;
        }

        .hero p {
            font-size: 1.2rem;
            margin: 10px 0;
            color: #555;
        }

        .btn-secondary {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            cursor: pointer;
            border-radius: 4px;
        }

        
/* Services Section */
.services {
    padding: 50px 0;
    background-color: skyblue;
    text-align: center;
    margin-top: .5rem;
}

.services h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #0288d1; /* Blue color */
    animation: fadeIn 2s ease-in-out;
}

a {
    
text-decoration: none;

}

.service-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-card {
    background: blue; /* Blue gradient */
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
    font-size: 2rem;
    color: white; /* Blue color */
    margin-bottom: 10px;
}

.service-card h2 {
    margin-top: 0.5rem;
    color: red;
}

.service-card p {
color: white;

}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .service-carousel {
        flex-direction: column;
        align-items: center;
    }
}



/* General Styles for Therapy Section */
.therapies {
    padding: 20px;
    background-color: skyblue;
    margin-top: .5rem;
}

.therapies h1{
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #0288d1; /* Blue color */
    animation: fadeIn 2s ease-in-out;
    text-align: center;
}

.therapy-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.therapy-card {
    background: blue;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.therapy-card i {
    color: white;
}

.therapy-card h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: white;
}

.therapy-card p {
    font-size: 1rem;
    margin: 10px 0;
    
}

.therapy-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    color: red;
}

.therapy-card a:hover {
    text-decoration: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #81d4fa, #29b6f6); /* Blue gradient */
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 2rem;
}



.about {
            background-color: skyblue; /* Light blue background */
            padding: 3rem 1rem;
            text-align: center;
            margin-top: .5rem;
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .about-image {
            flex: 1;
            max-width: 500px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        .about-content {
            flex: 2;
            max-width: 700px;
            border: 2px solid #0288d1; /* Blue border for the content */
            border-radius: 10px;
            padding: 2rem;
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 2s ease-in-out;
        }

        .about-content h1 {
            font-size: 2.5rem;
            color: #0277bd; /* Darker blue for text */
            margin-bottom: 1rem;
        }

        .about-content p {
            font-size: 1.25rem;
            margin: 1rem 0;
        }

        /* Flap Cards Container */
.flap-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem; /* Add space between flap cards */
    justify-content: center;
    perspective: 1000px;
}

/* Individual Flap Cards */
.flap-card {
    width: 200px;
    height: 250px;
    position: relative;
    perspective: 1000px;
}

/* Card Inner Flip */
.flap-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Flip Animation */
.flap-card:hover .flap-card-inner {
    transform: rotateY(180deg);
}

/* Card Front and Back */
.flap-card-front,
.flap-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

/* Front of the Card */
.flap-card-front {
    background: #3498db;
    color: #ffffff;
    backface-visibility: hidden;
}

/* Front Card Icon and Text */
.flap-card-front i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.flap-card-front h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.flap-card-front p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Back of the Card */
.flap-card-back {
    background: #ecf0f1;
    color: #2c3e50;
    backface-visibility: hidden;
    transform: rotateY(180deg);
}

.flap-card-back h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.flap-card-back p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 1rem;
    }

    .about-content {
        max-width: 100%;
    }

    .flap-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem; /* Adjust gap for smaller screens */
    }

    .flap-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}
.doctors {
    text-align: center;
    padding: 2rem;
    background-color: skyblue;
    margin-top: .5rem;
}

.doctor-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
}

.doctor-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    overflow: hidden; /* Hide overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doctor-image-card {
    background-color: #ffffff;
    text-align: center;
    flex: 1 1 200px; /* Flex-grow, flex-shrink, flex-basis */
    max-height: 350px;
}

.doctor-details-card {
    background-color: aqua;
    text-align: justify;
    padding: 1rem;
    flex: 1 1 600px; /* Flex-grow, flex-shrink, flex-basis */
    max-width: 100%;
    max-height: 400px; /* Set max-height to constrain the height */
    overflow-y: auto; /* Add vertical scrolling */
}

.doctor-details-card h3{
text-align: center;
color: red;
font-size: 36px;
font-weight: bold;
}

/* Hover effects */
.doctor-image-card:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.doctor-details-card:hover {
    background-color: skyblue;
    transform: scale(1.05);
}

.doctor-card img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Optional: Add a hover effect for the images as well */
.doctor-image-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .doctor-card {
        width: 100%;
        height: auto; /* Allow height to be auto on smaller screens */
    }

    .doctor-details-card {
        padding: 1rem;
        max-height: none; /* Remove max-height constraint on smaller screens */
    }
}

/* Article Section Styles */
.article-section {
    
    padding: 2rem;
    background-color: skyblue;
    margin-top: .5rem;
}

.article-section h1{
text-align: center;
color: white;
}

/* Individual Article Styles */
article {
    background: white;
    padding: 10px; /* Padding inside the article */
    margin-bottom: 15px; /* Margin between articles */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Article Title Styles */
article h2 {
    margin-top: 0;
    font-size: 1.5rem; /* Adjust title size if necessary */
}

/* Article Paragraph Styles */
article p {
    line-height: 1.4; /* Line height for paragraphs */
    margin: 0; /* Remove default margin if needed */
    font-size: 0.9rem; /* Font size for content */
}

/* Read More Button Styles */
.read-more {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more i {
    margin-left: 8px;
}


/* Appointment Page Styles */
.appointment {
    padding: 3rem 1rem;
    background-color: skyblue; /* Light blue background */
    text-align: center;
margin-top: .5rem;
}

.appointment h1 {
    font-size: 2.5rem;
    color: #0277bd; /* Darker blue for the heading */
    margin-bottom: 2rem;
}

/* Grid container for form and message */
.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns layout */
    gap: 2rem; /* Space between columns */
    max-width: 1200px; /* Max width of the grid container */
    margin: auto;
}

/* Form Container */
.appointment-form {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #0288d1; /* Blue border for the form */
    padding: 2rem;
    display: flex;
max-width: 500px;
max-height: auto;
    flex-direction: column;
    gap: 1.5rem;
}

/* Flex container for form rows */
.form-row {
    display: flex;
    align-items: center; /* Center align items vertically */
    gap: 1rem; /* Space between label and input */
}

/* Label and input styling */
.appointment-form label {
    flex: 1; /* Labels take up space on the left */
    font-weight: bold;
    color: #0277bd; /* Darker blue for labels */
    margin: 0; /* Remove default margin */
    text-align: right; /* Align text to the right */
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    flex: 2; /* Inputs take up space on the right */
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: #0288d1; /* Blue border on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 136, 204, 0.5);
}

.appointment-form button {
    padding: 0.5rem 1rem; /* Adjusted padding */
    background-color: #0288d1; /* Blue background */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem; /* Smaller font size */
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 150px; /* Set a specific width */
    margin: 0 auto; /* Center the button horizontally */
}

.appointment-form button:hover {
    background-color: #0277bd; /* Darker blue on hover */
    transform: scale(1.05);
}

.appointment-form button:active {
    background-color: #01579b; /* Even darker blue when clicked */
}


.appointment-message {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 2px solid #0288d1; /* Blue border for the message */
    text-align: center; /* Center align text and image */
}

.appointment-message h2 {
    font-size: 2rem;
    color: #0277bd; /* Darker blue for the heading */
    margin-bottom: 1rem;
}

.appointment-message p {
    font-size: 1rem;
    color: #333;
}

.appointment-message .message-image {
    max-width: 100%; /* Ensure image does not exceed container width */
    height: auto; /* Maintain aspect ratio */
    margin: 1rem 0; /* Space around the image */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .appointment-container {
        grid-template-columns: 1fr; /* Single column layout for small screens */
        gap: 1rem; /* Reduced gap for small screens */
    }
    
    .appointment-form,
    .appointment-message {
        padding: 1rem; /* Adjust padding for small screens */
    }
    
    .form-row {
        flex-direction: column; /* Stack label and input vertically on small screens */
        gap: 0.5rem;
    }
}




/* Consultation Page Styles */
.consultation {
    padding: 2rem;
    background-color: skyblue; /* Light blue background */
    text-align: center;
margin-top: .5rem;
}

.consultation h1 {
    font-size: 2.5rem;
    color: #0277bd; /* Darker blue for heading */
    margin-bottom: 1rem;
}

.consultation p {
    font-size: 1.25rem;
    color: #01579b; /* Slightly darker blue for text */
    margin-bottom: 2rem;
}

.consultation-controls {
    margin-bottom: 2rem;
}

.consultation-controls .button {
    padding: 0.75rem 2rem;
    background-color: #0288d1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.consultation-controls .button:hover {
    background-color: #0277bd;
    transform: scale(1.05);
}

.consultation-controls .button:disabled {
    background-color: #b0bec5; /* Grey for disabled button */
    cursor: not-allowed;
}

/* Options Section */
.consultation-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.consultation-options .option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultation-options input[type="checkbox"] {
    accent-color: #0288d1; /* Blue accent color for checkboxes */
}

.consultation-options label {
    font-size: 1rem;
    color: #0277bd; /* Darker blue for labels */
}

/* Chat Box Styles */
.chat-box {
    max-width: 600px;
    margin: auto;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #0288d1;
}

.chat-box h2 {
    font-size: 1.5rem;
    color: #0277bd;
    margin-bottom: 1rem;
}

.chat-box .messages {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.chat-box input[type="text"] {
    width: calc(100% - 90px);
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.chat-box button {
    padding: 0.5rem 1rem;
    background-color: #0288d1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.chat-box button:hover {
    background-color: #0277bd;
    transform: scale(1.05);
}

.chat-box button:disabled {
    background-color: #b0bec5; /* Grey for disabled button */
    cursor: not-allowed;
}



/* Contact Page Styles */
.contact {
    padding: 2rem;
    background-color: skyblue; /* Light cyan background for the section */
    text-align: center;
    font-family: Arial, sans-serif; /* Updated font */
margin-top: .5rem;
}

/* Container for two columns */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Gap between columns */
    justify-content: center; /* Center columns horizontally */
    max-width: 1200px; /* Maximum width for large screens */
    margin: 0 auto; /* Center container horizontally */
    padding-top: 2rem;
}

/* Contact Page Styles */
.contact {
    padding: 2rem;
    background-color: skyblue; /* Light cyan background for the section */
    text-align: center;
    font-family: Arial, sans-serif; /* Updated font */
}

/* Container for two columns */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Gap between columns */
    justify-content: center; /* Center columns horizontally */
    max-width: 1200px; /* Maximum width for large screens */
    margin: 0 auto; /* Center container horizontally */
}

/* Contact Info Styles */
.contact-info {
    flex: 1;
    min-width: 300px; /* Minimum width for responsiveness */
    background-color: #ffffff; /* White background for the info card */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 2rem; /* Padding inside the info card */
    border: 2px solid #007bff; /* Blue border for the info card */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Hover effect for the info card */
.contact-info:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #0277bd; /* Darker blue for section headings */
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin: 0.75rem 0; /* Slightly increased margin */
    display: flex;
    align-items: center; /* Vertically center icons */
    transition: color 0.3s ease; /* Smooth color transition */
}

.contact-info p:hover {
    color: #007bff; /* Change text color on hover */
}

.contact-info i {
    margin-right: 0.75rem; /* Increased margin for better spacing */
    color: #007bff; /* Icon color matching button */
    transition: color 0.3s ease; /* Smooth icon color transition */
}

.contact-info p:hover i {
    color: #0056b3; /* Darker icon color on hover */
}

/* Additional styles for the information notes */
.info-note {
    font-size: 0.9rem; /* Slightly smaller font size */
    color: #555; /* Subtle gray color for notes */
    margin-top: 0.5rem; /* Space above the notes */
}

/* Contact Form Styles */
.contact-form {
    flex: 1;
    min-width: 300px; /* Minimum width for responsiveness */
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Increased gap for better spacing */
    background-color: #ffffff; /* White background for the form card */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 2rem; /* Increased padding */
    border: 2px solid #007bff; /* Blue border for the form */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Hover effect for the form card */
.contact-form:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.contact-form label {
    font-weight: bold;
    color: #333; /* Darker text color */
    font-size: 1.1rem; /* Slightly larger font size */
}

.contact-form input, 
.contact-form textarea {
    padding: 0.75rem; /* Increased padding */
    border-radius: 5px;
    border: 1px solid #ccc; /* Lighter border */
    font-size: 1rem; /* Consistent font size */
    transition: border-color 0.3s ease; /* Smooth border color transition */
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Subtle shadow effect */
}

.contact-form button {
    padding: 0.75rem;
    background-color: #007bff; /* Primary blue color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem; /* Consistent font size */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.contact-form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight enlargement on hover */
}


/* General Styles */
.faq {
    padding: 2rem;
    background-color: #87CEEB; /* Sky blue */
    margin-top: .5rem;
}
.faq h1{
text-align: center;
color: white;
margin-bottom: 2rem;
}

.accordion {
    background-color: #007bff; /* Blue color for the header */
    color: white;
    cursor: pointer;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    text-align: left;
    font-size: 1.2rem;
    width: 100%;
    outline: none;
    transition: background-color 0.3s ease;
    margin-bottom: 0.5rem; /* Gap between accordion buttons */

}

.accordion:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.panel {
    padding: 0 1rem;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1; /* Light gray for content */
    border-radius: 0 0 5px 5px;
    margin-bottom: 1rem; /* Gap between panels */
}

.panel p {
    margin: 1rem 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accordion {
        font-size: 1rem;
    }

    .panel p {
        font-size: 0.9rem;
    }
}
