/*
Theme Name:     Hello Elementor Child
Theme URI:      https://yourwebsite.com/
Description:    Child theme for Hello Elementor
Author:         Your Name
Author URI:     https://yourwebsite.com/
Template:       hello-elementor
Version:        1.0.0
Text Domain:    hello-elementor-child
*/

/* Import parent theme styles (optional, as Hello Elementor doesn’t use CSS much) */
@import url("../hello-elementor/style.css");

:root {
    --bg-cream: #fdfdf5;
    --dark-brown: #8c816b;
    --light-pista: #add5c3;
    --gold-brown: #ccb36f;
}

.dental-about-section {
    padding: 60px 20px;
    background-color: var(--bg-cream);
    font-family: 'Helvetica', Arial, sans-serif;
    color: #333;
}

.section-title {
    color: var(--dark-brown);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Practice Grid */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.practice-card {
    background: #fff;
    padding: 30px;
    border-bottom: 4px solid var(--light-pista);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.practice-card h3 {
    color: var(--gold-brown);
    margin-top: 0;
}

/* Bio Sections */
.bio-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 80px auto;
    flex-wrap: wrap;
}

.bio-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-pista);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.bio-content {
    flex: 1.5;
    min-width: 300px;
}

.bio-content h2 {
    color: var(--dark-brown);
    border-left: 5px solid var(--gold-brown);
    padding-left: 15px;
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.expertise-list li::before {
    content: "✓";
    color: var(--gold-brown);
    font-weight: bold;
    margin-right: 8px;
}

.reverse {
    flex-direction: row-reverse;
}
/****service page css**/

.services-container {
    background-color: var(--bg-cream);
    padding: 80px 5%;
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
}

.service-category-title {
    color: var(--dark-brown);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 300;
    margin: 60px 0 10px;
    letter-spacing: 1.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px; /* Subtle radius for modern look */
    transition: all 0.3s ease-in-out;
    border: 1px solid #e5e0d3; /* Very light brown border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Subtle hover effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(140, 129, 107, 0.08);
    border-color: var(--light-pista); /* Border colors on hover */
}

/* Top Accent Line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--light-pista);
}

.service-icon {
    font-size: 40px; /* Larger, floating icons */
    color: var(--dark-brown); /* Dark brown color */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8; /* Subtle look */
}

.service-card:hover .service-icon {
    opacity: 1;
    color: var(--gold-brown); /* Icon changes color on hover */
}

.service-card h3 {
    color: var(--dark-brown); /* Heading is now dark brown */
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: 600;
}

.service-card p {
    color: #777;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.category-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-brown);
    margin: 0 auto 50px;
}
/***our technology ***/
.tech-container {
    background-color: var(--bg-cream);
    padding: 60px 0;
    font-family: 'Open Sans', sans-serif;
}

.tech-row {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 100px;
    gap: 60px;
    padding: 0 20px;
}

/* Alternating Layout */
.tech-row:nth-child(even) {
    flex-direction: row-reverse;
}

.tech-image-box {
    flex: 1;
    height: 400px;
    background-color: #fff;
    border: 1px solid #e5e0d3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(140, 129, 107, 0.05);
}

.tech-content {
    flex: 1;
}

.tech-content h2 {
    color: var(--dark-brown);
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.tech-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold-brown);
    margin-top: 10px;
}

.tech-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Specialized AI Section */
.ai-spotlight {
    background-color: #fff;
    border: 2px solid var(--light-pista);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 1100px;
    margin: 100px auto;
    text-align: center;
}

.ai-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-pista);
    color: var(--dark-brown);
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 20px;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ai-benefit-card {
    padding: 20px;
    border-bottom: 2px solid var(--gold-brown);
}

.ai-benefit-card h4 {
    color: var(--dark-brown);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .expertise-list { grid-template-columns: 1fr; }
	.tech-row, .tech-row:nth-child(even) { flex-direction: column; }
    .tech-image-box { width: 100%; height: 300px; }
}