/* hero section start */
 /* Base Styles (consistent with header.php) */
 :root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --cream-color: #E9E3D5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    
    /* background-color: var(--cream-color); */
}

/* Hero Section */
.hero-section {
    /* background: url('images/hero_bg.jpg') no-repeat center center/cover; */
    padding: 0px 20px;
    height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero_bg_img.png') no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.hero-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 999;
    
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-content button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    position:relative;
    z-index:110;
}

.hero-content button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.hero-content button a {
    color: white;
    text-decoration: none;
}
.hero-image{
    width:46%;
    height: 900px;
}
.hero-container img {
    max-width: 500px;
    width: 650px;
    animation: fadeIn 1s ease forwards, float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    position: relative;
    z-index: 99999999;
    top: 150px;


}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        /* flex-direction: column; */
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-container img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 1rem;
        display:none;
    }

    .hero-container img {
        max-width: 470px;

        padding-right: 36px;
        margin-top: 141px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-container img {
        max-width: 280px;
    }
}
/* hero section end */


 /* About Section Styles */
 .about-section {
    padding: 100px 20px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 120px;
}

.about-section-content {
    flex: 1;
    animation: fadeInLeft 1s ease forwards;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 25px 0;
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 600px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    padding: 25px;
    background: rgba(233, 227, 213, 0.3);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(233, 227, 213, 0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.cta-button a {
    color: white;
    text-decoration: none;
}

.about-section-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 1s ease forwards;
}

.image-wrapper {
    position: relative;
    max-width: 440px;
}

.about-section-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.image-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 8px solid var(--cream-color);
    border-radius: 15px;
    top: -20px;
    right: -20px;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.7rem;
    text-align: center;
    display: block;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .about-section-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .divider {
        margin: 25px auto;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .image-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .image-border {
        display: none;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        right: 0;
    }
}
/* about section end */

/* service section start */
/* Service Section Styles */
.service-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease forwards;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 25px auto;
    border-radius: 2px;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-box:hover::before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-box:hover .service-icon {
    background: white;
    color: white;
    transform: rotateY(180deg) scale(1.1);
}

.service-box h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-box:hover h3 {
    color: white;
}

.service-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-box:hover p {
    color: rgba(255,255,255,0.9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-box:hover .service-link {
    color: white;
}

.service-link i {
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Box Stagger Animation */
.service-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }
.service-box:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Styles */
@media (max-width: 992px) {
    .service-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-box {
        padding: 30px 20px;
    }
}

/* service section end */

/* quality section start */
 /* Quality Section Styles */
 .quality-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.quality-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.quality-section-image {
    flex: 1;
    position: relative;
}

.quality-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.quality-section-image:hover .quality-image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
}

.quality-section-image img {
    width: 500px;
    height: 500px;
    display: block;
    transition: all 0.5s ease;
    object-fit: contain;
}

.quality-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.1) 0%, rgba(44, 62, 80, 0.4) 100%);
}

.experience-badge-box{
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.experience-badge-box span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge-box small {
    font-size: 0.7rem;
    text-align: center;
    display: block;
    margin-top: 5px;
}

.quality-section-content {
    flex: 1;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.quality-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.satisfaction-box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.satisfaction-box {
    background: white;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.satisfaction-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.satisfaction-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.satisfaction-box-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: all 0.4s ease;
}

.satisfaction-box:hover .number {
    color: var(--secondary-color);
}

.satisfaction-box-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.satisfaction-box-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(52, 152, 219, 0.1);
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.satisfaction-box:hover .box-icon {
    color: rgba(52, 152, 219, 0.2);
    transform: scale(1.2);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.cta-button a {
    color: white;
    text-decoration: none;
}

/* Animations */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .quality-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .quality-section-image, 
    .quality-section-content {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .quality-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .satisfaction-box-container {
        grid-template-columns: 1fr;
    }
    .quality-section-image img{
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .experience-badge-box {
        width: 80px;
        height: 80px;
        right: 0;
    }
    
    .experience-badge-box span {
        font-size: 1.8rem;
    }
}
/* quality section end */


/* contact section start */
/* Contact Section Styles */
/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMjAsMjIwLDIyMCwwLjMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 25px auto;
    border-radius: 2px;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info, .contact-form {
    flex: 1;
}

/* Contact Information Styles */
.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: flex-start;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(to right, white 90%, rgba(52, 152, 219, 0.05));
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
    color: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-box:hover .info-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.info-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.info-box:hover .info-content h3 {
    color: var(--secondary-color);
}

.info-content p, .info-content a {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 5px;
}

.info-content p + p {
    margin-top: 8px;
}

.info-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.info-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.info-content a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Social Media Styles */
.social-media {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
    text-align: center;
    transition: var(--transition);
}

.social-media:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-media h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.social-media h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.contact-form:hover::before {
    width: 8px;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--text-light);
    transition: var(--transition);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background-color: rgba(240, 240, 240, 0.3);
}

.form-group textarea {
    border-radius: 20px;
    resize: none;
    min-height: 120px;
    padding-top: 20px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    background-color: white;
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.2);
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--secondary-light));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.4);
}

