
        :root {
            --blood-red: #8B0000;
            --dark-red: #5A0000;
            --light-red: #C53030;
            --pure-black: #000000;
            --dark-gray: #1A1A1A;
            --medium-gray: #333333;
            --light-gray: #666666;
            --pure-white: #FFFFFF;
            --off-white: #F5F5F5;
            --section-bg: #FAFAFA;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--medium-gray);
            background-color: var(--pure-white);
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            /* color: var(--dark-gray); */
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Top Bar */
        .top-bar {
            display: none;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            flex-wrap: nowrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .contact-item i {
            color: var(--blood-red);
            font-size: 12px;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .social-links a {
            color: var(--pure-white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .social-links a:hover {
            color: var(--blood-red);
            transform: scale(1.1);
        }
        
        /* Fixed Header */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--pure-white);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 80px;
        }
        
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 26px;
            color: var(--blood-red);
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-link {
            font-weight: 600;
            font-size: 16px;
            color: var(--dark-gray);
            position: relative;
            padding: 5px 0;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: var(--blood-red);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--blood-red);
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-gray);
        }
        
        /* Hero Slider */
        .hero-section {
            position: relative;
            overflow: hidden;
            height: 85vh;
            min-height: 600px;
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.btmhub.com/assets/img/carousel-1.jpg');
        }
        
        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.btmhub.com/assets/img/carousel-2.jpg');
        }
        
        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.btmhub.com/assets/img/carousel-3.jpg');
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 800px;
            z-index: 2;
        }
        
        .slide-title {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .slide-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--blood-red);
            transform: scale(1.2);
        }
        
        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-arrow:hover {
            background-color: var(--blood-red);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--blood-red);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--light-gray);
            font-size: 18px;
        }
        
        /* Locations */
        .locations-section {
            background-color: var(--section-bg);
        }
        
        .locations-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .location-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid var(--blood-red);
        }
        
        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .location-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(139, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--blood-red);
            font-size: 30px;
        }
        
        .location-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        /* Test Categories */
        .categories-section {
            position: relative;
        }
        
        .categories-container {
            display: flex;
            overflow-x: auto;
            padding: 20px 0;
            gap: 20px;
            scrollbar-width: thin;
            scrollbar-color: var(--blood-red) transparent;
        }
        
        .categories-container::-webkit-scrollbar {
            height: 8px;
        }
        
        .categories-container::-webkit-scrollbar-track {
            background: var(--off-white);
            border-radius: 10px;
        }
        
        .categories-container::-webkit-scrollbar-thumb {
            background-color: var(--blood-red);
            border-radius: 10px;
        }
        
        .category-card {
            flex: 0 0 auto;
            width: 200px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(139, 0, 0, 0.15);
        }
        
        .category-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .category-content {
            padding: 20px;
            background-color: white;
        }
        
        .category-content h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark-gray);
        }
        
        .category-link {
            color: var(--blood-red);
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Packages */
        .packages-section {
            background-color: var(--section-bg);
        }
        
        .packages-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .package-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(139, 0, 0, 0.1);
        }
        
        .package-header {
            background: linear-gradient(135deg, var(--blood-red), var(--dark-red));
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .package-header h3 {
            color: white;
            font-size: 22px;
        }
        
        .package-body {
            padding: 30px;
        }
        
        .package-body p {
            margin-bottom: 20px;
            color: var(--light-gray);
        }
        
        .package-footer {
            padding: 0 30px 30px;
        }
        
        /* Why Choose Us */
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            text-align: center;
            padding: 40px 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid var(--blood-red);
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(139, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(139, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--blood-red) !important;
            font-size: 36px;
        }
        
        .feature-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        /* Partners */
        .partners-section {
            background-color: var(--dark-gray);
            color: white;
        }
        
        .partners-section .section-title h2 {
            color: white;
        }
        
        .partners-section .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .partners-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .partner-logo {
            background-color: --pure-black;
            border-radius: 10px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 150px;
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 90px;
        }
        
        /* Testimonials */
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            border-left: 4px solid var(--blood-red);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light-gray);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--blood-red);
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--light-gray);
            font-size: 14px;
        }
        
        /* Footer */
        .footer {
            background-color: var(--pure-black);
            color: rgba(255, 255, 255, 0.8);
            padding: 70px 0 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--blood-red);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .footer-contact i {
            color: var(--blood-red);
            margin-top: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .newsletter-button {
            background-color: var(--blood-red);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-button:hover {
            background-color: var(--light-red);
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            body {
                padding-top: 85px;
            }

            .slide-title {
                font-size: 40px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                gap: 15px;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-section {
                height: 70vh;
                min-height: 500px;
            }

            .locations-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 85px;
            }
            
            .slide-title {
                font-size: 32px;
            }
            
            .slide-subtitle {
                font-size: 18px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .hero-section {
                height: 60vh;
                min-height: 400px;
            }
            
            .packages-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .slide-title {
                font-size: 28px;
            }

            .slider-arrows {
                padding: 0 15px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .section-title h2 {
                font-size: 26px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 15px;
            }

            .locations-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animation for header on scroll */
        .header-scrolled {
            padding: 5px 0;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
    

    
:root{
    --primary:#c62828;
    --dark:#222;
    --light:#f9f9f9;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--light);
    color:#444;
}

/* HERO */
.hero{
    height:50vh; /* reduced */
    background:url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        rgba(198,40,40,0.65),
        rgba(0,0,0,0.45)
    );
}


.hero-content{
    position:relative;
    color:#fff;
    text-align:center;
    padding:30px 40px; /* reduced */
    border-radius:16px;
}

.hero h1{
    font-size:3.4rem;
    font-weight:700;
    letter-spacing:1px;
    text-shadow:0 8px 30px rgba(0,0,0,.5);
}

.hero p{
    margin-top:12px;
    font-size:1.15rem;
    opacity:.95;
}


/* ABOUT */
.about{
    padding:70px 20px; /* reduced */
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about h2{
    font-size:2.2rem;
    margin-bottom:14px;
    color:var(--dark);
}

.about p{
    line-height:1.8;
    margin-bottom:18px;
}

.features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:25px;
}

.feature{
    background:#fff;
    padding:12px 16px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,.07);
    font-weight:500;
}

.about a{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:12px 30px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.about a:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(198,40,40,.4);
}

/* WHY CHOOSE US */
.why-modern{
    padding:8px 20px; /* reduced */
    background:linear-gradient(120deg,#fdfbfb,#f4f6f8);
}

.why-wrapper{
    max-width:1100px;
    margin:auto;
}

.why-header{
    text-align:center;
    margin-bottom:55px;
}

.why-header span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    font-size:.8rem;
}

.why-header h2{
    font-size:2.4rem;
    margin:10px 0;
}

.why-header p{
    max-width:600px;
    margin:auto;
    color:#666;
}

/* TIMELINE */
.why-timeline{
    position:relative;
    padding-left:35px;
}

.why-timeline::before{
    content:'';
    position:absolute;
    left:14px;
    top:0;
    bottom:0;
    width:3px;
    background:linear-gradient(to bottom,var(--primary),#000);
    border-radius:10px;
}

.why-item{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.why-icon{
    min-width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.4rem;
    box-shadow:0 8px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.why-content{
    background:#fff;
    padding:20px 25px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.why-item:hover .why-icon{
    background:var(--primary);
    color:#fff;
}

.why-item:hover .why-content{
    transform:translateX(6px);
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-container{
        grid-template-columns:1fr;
        text-align:center;
    }
    .features{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .why-timeline{
        padding-left:0;
    }
    .why-timeline::before{
        display:none;
    }
    .why-item{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }
}

.team-section{
    padding:30px 20px;
    background:linear-gradient(120deg,#f8fafc,#eef2f6);
}

.team-container{
    max-width:1200px;
    margin:auto;
}

.team-header{
    text-align:center;
    margin-bottom:70px;
}

.team-header span{
    color:#c62828;
    font-weight:600;
    letter-spacing:2px;
    font-size:.8rem;
}

.team-header h2{
    font-size:2.5rem;
    margin:12px 0;
    color:#222;
}

.team-header p{
    max-width:560px;
    margin:auto;
    color:#666;
}

/* GRID */
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

/* CARD */
.doctor-card{
    position:relative;
    height:380px;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    cursor:pointer;
}

.doctor-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.doctor-card:hover img{
    transform:scale(1.15);
}

/* OVERLAY */
.doctor-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    padding:30px;
    text-align:center;
    color:#fff;
    transform:translateY(35%);
    transition:.6s ease;
}

.doctor-card:hover .doctor-overlay{
    transform:translateY(0);
}

.doctor-overlay h4{
    font-size:1.3rem;
    margin-bottom:4px;
}

.doctor-overlay p{
    font-size:.95rem;
    opacity:.9;
}

.doctor-overlay span{
    font-size:.85rem;
    margin:10px 0 20px;
    opacity:.85;
}

.doctor-overlay a{
    text-decoration:none;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 26px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:500;
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.3);
    transition:.35s;
}

.doctor-overlay a:hover{
    background:#fff;
    color:#c62828;
}


/* RESPONSIVE */
@media(max-width:600px){
    .team-header h2{
        font-size:2rem;
    }
}

/* WHY IMAGE + CONTENT GRID */
.why-content-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:center;
}

/* IMAGE */
.why-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* RESPONSIVE */
@media(max-width:900px){
    .why-content-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr; /* timeline left, image right */
    gap:50px;
    align-items:center;
}


    .why-image{
        order:-1;
    }

    .why-image img{
        max-width:420px;
        margin:auto;
    }
}




/* srvice page css */
:root {
    --blood-red: #8B0000;
    --dark-red: #5A0000;
    --light-red: #C53030;
    --pure-black: #000000;
    --dark-gray: #1A1A1A;
    --medium-gray: #333333;
    --light-gray: #666666;
    --pure-white: #FFFFFF;
    --off-white: #F5F5F5;
    --section-bg: #FAFAFA;
    --primary: var(--blood-red);
}

/* General */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    background: var(--off-white);
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(139,0,0,0.7), rgba(90,0,0,0.7)), url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5') center/cover no-repeat;
    color: var(--pure-white);
    padding: 120px 20px 80px;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.page-header .breadcrumb {
    font-size: 0.9rem;
}
.page-header .breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
}
.page-header .breadcrumb span {
    color: var(--light-red);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header p {
    display: inline-block;
    border: 2px solid var(--blood-red);
    border-radius: 50px;
    padding: 5px 25px;
    color: var(--blood-red);
    font-weight: 500;
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Services */
.services .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-item {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 20px;
    border-top: 4px solid var(--blood-red);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.service-item .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blood-red), var(--light-red));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.8rem;
}
.service-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.service-item p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-item a {
    color: var(--blood-red);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-item a:hover {
    color: var(--pure-white);
    background: var(--blood-red);
    padding: 8px 20px;
    border-radius: 50px;
}

/* Appointment */
.appointment {
    background: var(--section-bg);
    padding: 100px 20px;
}
.appointment .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.col-left, .col-right {
    flex: 1;
    min-width: 300px;
}
.col-left p {
    color: var(--blood-red);
    font-weight: 500;
    margin-bottom: 15px;
}
.col-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.col-left p.mb-4 {
    color: var(--medium-gray);
    line-height: 1.6;
}
.contact-box {
    display: flex;
    align-items: center;
    background: var(--pure-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.contact-box i {
    font-size: 1.5rem;
    color: var(--blood-red);
    margin-right: 15px;
}
.contact-box p {
    margin: 0;
    font-weight: 500;
}
.contact-box h5 {
    margin: 0;
}

/* Appointment Form */
.col-right form {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.col-right input,
.col-right select,
.col-right textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--medium-gray);
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.col-right input:focus,
.col-right select:focus,
.col-right textarea:focus {
    border-color: var(--blood-red);
    box-shadow: 0 0 10px rgba(139,0,0,0.2);
}
.col-right button {
    background: var(--blood-red);
    color: var(--pure-white);
    font-weight: 600;
    padding: 15px 0;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}
.col-right button:hover {
    background: var(--dark-red);
}

/* Testimonial */
.testimonial {
    padding: 100px 20px;
    background: var(--off-white);
}
.testimonial .section-header {
    margin-bottom: 60px;
}
.testimonial-carousel .testimonial-item {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
}
.testimonial-item img {
    width: fit-content !important;                   
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--blood-red);
}
.testimonial-item p {
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.testimonial-item h5 {
    margin: 10px 0 5px;
}
.testimonial-item span {
    color: var(--blood-red);
    font-style: italic;
    font-size: 0.9rem;
}


/* Responsive */
@media(max-width: 992px) {
    .services .row {
        grid-template-columns: repeat(2, 1fr);
    }
    .appointment .row {
        flex-direction: column;
    }
}
@media(max-width: 768px) {
    .services .row {
        grid-template-columns: 1fr;
    }
}



/* Contact page css */
:root{
    --blood-red:#8B0000;
    --dark-red:#5A0000;
    --light-red:#C53030;
    --dark-gray:#1A1A1A;
    --medium-gray:#333333;
    --light-gray:#666666;
    --pure-white:#FFFFFF;
    --off-white:#F5F5F5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--off-white);
    color:var(--medium-gray);
}

/* ================= CONTAINER ================= */
.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ================= HERO ================= */
/* Page Header */
.page-header {
    background: linear-gradient(rgba(139,0,0,0.7), rgba(90,0,0,0.7)), url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5') center/cover no-repeat;
    color: var(--pure-white);
    padding: 110px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.page-header .breadcrumb {
    font-size: 0.9rem;
}
.page-header .breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
}
.page-header .breadcrumb span {
    color: var(--light-red);
}


/* ================= CONTACT MAIN ================= */
.contact-main{
    padding:80px 0 100px;
}


.contact-box{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-radius:24px;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
    display:grid;
    grid-template-columns:1.2fr 1fr;
    overflow:hidden;
}

/* ================= FORM ================= */
.contact-form{
    padding:55px;
}

.contact-form h2{
    color:var(--blood-red);
    margin-bottom:8px;
}

.contact-form p{
    color:var(--light-gray);
    margin-bottom:30px;
}

.input-group{
    position:relative;
    margin-bottom:22px;
}

.input-group i{
    position:absolute;
    top:50%;
    left:18px;
    transform:translateY(-50%);
    color:var(--light-gray);
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:15px 15px 15px 48px;
    border-radius:14px;
    border:1px solid #ddd;
    outline:none;
    transition:.3s;
}

.input-group textarea{
    resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:var(--blood-red);
    box-shadow:0 0 0 3px rgba(139,0,0,.12);
}

.contact-form button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,var(--blood-red),var(--light-red));
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:linear-gradient(135deg,var(--dark-red),var(--blood-red));
}

/* ================= INFO PANEL ================= */
.contact-info{
    background:linear-gradient(180deg,var(--blood-red),var(--dark-red));
    color:#fff;
    padding:55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:35px;
}

.info-item{
    display:flex;
    gap:20px;
}

.info-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
}

.info-item h4{
    font-weight:500;
    margin-bottom:5px;
}

.info-item p{
    opacity:.9;
}

/* ================= MAP ================= */
.map-section{
    margin-top:60px;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.map-section iframe{
    width:100%;
    height:420px;
    border:0;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
    .contact-box{
        grid-template-columns:1fr;
    }
    .contact-info{
        text-align:center;
    }
    .info-item{
        justify-content:center;
    }
    .inner-hero{
        height:45vh;
    }
}
