      /* Banner Section Styles */
        .banner-section {
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .banner-desktop {
            display: none;
        }

        .banner-mobile {
            display: block;
        }

        .banner-section img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* Desktop banner visibility */
        @media (min-width: 768px) {
            .banner-desktop {
                display: block;
            }

            .banner-mobile {
                display: none;
            }
        }

        /* Hero Section Styles */
        .contact-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0 60px;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-subtitle {
      font-size: 1.7rem;
    color: #09090a;
    margin-bottom: 2rem;
}
        

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary-call {
            background: #28a745;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-call:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }

        .btn-secondary-book {
            background: #007bff;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary-book:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        /* Info Cards */
        .contact-info-section {
            padding: 60px 0;
            background: white;
        }

        .info-card {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background: #007bff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .info-icon i {
            font-size: 1.5rem;
            color: white;
        }

        /* Form Styles */
        .contact-form-wrapper {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .modern-form .form-group {
            margin-bottom: 1.5rem;
        }

        .modern-form label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .modern-form .form-control {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 3px 15px;
            transition: border-color 0.3s ease;
        }

        .modern-form .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

        .btn-submit {
            background: #007bff;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-submit:hover {
            background: #0056b3;
            transform: translateY(-2px);
        }

        /* Sidebar */
        .contact-sidebar {
            padding: 2rem;
        }

        .why-choose-us {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .benefits-list i {
            color: #28a745;
        }

        .emergency-contact {
            background: #dc3545;
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }

        .emergency-btn {
            background: white;
            color: #dc3545;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 1rem;
        }

        /* Map Section */
        .map-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        /* Floating Call Button */
        .floating-call-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .floating-call-btn a {
            background: #28a745;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Error Messages */
        .error-message {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        .alert {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .alert-success {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
.border_set img
{
    border-radius: 20px;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        background: #98adb3;
}
.space-top
{
    margin-top: 20px;
}
.btn-green-call
{
    background: #a85100;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s 
ease;
    display: inline-flex
;
    align-items: center;
    gap: 8px;
}
.btn-blue-call
{
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s 
ease;
    display: inline-flex
;
    align-items: center;
    gap: 8px;
}
.btn-blue-call:hover
{
    background: #1a2938;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s 
ease;
    display: inline-flex
;
    align-items: center;
    gap: 8px;
}
     
.btn-green-call:hover
{
    background: #6a3402;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
       .carousel-control {
        top: 50% !important;
    }

    .contact-hero1 {
        background-color: #ffffff;
        padding: 30px 0px;
    }

    @media (min-width: 770px) {

        .carousel-landing1 {
            display: none !important
        }

        .carousel-landing {
            display: block !important
        }

        .carousel-control {
            width: 3% !important;
            top: 50% !important;
        }
    }

    @media (max-width: 768px) {
        .carousel-landing {
            display: none !important
        }

        .carousel-landing1 {
            display: block !important
        }
    }

    /* Modern Dental Services Styles */
    .modern-dental-services {
        padding: 30px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .section-title-modern {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        position: relative;
    }

    .title-underline {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2980b9);
        margin: 0 auto 3rem;
        border-radius: 2px;
    }

    .services-grid-modern {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-card-modern {
        background: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

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

    .service-image-modern {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .service-image-modern img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-card-modern:hover .service-image-modern img {
        transform: scale(1.1);
    }

    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card-modern:hover .service-overlay {
        opacity: 1;
    }

    .service-icon {
        font-size: 3rem;
        color: #ffffff;
    }

    .service-content-modern {
        padding: 2rem;
    }

    /* New Row-based Layout Styles */
    .services-rows-modern {
        margin-top: 3rem;
    }

    .service-row-modern {
        background: rgb(236 233 224);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 3rem;
        overflow: hidden;
        padding: 20px;
        transition: all 0.3s ease;
        position: relative;
    }

    .service-row-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-row-modern:last-child {
        margin-bottom: 0;
    }

    .service-image-left {
        position: relative;
        height: 300px;
        overflow: hidden;
        border-radius: 15px 0 0 15px;
    }

    .service-image-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-row-modern:hover .service-image-left img {
        transform: scale(1.05);
    }

    .service-overlay-left {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-row-modern:hover .service-overlay-left {
        opacity: 1;
    }

    .service-icon-left {
        font-size: 3rem;
        color: #ffffff;
    }

    .service-content-right {
        padding: 10px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-title-modern {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .service-divider {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #2980b9);
        margin-bottom: 1.5rem;
        border-radius: 2px;
    }

    .service-list-modern {
        list-style: none;
        padding: 0;
    }

    .service-list-modern li {
        margin-bottom:3px;
        display: flex;
        align-items: center;
    }

    .service-list-modern li i {
       color: #ffffff;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    }

    .service-list-modern li a {
        color: #34495e;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .service-list-modern li a:hover {
        color: #3498db;
    }

    /* Modern Why Choose Styles */
    .modern-why-choose {
        padding: 80px 0;
        background: #ffffff;
    }

    .why-choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .why-choose-card {
          background: linear-gradient(356deg, rgb(211 218 193) 0%, rgb(248 255 238) 50%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s 
ease;
    border: 1px solid #e8f4f8;
    }

    .why-choose-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        border-color: #3498db;
    }

    .card-icon-modern {
        position: relative;
        margin-bottom: 1.5rem;
        display: inline-block;
    }

    .card-icon-modern img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        position: relative;
        z-index: 2;
    }

    .icon-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        border-radius: 50%;
        opacity: 0.1;
        z-index: 1;
    }

    .card-content-modern h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .card-content-modern p {
        color: #7f8c8d;
        line-height: 1.6;
        margin: 0;
    }

    /* Modern Surgery Care Styles */
    .modern-surgery-care {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .care-grid-modern {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .care-card-modern {
        background: #ffffff;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .care-card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2980b9);
    }

    .care-card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .care-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .care-icon {
        width: 60px;
        height: 60px;
            background: radial-gradient(#0da7af, #053f4d);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        color: #ffffff;
        font-size: 1.5rem;
    }

    .care-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
    }

    .care-list-modern {
        list-style: none;
        padding: 0;
    }

    .care-list-modern li {
     display: flex;
    align-items: baseline;
    /* margin-bottom: 1rem;
    padding: 0.1rem 0; */
    border-bottom: 1px solid #ecf0f1;
    }

    .care-list-modern li:last-child {
        border-bottom: none;
    }

    .care-list-modern li i {
        color: #08626e;
    margin-right: 1rem;
    margin-top: 0.0rem;
    font-size: 1.4rem;
    padding: 7px;
    flex-shrink: 0;

    }

    .care-list-modern li span {
        color: #34495e;
        line-height: 1.6;
    }

    /* Modern FAQ Styles */
    .modern-faq-section {
 padding: 30px 0;
    
    background: #a5d9d1;
    }

    .faq-container-modern {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item-modern {
        background: #ffffff;
        border-radius: 10px;
        margin-bottom: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item-modern:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
           padding: 1.5rem 2rem;
    background: linear-gradient(359deg, #f8f9fa, #c5ceb1);
    cursor: pointer;
 
    display: flex
;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s 
ease;
    border-left: 4px solid #3b8498;
    }

    .faq-question:hover {
        background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
    }

    .faq-question h4 {
  font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    }

    .faq-question i {
        color: #3498db;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .faq-question[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 2rem 1.5rem;
        background: #ffffff;
    }

    .faq-answer p {
           color: #0c0f0f;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
    }
.bg_color
{
        background: #c8e1dd;
}
.h1-head
{
    margin-bottom: 0px;
}
  /* Modern Service List Styles */
    .service-list-modern {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-list-modern li {
        margin-bottom:1px;
        display: flex;
        align-items: center;
        padding:1px;
        /* background: #f8f9fa; */
        border-radius: 12px;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
        gap: 1rem;
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    }

    .service-list-modern li:hover {
     background: #ffffff;
    border-left-color: #0da7af;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgb(255 255 255 / 20%);
    }

    .service-list-modern li i {
          background: radial-gradient(#0da7af, #053f4d);
    color: #f2f2f2;
    font-size: 1.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13, 167, 175, 0.3);
    transition: all 0.3s 
ease;
    }

    .service-list-modern li:hover i {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(13, 167, 175, 0.4);
    }

    .service-list-modern li a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.4rem;
        transition: all 0.3s ease;
        flex: 1;
        display: flex;
        align-items: center;
        line-height: 1.4;
        padding: 10px;
    }

    .service-list-modern li a:hover {
        color: #033b4a;
        text-decoration: none;
    }

    /* Responsive adjustments for service list */
    @media (max-width: 768px) {
        .service-list-modern li {
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
            gap: 0.8rem;
        }

        .service-list-modern li i {
            width: 20px;
            height: 20px;
            font-size: 0.8rem;
        }

        .service-list-modern li a {
            font-size: 0.9rem;
            line-height: 1.3;
        }
    }
    /* Responsive Design */
    @media (max-width: 768px) {
        .section-title-modern {
            font-size: 2rem;
        }

        .services-grid-modern {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .why-choose-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .care-grid-modern {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .faq-question {
            padding: 1rem 1.5rem;
        }

        .faq-answer {
            padding: 0 1.5rem 1rem;
        }

        .faq-question h4 {
            font-size: 1rem;
        }

        /* Mobile styles for service rows */
        .service-image-left {
            height: 250px;
            border-radius: 15px 15px 0 0;
        }

        .service-content-right {
            height: auto;
            padding: 2rem;
        }

        .service-row-modern .flex-row-reverse {
            flex-direction: column-reverse !important;
        }

        .service-row-modern .flex-row-reverse .service-image-left {
            border-radius: 0 0 15px 15px;
        }
    }

/* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-primary-call,
            .btn-secondary-book {
                text-align: center;
                justify-content: center;
            }

            .contact-sidebar {
                margin-top: 2rem;
            }
        }

        .contact-sidebar .why-choose-us h2 {
            font-size: 20px !important;
        }

        .why-choose-us ul li {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 15px;
            line-height: 24px;
            color: #0b4150;
            position: relative;
            padding: 0;
            font-family: 'Poppins', sans-serif;
        }