@import url(normalize.css);
@import url(states.css);

.nav-link {
    text-transform: capitalize;
    transition: 2s;
    font-weight: var(--font-weight-medium);
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--secendary-color);

}


/* Hero Section */
.hero-section {
    background: var(--primary-color);
    background: linear-gradient(135deg, #1abc9c 0%, #2ecc71 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 0 6%;
}

.hero-image-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%; 
}

.doctor-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.services-container {
    background-color: var(--white);
    padding: 40px 0;
    position: relative;
    border-radius: 10px;
}

.service-card {
    padding: 20px;
}

.service-icon {
    font-size: 40px;
    margin: 10px 0;
    color: var(--primary-color);
}

.service-description {
    color: var(--gray-color);
    font-size: var(--fs-small);
    margin-top: 5px;
}


/* Contact Form Section */

.contact-heading {
    text-align: center;
    margin-bottom: 40px;
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
}

.contact-description {
    color: var(--gray-color);
    font-size: var(--fs-small);
    margin-top: 10px;
    margin-bottom: 30px;
}

.contact-form-section {
    background-color: var(--white); 
}

.contact-info-card,
.contact-form-card {
    background-color: var(--white);
    border: none;
    height: 100%; 
}

.contact-item {
    margin-bottom: 20px;
}

.contact-icon {
    font-size: var(--fs-small);
    color: var(--primary-color); 
}

.contact-info-card h6 {
    font-size: var(--fs-small);
    color: var(--text-color);
}

.contact-info-card p {
    font-size: var(--fs-small);
}

/* Form Styling */
.form-control {
    padding: 15px 20px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25); 
}

textarea.form-control {
    resize: none; 
}


/* Footer Section */
/* Footer Section */
.main-footer {
    background: var(--primary-color);
    background: linear-gradient(135deg, #1abc9c 0%, #2ecc71 100%);
    position: relative;
}

/* Logo Image */
.footer-logo-img {
    max-height: 40px; /* Adjust as needed */
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Links & Text */
.footer-links li a {
    transition: color 0.3s ease;
    font-size: var(--fs-small);
    padding-bottom: 5px;
    display: inline-block;
}



.main-footer a {
    color: var(--white);
}

/* Social Icons */
.social-icon-link {
    font-size: var(--fs-small);
    color: var(--white);
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    color: var(--white);
    transform: translateY(-5px);
}

/* Newsletter Input */
.input-group .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.input-group .form-control::placeholder {
    color: var(--light-gray-color);
}

.input-group .form-control:focus {
    box-shadow: none;
    background-color: var(--gray-color);
}

.footer-divider {
    border-color: var(--gray-color);
}

.footer_title {
    color: var(--secendary-color);
}

.social-icon-link {
    font-size: var(--fs-big) !important;
}