.submit-btn i {
    font-size: 1.3rem;
}

/* Maps Container Styles */
.maps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.map-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.map-wrapper h3 {
    padding: 20px;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, rgba(52, 152, 219, 0.05), white);
}

.map-wrapper h3 i {
    color: var(--secondary-color);
}

.map-iframe {
    height: 300px;
    position: relative;
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-content {
        gap: 30px;
    }
    
    .maps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .maps-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .map-wrapper h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px 12px 45px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .maps-container {
        grid-template-columns: 1fr;
    }
}

/* Form WhatsApp Integration */
#appointmentForm {
    transition: all 0.5s ease;
}

#appointmentForm:hover {
    transform: translateY(-3px);
}

#appointmentForm:focus-within {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* contact section end */



/* Equipment section start */
.eqipment-section{
    padding: 100px 20px;
    background-color:var(--primary-color);
    position: relative;
    overflow: hidden;
    
}
.eqipment-container{
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    /* align-items: center; */
    gap: 60px;
    justify-content: space-around;
    
}

.eqipment-content{
    flex: 1;    
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.eqipment-content h2{
    font-size: 2.8rem;
    /* color: white;    */
    margin-bottom: 20px;
    font-weight: 300;
}

.eqipment-content h1{
    font-size: 4.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.equipment-list-container{
    flex: 1;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);

}

.equipment-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.5;
}

.equipment-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
    line-height: 1.5;
}

.equipment-list li i{
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}
.eqipment-button{
    background-color: #96b0c9;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin-top: 50px;

}

.eqipment-button:hover{ 
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}
.eqipment-button a{
    text-decoration: none;
    color: white;
}

.eqipment-image{
    flex: 1;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    overflow: hidden;
}

.eqipment-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.eqipment-image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}    

.eqipment-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.1) 0%, rgba(44, 62, 80, 0.4) 100%);
}
.eqipment-image-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.eqipment-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* Equipment section end */


/* look section start */

.look-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.look-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: space-around;
    align-items: center;
}

.look-content {
    flex: 1;    
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.look-content h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);   
    margin-bottom: 20px;
    font-weight: 300;
}

.look-content h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.look-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.look-dental-satisfaction {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

/* Circular progress styles */
.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.circle-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.circle-bg, .circle-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.circle-bg {
    background: #f5f5f5;
    box-shadow: 0 0 0 8px rgba(0,0,0,0.05) inset;
}

.circle-progress {
    clip: rect(0, 120px, 120px, 60px);
    background: var(--primary-color);
    transform: rotate(0deg);
    transition: transform 1.5s ease-out;
}

.circle-content {
    position: absolute;
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(0,0,0,0.05);
}

.percent-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.percent-label {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    padding: 0 10px;
    line-height: 1.2;
}

.look-image {
    flex: 1;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);
    position: relative;
}

.look-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.1); */
}

.look-image img {
    width: 100%;
    height: auto;
    display: block;
}

.look-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.look-image-overlay img {
    width: 60%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .look-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .look-content {
        text-align: center;
    }
    
    .look-dental-satisfaction {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .look-section {
        padding: 60px 20px;
    }
    
    .look-content h2 {
        font-size: 2.2rem;
    }
    
    .look-content h1 {
        font-size: 3.5rem;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .circle-progress {
        clip: rect(0, 100px, 100px, 50px);
    }
    
    .percent-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .look-content h2 {
        font-size: 1.8rem;
    }
    
    .look-content h1 {
        font-size: 2.8rem;
    }
    
    .look-dental-satisfaction {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .circle-progress {
        clip: rect(0, 80px, 80px, 40px);
    }
    
    .percent-value {
        font-size: 1.2rem;
    }
    
    .percent-label {
        font-size: 0.6rem;
    }
}
/* look section end */