/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding: 40px 0;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-title .highlight {
    color: #123458;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #123458;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #123458;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(123, 104, 238, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary i {
    font-size: 20px;
    margin-left: 8px;
}

.tooth-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-primary:hover {
    background: #123458;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(123, 104, 238, 0.3);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: white;
    color: #123458;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #123458;
}

.btn-secondary:hover {
    background: #123458;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.image-container {
    position: relative;
    z-index: 2;
}

.doctor-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    
}

.tooth-accent {
    position: absolute;
    width: 60px;
    height: 80px;
    background: rgba(123, 104, 238, 0.1);
    clip-path: path('M30 0C13.4 0 0 13.4 0 30v20c0 16.6 13.4 30 30 30s30-13.4 30-30V30C60 13.4 46.6 0 30 0zm0 60c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15z');
}

.tooth-top {
    top: -30px;
    right: 30px;
    transform: rotate(45deg);
}

.tooth-bottom {
    bottom: -30px;
    left: 30px;
    transform: rotate(-135deg);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}

.dental-icon-box {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(123, 104, 238, 0.1);
}

.dental-icon {
    width: 24px;
    height: 24px;
    fill: #123458;
}

.dental-icon-box i {
    font-size: 24px;
    color: #123458;
}

.dental-icon-box span {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

.box-1 {
    top: 10%;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.box-2 {
    bottom: 20%;
    left: -20px;
    animation: float 6s ease-in-out infinite 1s;
}

.box-3 {
    top: 50%;
    right: 10%;
    animation: float 6s ease-in-out infinite 2s;
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tooth-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(123, 104, 238, 0.05);
    clip-path: path('M100 0C44.8 0 0 44.8 0 100v66.7C0 222.4 44.8 267.2 100 267.2s100-44.8 100-100V100C200 44.8 155.2 0 100 0zm0 200c-27.6 0-50-22.4-50-50s22.4-50 50-50 50 22.4 50 50-22.4 50-50 50z');
}

.tooth-bg-1 {
    top: -100px;
    right: 10%;
    transform: rotate(30deg);
}

.tooth-bg-2 {
    bottom: -50px;
    left: 5%;
    transform: rotate(-15deg);
}

.tooth-bg-3 {
    top: 40%;
    right: -100px;
    transform: rotate(60deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .tooth-bg {
        width: 150px;
        height: 150px;
    }

    .background-tooth i {
        font-size: 300px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dental-icon-box {
        display: none;
    }

    .background-tooth i {
        font-size: 250px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .tooth-accent {
        width: 40px;
        height: 60px;
    }

    .tooth-bg {
        width: 100px;
        height: 100px;
    }

    .background-tooth i {
        font-size: 200px;
    }
} 