   :root {
            --primary-color: #A886CD;
            --secondary-color: #49E670;
            --accent-color: #FF6B6B;
            --dark-color: #333;
            --light-color: #f8f9fa;
            --orange-color: #FFA500;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Header Styles */
        .top-nav {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .top-nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .top-nav a:hover {
            color: #ddd;
        }
        
        .top-nav-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
        }
        
        .top-nav-contact-list li {
            margin-right: 20px;
        }
        
        .top-nav-social-icons {
            display: flex;
            justify-content: flex-end;
        }
        
        .top-nav-social-icons img {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
            transition: transform 0.3s;
        }
        
        .top-nav-social-icons a:hover img {
            transform: scale(1.1);
        }
        
        .navbar-brand h1 {
            color: var(--accent-color) !important;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .nav-link-custom {
            font-weight: 500;
            padding: 8px 15px !important;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .nav-link-custom:hover {
            background-color: rgba(168, 134, 205, 0.1);
            color: var(--primary-color) !important;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .dropdown-item {
            padding: 10px 20px;
        }
        
        .dropdown-item:hover {
            background-color: rgba(168, 134, 205, 0.1);
            color: var(--primary-color);
        }
        
        /* Slider Styles */
        .home-slider {
            position: relative;
        }
        
        .slider-img-hight {
            height: 500px;
            overflow: hidden;
        }
        
        .slider-img-hight img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: left;
        }
        
        .firstbtn, .secondbtn {
            display: inline-block;
            padding: 12px 30px;
            margin-right: 15px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .firstbtn {
            background-color: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .secondbtn {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .firstbtn:hover {
            background-color: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .secondbtn:hover {
            background-color: white;
            color: var(--primary-color);
        }
        
        /* Welcome Section */
        .welcome_note {
            padding: 60px 0;
        }
        
        .welcome-text p {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .welcome-heading h1 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        /* Intro Section */
        .intro_div {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .dr_img {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .dr_img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .inside {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
        }
        
        .tm-fid-inner span {
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .about-me {
            padding-left: 40px;
        }
        
        .about-paragraph p {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .awards h2 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .awards-paragraph p {
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
            padding: 10px;
            text-align: justify;
        }
        
        .New_btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary-color);
        }
        
        .New_btn:hover {
            background-color: transparent;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .diseses {
            padding: 80px 0;
        }
        
        .about-us-tagline {
            font-size: 1.3rem;
            color: #666;
            font-style: italic;
            margin-bottom: 30px;
        }
        
        .disease-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .disease-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        
        .disease-card-img {
            height: 200px;
            overflow: hidden;
        }
        
        .disease-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .disease-card:hover .disease-card-img img {
            transform: scale(1.05);
        }
        
        .disease-card-content {
            padding: 0 20px 20px;
        }
        
        .disease-card-content h2 {
            color: var(--orange-color);
            font-size: 1.3rem;
            min-height: 70px;
        }
        
        .disease-card-content p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Benefits Section */
        .benifits {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .service-icons {
            margin-bottom: 15px;
        }
        
        .service-contant p {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 0.9rem;
        }
        
        .benifits-of-homopathy-contant-heading h2 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .benifits-of-homopathy-contant-para p {
            line-height: 1.8;
            color: #555;
        }
        
        /* Footer */
        .main-footer {
            background-color: #222;
            color: #ddd;
        }
        
        .widgets-section {
            padding: 60px 0 30px;
        }
        
        .widget-title {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
        }
        
        .about-widget .text p {
            line-height: 1.8;
            color: #aaa;
        }
        
        .user-links ul {
            list-style: none;
            padding: 0;
            column-count: 2;
            column-gap: 30px;
        }
        
        .user-links li {
            margin-bottom: 10px;
        }
        
        .user-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .user-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .contact-list {
            list-style: none;
            padding: 0;
        }
        
        .contact-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-list .icon {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        .contact-list .text a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
        }
        
        .contact-list .text a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            background-color: #111;
            padding: 20px 0;
            text-align: center;
        }
        
        .copyright-text p {
            margin: 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-me {
                padding-left: 0;
                margin-top: 40px;
            }
            
            .user-links ul {
                column-count: 1;
            }
            
            .carousel-caption {
                bottom: 20%;
            }
        }
        
        @media (max-width: 768px) {
            .top-nav-contact-list {
                justify-content: center;
                margin-bottom: 10px;
            }
            
            .top-nav-social-icons {
                justify-content: center;
            }
            
            .slider-img-hight {
                height: 400px;
            }
            
            .carousel-caption {
                bottom: 15%;
                text-align: center;
            }
            
            .firstbtn, .secondbtn {
                padding: 10px 20px;
                font-size: 0.9rem;
                margin-bottom: 10px;
            }
            
            .navbar-brand h1 {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .slider-img-hight {
                height: 300px;
            }
            
            .carousel-caption {
                bottom: 10%;
            }
            
            .welcome-heading h1 {
                font-size: 1.5rem;
            }
            
            .awards h2 {
                font-size: 1.5rem;
            }
        }