@import url('https://fonts.googleapis.com/css?family=Montserrat:wght@400; 500;600; 700 family=Poppins:weight@400;506;600; 700 &display=swap');

*{
    
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: black;
}
ul{
    list-style:  none; 

}
.menuAera{
    padding: 20px 0;
    background: linear-gradient(135deg, #FFFFF0, #7ea09c);
    
   
}

.alignment{
    width: 85%;
    margin: auto;

}


.menuconMain{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.menu{
    
    display: flex;
    gap: 30px;
   
}

.menu li a {
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat';
}

.menu li a:hover{
    color: red;
}

.menu2{
    display: flex;
    gap: 30px;
}

.menu2 li a {
    color: black;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat';
    height: 35px;
    width: auto;
    border: 2px solid #3c4858;
    border-radius:8px ;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: rgb(11, 11, 11);
    
}

.menu2 li a:hover{
    color: rgb(248, 247, 247);
    background: red;
    border-color: red
    ;
}

.heroArea {
    padding: 300px 0;
    position: relative; /* Allows for positioning the overlay */
    background-image: url('../bg01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.heroArea::before {
    content: ""; /* Empty content for the overlay */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
    z-index: 1; /* Ensure the overlay stays above the background image */
}

.heroArea > * {
    position: relative; /* Ensures the content stays above the overlay */
    z-index: 2;
}


.heroCon h1{
    color: red;
    font-size: 42px;
    font-weight: 500;

}
.sub-text2 {
    color: #ffffff; /* White text for strong contrast */
    font-family: 'Roboto', sans-serif; /* Clean, professional font */
    font-size: 20px; /* Slightly larger text for better readability */
    line-height: 1.8; /* Better spacing between lines */
    font-weight: 500; /* Slightly bolder text */
    text-align: center; /* Centered text */
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0); /* Darker semi-transparent black */
    padding: 15px 25px; /* More padding for spacing */
    border-radius: 10px; /* Smooth corners */
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    
}



.make-appointment-btn {
    padding: 10px 25px; /* Combines padding-top/bottom and padding-left/right */
    background-color: #007bff; /* Vibrant blue */
    color: #ffffff; /* White text */
    border: none;
    border-radius: 5px; /* Smooth rounded corners */
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Hover Effect */
.make-appointment-btn:hover {
    background-color: #0056b3; /* Darker blue for hover */
}



.heroCon h3{
    color: rgb(222, 26, 26);

    font-size: 30px;
    font-weight: 500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
}

.service-options {
    display: flex ;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.option {
    background-color: #fff;
    padding: 20px;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-radius: 8px;
    transition: transform 0.3s;
}

.option:hover {
    transform: translateY(-5px);
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 40px;
    height: 40px;
}

.arrow {
    width: 24px;
    height: 24px;
}

.option h3 {
    font-size: 18px;
    color: #333;
}

.option p {
    font-size: 14px;
    color: #777;
}

.box1{
    display: flex;
    gap: 1.5rem;
}



/* Footer Styling */
.footer {
    text-align: center;
    padding: 2em;
    background: linear-gradient(135deg, #FFFFF0, #7ea09c);
    color: #0a0707;
}

.footer-logo {
    text-align: center;
    margin: 1em auto;
}

.footer .logo {
    width: 100px;
    height: auto;
}

/* Flex container for footer columns */
.footer-content {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5em;
    text-align: left;
}

/* Each column inside the footer */
.footer-column {
    flex: 1;
    margin: 0 1em;
}

/* Social Media Icons */
.social-media {
    margin-top: 1em;
}

.social-media a {
    color: #000;
    margin: 0 0.5em;
    font-size: 1.5em;
    text-decoration: none;
}

.social-media a:hover {
    color: #8ac8d5;
}

/* Legal Links */
.legal-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5em;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* App Download Icons */
.app-download {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-icon {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    margin: 0.5em 0;
    display: flex;
    align-items: center;
}

.app-icon i {
    margin-right: 0.5em;
}

.app-icon:hover {
    color: #060303;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin: 1em 0;
    }
}
  
