*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #2A7A8C;
    --secondary-color: #3AB4B2;
    --light-color: #F8F9FA;
    --dark-color: #2C3E50;
}

.hero-section {
    background: linear-gradient(rgba(42, 122, 140, 0.9), rgba(58, 180, 178, 0.8)),
                url('../images/hero-bg.jpg') center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    /* margin-top: 76px; */
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.feature-card {
    background: white;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.welcome-section {
    background: var(--light-color);
}

.footer {
    background-color: var(--dark-color) !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clinic-image {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.clinic-image:hover {
    transform: scale(1.02);
}

.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color) !important;
}
.services-hero {
    background: linear-gradient(rgba(42, 122, 140, 0.9), rgba(58, 180, 178, 0.8)),
                url('../images/service-bg.jpg') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    /* margin-top: 76px; */
}

.service-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--dark-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.cta-section {
    background: var(--secondary-color) !important;
}

.fa-check-circle {
    color: var(--primary-color);
}

.main-services {
    background: linear-gradient(to bottom right, #f8f9fa 0%, #e9ecef 100%);
}
.team-hero {
    background: linear-gradient(rgba(42, 122, 140, 0.9), rgba(58, 180, 178, 0.8)),
                url('../images/team-bg.jpg') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    /* margin-top: 76px; */
}

.team-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-member-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-card:hover .team-member-img {
    transform: scale(1.05);
}

.specialties .badge {
    margin: 2px;
    font-weight: normal;
    background-color: var(--secondary-color) !important;
}

.main-team {
    background: linear-gradient(to bottom right, #ffffff 0%, #f8f9fa 100%);
}

.team-card h3 {
    color: var(--dark-color);
    font-weight: 600;
}

.team-card p.text-primary {
    font-weight: 500;
}
.contact-hero {
    background: linear-gradient(rgba(42, 122, 140, 0.9), rgba(58, 180, 178, 0.8)),
                url('../images/dental-interior.jpg') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    /* margin-top: 76px; */
}

.contact-card, .contact-info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-wrapper {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    /* margin: auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    color: white;
}

.contact-details h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: 2px solid var(--primary-color);
}

#formMessage {
    padding: 1rem;
    border-radius: 8px;
}

.text-success {
    color: var(--primary-color) !important;
}

.text-danger {
    color: #dc3545 !important;
}