        
        
    /* hero section start */
        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            margin-top: 100px;
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 80vh;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slide-content {
            max-width: 800px;
            color: #fff;
            padding: 20px;
            transform: translateY(50px);
            transition: transform 1s ease;
        }
        
        .slide.active .slide-content {
            transform: translateY(0);
        }
        
        .slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .slide.active .slide-title {
            opacity: 1;
        }
        
        .slide-text {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 1s ease 0.3s;
        }
        
        .slide.active .slide-text {
            opacity: 1;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #FF6B35;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .slide-btn {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.6s;
        }
        
        .slide.active .slide-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .btn:hover {
            background-color: #e05a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 0;
            right: 0;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }
        
        .prev-slide, .next-slide {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .prev-slide:hover, .next-slide:hover {
            background: #FF6B35;
            transform: scale(1.1);
        }
        
        .slide-dots {
            display: flex;
            gap: 10px;
        }
        
        .slide-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slide-dots .dot.active {
            background: #FF6B35;
            transform: scale(1.2);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .slide-title {
                font-size: 2.8rem;
            }
            
            .slide-text {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-slider {
                height: 80vh;
            }
            
            .slide-title {
                font-size: 2.2rem;
            }
            
            .slide-text {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .prev-slide, .next-slide {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-slider {
                height: 70vh;
            }
            
            .slide-title {
                font-size: 1.8rem;
            }
            
            .slide-text {
                font-size: 1rem;
            }
            
            .slider-nav {
                bottom: 30px;
            }
        }
        /* hero section end */

        /* about us start */
       /* About Us Section Styles */
    .about-section {
        padding: 100px 0;
        background-color: #f9f9f9;
        position: relative;
        overflow: hidden;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.8rem;
        color: #292929;
        margin-bottom: 15px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: #FF6B35;
        font-weight: 500;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.2s;
    }
    
    .divider {
        width: 80px;
        height: 3px;
        background: #FF6B35;
        margin: 0 auto;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: center;
        transition: all 0.8s ease 0.4s;
    }
    
    .section-header.animate .section-title,
    .section-header.animate .section-subtitle {
        opacity: 1;
        transform: translateY(0);
    }
    
    .section-header.animate .divider {
        opacity: 1;
        transform: scaleX(1);
    }
    
    .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    
    .about-image {
        flex: 1;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-50px);
        opacity: 0;
        transition: all 0.8s ease;
    }
    
    .about-image img {
        width: 100%;
        height: 550px;
        display: block;
        transition: transform 0.5s ease;
        object-fit: cover;
    }
    
    .zoom-effect:hover img {
        transform: scale(1.05);
    }
    
    .experience-badge {
        position: absolute;
        bottom: 4px;
        right: 30px;
        background: black;
        color: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    }
    
    .experience-badge span {
        font-size: 2.5rem;
        font-weight: 700;
        display: block;
        line-height: 1;
    }
    
    .experience-badge small {
        font-size: 0.9rem;
        display: block;
    }
    
    .about-text {
        flex: 1;
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.8s ease 0.2s;
    }
    
    .about-text h3 {
        font-size: 2rem;
        color: #292929;
        margin-bottom: 20px;
    }
    
    .about-text p {
        color: #666;
        margin-bottom: 30px;
        line-height: 1.8;
    }
    
    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .feature-card {
        background: white;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        /* transform: translateY(-5px); */
        /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 107, 53, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: #FF6B35;
        font-size: 1.2rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #292929;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 0;
        color: #666;
    }
    
    .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        margin-right: 15px;
        margin-top: 10px;
    }
    
    .btn-orange {
        background: black;
        color: white;
    }
    
    .btn-orange:hover {
        background: #e05a2b;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    }
    
    .btn-outline {
        border: 2px solid black;
        color: black;
        background: transparent;
    }
    
    .btn-outline:hover {
        background: black;
        color: white;
        transform: translateY(-3px);
    }
    
    /* Animation Classes */
    .slide-in-left.animate {
        transform: translateX(0);
        opacity: 1;
    }
    
    .slide-in-right.animate {
        transform: translateX(0);
        opacity: 1;
    }
    
    .fade-in.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .pulse {
        animation: pulse 2s infinite;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column;
            gap: 30px;
        }
        
        .about-image, .about-text {
            flex: none;
            width: 100%;
        }
        
        .about-image {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 70px 0;
        }
        
        .about-features {
            grid-template-columns: 1fr;
        }
        
        .experience-badge {
            right: 15px;
            padding: 15px;
        }
        
        .experience-badge span {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
        }
        
        .btn {
            display: block;
            width: 100%;
            margin-bottom: 15px;
        }
    } 
        /* about section end */


    


     
    /* Wellness Packages Section end */




     /* Accreditation Section Styles */
     .accreditation-section {
        padding: 100px 0;
        background-color: #f5f7fa;
        position: relative;
        overflow: hidden;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.8rem;
        color: #292929;
        margin-bottom: 15px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: #FF6B35;
        font-weight: 500;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.2s;
    }
    
    .divider {
        width: 80px;
        height: 3px;
        background: #FF6B35;
        margin: 0 auto;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: center;
        transition: all 0.8s ease 0.4s;
    }
    
    .accreditation-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    
    .accreditation-image {
        flex: 1;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-50px);
        opacity: 0;
        transition: all 0.8s ease;
    }
    
    .accreditation-image img {
        width: 100%;
        height: 700px;
        object-fit: contain;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .zoom-effect:hover img {
        transform: scale(1.03);
    }
    
    .certification-badge {
        position: absolute;
        bottom: 0px;
        right: 11px;
        background: black;
        color: white;
        padding: 15px 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    }
    
    .certification-badge i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
    
    .certification-badge span {
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .accreditation-text {
        flex: 1;
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.8s ease 0.2s;
    }
    
    .accreditation-text h3 {
        font-size: 2rem;
        color: #292929;
        margin-bottom: 20px;
    }
    
    .accreditation-text p {
        color: #666;
        margin-bottom: 30px;
        line-height: 1.8;
    }
    
    .accreditation-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 107, 53, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FF6B35;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
        color: #292929;
        margin-bottom: 5px;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 0;
    }
    
    .accreditation-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
    }
    
    .accreditation-logos img {
        height: 60px;
        width: auto;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .logo-hover:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: translateY(-5px);
    }
    
    /* Animation Classes */
    .slide-in-left.animate {
        transform: translateX(0);
        opacity: 1;
    }
    
    .slide-in-right.animate {
        transform: translateX(0);
        opacity: 1;
    }
    
    .fade-in.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .pulse {
        animation: pulse 2s infinite;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .accreditation-content {
            flex-direction: column;
            gap: 30px;
        }
        
        .accreditation-image, .accreditation-text {
            flex: none;
            width: 100%;
        }
        
        .accreditation-image {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 768px) {
        .accreditation-section {
            padding: 70px 0;
        }
        
        .accreditation-logos {
            justify-content: center;
        }
        
        .accreditation-logos img {
            height: 50px;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .accreditation-text h3 {
            font-size: 1.5rem;
        }
        
        .certification-badge {
            padding: 10px 15px;
            top: -15px;
            left: -15px;
        }
        
        .accreditation-logos {
            gap: 15px;
        }
        
        .accreditation-logos img {
            height: 40px;
        }
    }


    /* gallery section start */

    /* Gallery Section Styles */
    .gallery-section {
        padding: 100px 0;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.8rem;
        color: #292929;
        margin-bottom: 15px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: #FF6B35;
        font-weight: 500;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.2s;
    }
    
    .divider {
        width: 80px;
        height: 3px;
        background: #FF6B35;
        margin: 0 auto;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: center;
        transition: all 0.8s ease 0.4s;
    }
    
    .gallery-filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        background: #f5f5f5;
        border: none;
        border-radius: 30px;
        font-weight: 500;
        color: #555;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .filter-btn:hover, .filter-btn.active {
        background: #FF6B35;
        color: white;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .gallery-item {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: scale(0.95);
        opacity: 0;
        transition: all 0.6s ease, transform 0.3s ease;
    }
    
    .gallery-item img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .overlay-content {
        text-align: center;
        padding: 20px;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .overlay-content h3 {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .overlay-content p {
        color: #ddd;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .gallery-expand {
        display: inline-flex;
        width: 40px;
        height: 40px;
        background: #FF6B35;
        color: white;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .gallery-expand:hover {
        background: white;
        color: #FF6B35;
        transform: scale(1.1);
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-item:hover .overlay-content {
        transform: translateY(0);
    }
    
    .gallery-item:hover img {
        transform: scale(1.05);
    }
    
    .view-more-btn {
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .btn-view-more {
        display: inline-flex;
        align-items: center;
        padding: 12px 30px;
        background: transparent;
        color: #FF6B35;
        border: 2px solid #FF6B35;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-view-more i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .btn-view-more:hover {
        background: #FF6B35;
        color: white;
        box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    }
    
    .btn-view-more:hover i {
        transform: translateX(5px);
    }
    
    /* Animation Classes */
    .fade-in.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    .slide-up.animate {
        opacity: 1;
        transform: translateY(0);
    }
    
    .gallery-item.animate {
        opacity: 1;
        transform: scale(1);
    }
    
    /* Lightbox Overrides */
    .lightbox .lb-image {
        border: 5px solid white;
        border-radius: 3px;
    }
    
    .lightbox .lb-nav a.lb-prev, 
    .lightbox .lb-nav a.lb-next {
        opacity: 1;
    }
    
    .lightbox .lb-close {
        opacity: 1;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .gallery-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .gallery-filter {
            justify-content: flex-start;
        }
        
        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
        
        .gallery-item img {
            height: 200px;
        }
    }
    
    @media (max-width: 576px) {
        .gallery-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .gallery-item img {
            height: 240px;
        }
        
        .overlay-content h3 {
            font-size: 1.1rem;
        }
    }
     /* gallery section end */

/* contact us section start */

  /* Unique Contact Section Styling */
  /* Contact Section */
        .pathology-contact-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
            position: relative;
        }

        .pathology-contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        .pathology-contact-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .pathology-section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 0.8rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .pathology-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #e74c3c, #f39c12);
            border-radius: 2px;
        }

        .pathology-section-subtitle {
            font-size: 1.15rem;
            color: #7f8c8d;
            font-weight: 500;
            margin-top: 1.5rem;
        }

        /* Contact Content */
        .contact-content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        /* Branch Cards */
        .branch-card {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .branch-header {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .branch-header i {
            font-size: 1.5rem;
        }

        .branch-header h3 {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .branch-map {
            height: 250px;
            width: 100%;
            border: none;
        }

        .branch-details {
            padding: 1.5rem;
        }

        .branch-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .branch-info i {
            color: #3498db;
            margin-right: 0.8rem;
            margin-top: 0.2rem;
            min-width: 16px;
        }

        .branch-info span {
            color: #000606;
            font-size: 0.95rem;
        }

        .branch-hours {
            color: #e67e22 !important;
            font-weight: 500;
        }

        .directions-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #3498db;
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            margin-top: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .directions-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
        }

        /* Contact Form */
        .contact-form-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            margin-top: 2rem;
        }

        .contact-form-container h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-align: center;
        }

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

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }

        .form-control:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
            outline: none;
            background-color: white;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #c0392b, #a5281b);
            box-shadow: 0 6px 12px rgba(231, 76, 60, 0.4);
            transform: translateY(-2px);
        }

        .submit-btn i {
            transition: transform 0.3s ease;
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        /* Social Media */
        .social-container {
            margin-top: 2rem;
            text-align: center;
        }

        .social-title {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .facebook { background: #3b5998; }
        .twitter { background: #1da1f2; }
        .instagram { background: #e1306c; }
        .linkedin { background: #0077b5; }

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

        .branch-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .branch-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .contact-form-container {
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: 0.4s;
            opacity: 0;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-content-wrapper {
                flex-direction: column;
                gap: 2rem;
            }
            
            .branch-card {
                width: 100%;
            }
            
            .pathology-section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .pathology-contact-section {
                padding: 4rem 0;
            }
            
            .branch-header {
                padding: 1.2rem;
            }
            
            .branch-map {
                height: 220px;
            }
        }

        @media (max-width: 576px) {
            .pathology-contact-section {
                padding: 3rem 0;
            }
            
            .pathology-section-title {
                font-size: 1.8rem;
            }
            
            .branch-header h3 {
                font-size: 1.1rem;
            }
            
            .branch-details {
                padding: 1rem;
            }
            
            .contact-form-container {
                padding: 1.5rem;
            }
            
            .branch-map {
                height: 200px;
            }
        }
/* contact us section end */