:root {
    --primary-color: #52adab;
    /* Teal */
    --secondary-color: #ddfbf7;
    /* Light Teal */
    --background-color: #f4e6d1;
    /* Warm Beige */
    --text-color: #2b2b2b;
    /* Dark Grey */
    --white: #ffffff;
    /* White */
    --light-gray: #f3f3f3;
    /* Light Gray */
    --e-global-color-primary: #52adab;
    --e-global-color-secondary: #ddfbf7;
    --e-global-color-text: #000000;
    --e-global-color-accent: #5d6d6b;
    --e-global-color-ad88a2d: #f3f3f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    /* background-color: var(--background-color); */
}

a {
    text-decoration: none;
}

p {
    font-size: 18px;
}


/* Navigation */

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0px;
}

.navbar.fixed-top {
    background-color: #ffffff !important;
    opacity: 1 !important;
}

.navbar-transparent,
.bg-transparent {
    background-color: #ffffff !important;
    opacity: 1 !important;
}

.navbar-brand {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* Dropdown styles */

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: relative;
    top: 1px;
}

.dropdown-menu.show {
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: #000000;
}


/* banner css start */

.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(rgba(93, 155, 155, 0.8), rgba(242, 160, 161, 0.8));
    min-height: 600px;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #5d9b9b;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
    }
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        max-width: 100%;
    }
    .hero-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content .lead {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        width: 100%;
        display: block;
    }
    .hero-image img {
        height: 300px;
    }
}


/* banner css end */


/* About Section */

.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    padding-right: 2rem;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h3 {
    position: relative;
    display: inline-block;
    /* This is important */
    padding-bottom: 15px;
}

.about-content h::after .about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Services Section */

.services {
    padding: 5rem 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(112, 82, 123, 0.05) 25%, transparent 25%), linear-gradient(-45deg, rgba(112, 82, 123, 0.05) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(112, 82, 123, 0.05) 75%), linear-gradient(-45deg, transparent 75%, rgba(112, 82, 123, 0.05) 75%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--e-global-color-text);
    margin-bottom: 1rem;
}

.service-card {
    background-color: #ffffff;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(112, 82, 123, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(112, 82, 123, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(112, 82, 123, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(112, 82, 123, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    color: #1c1c1c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--primary-color);
}

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


/* Gallery Section */

.gallery {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 0.9;
    padding: 10px 10px 0px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


/* Why Choose Us Section */

.why-choose-us {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.feature-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(112, 82, 123, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


/* Counter Section */

.counter {
    background-color: var(--primary-color);
    color: var(--white);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-icon {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.counter-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    margin: 10px 0;
}

.counter-label {
    font-size: 18px;
    color: var(--white);
}


/* Success Stories Section */

.success-stories {
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
}

.testimonial-carousel {
    padding: 0 40px;
}

.testimonial-item {
    padding: 10px;
}

.testimonial-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 15px;
    color: #666;
}

.testimonial-text h4 {
    color: #333;
    margin: 0;
}


/* Owl Carousel Navigation */

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.owl-prev {
    left: -5px;
}

.owl-next {
    right: -5px;
}

.owl-nav i {
    font-size: 20px;
    color: #333;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px !important;
    background: #ddd !important;
}

.owl-dot.active span {
    background: #007bff !important;
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .testimonial-carousel {
        padding: 0 20px;
    }
}


/* Appointment Section */

.appointment {
    padding: 5rem 0;
    background: linear-gradient(rgba(93, 155, 155, 0.8), rgba(242, 160, 161, 0.8)), url("ivf.png") center/cover no-repeat;
}

.appointment-content {
    padding-right: 2rem;
}

.appointment-form .form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.appointment-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Contact Section */

.contact {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.contact-info {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.info-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}


/* Footer */

.footer {
    background-color: #262626;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h4 {
    color: var(--background-color);
    margin-bottom: 1.5rem;
}

.copyeright-txt {
    color: var(--background-color);
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
}

.footer a:hover {
    color: var(--secondary-color);
}

.social-links a {
    margin-right: 1rem;
    font-size: 1.5rem;
}


/* Responsive Design */

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .appointment-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    .design-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero .lead {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .service-card,
    .feature-box {
        margin-bottom: 2rem;
    }
    .counter-item {
        margin-bottom: 0rem;
        padding:0;
    }
    .design-card {
        margin-bottom: 2rem;
    }
    .design-image {
        height: 180px;
    }
}


/* Animations */

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial,
.contact-form,
.feature-box,
.gallery-item {
    animation: fadeInUp 0.8s ease-out;
}

.counter-number {
    animation: countUp 1s ease-out;
}


/* Unique Design Section */

.unique-design {
    padding: 5rem 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.unique-design::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(112, 82, 123, 0.05) 25%, transparent 25%), linear-gradient(-45deg, rgba(112, 82, 123, 0.05) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(112, 82, 123, 0.05) 75%), linear-gradient(-45deg, transparent 75%, rgba(112, 82, 123, 0.05) 75%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.design-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(112, 82, 123, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(112, 82, 123, 0.1);
}

.design-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(112, 82, 123, 0.15);
}

.design-image {
    position: relative;
    overflow: hidden;
    height: 335px;
}

.design-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.design-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgb(82 173 171));
    padding: 10px 20px 10px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.design-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.design-overlay p {
    margin: 0;
    font-size: 0.9rem;
    /* opacity: 0.9; */
    font-size: 18px;
    color: var(--white);
}

.design-content {
    padding: 2.5rem 2rem;
    text-align: center;
    background-color: var(--white);
    position: relative;
}

.design-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.design-card:hover .design-content::before {
    transform: scaleX(1);
}

.design-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.design-card:hover .design-content i {
    transform: rotateY(360deg);
}

.design-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.design-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.design-card:hover .design-content h3::after {
    width: 80px;
}

.design-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.design-card:hover .design-content p {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .design-image {
        height: auto;
    }
}

@media (max-width: 768px) {
    .design-card {
        margin-bottom: 0rem;
    }
    .design-image {
        height: auto;
    }
    .design-content {
        padding: 1.5rem 1rem;
    }
}

.appointment-content h2 {
    color: var(--white);
}

.appointment-content p {
    color: var(--white);
}


/* Gallery Image Styles */


/* Design Card Image Styles */

.design-image img {
    width: 100%;
    height: 335px;
    object-fit: cover;
}


/* Testimonial Image Styles */

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}


/* Contact Image Styles */

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


/* Any other sections with background images */

.section-with-bg {
    background-image: url("ivf.png");
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link.dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
    position: relative;
    top: 1px;
}

.navbar-nav .nav-link {
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
}


/* about css start */


/* ... existing code ... */


/* About Page Styles */

.page-header {
    background: var(--light-bg);
    padding: 60px 0;
    position: relative;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-header .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--text-color);
}


/* Main About Section */

.about-main {
    padding: 80px 0;
}

.about-content .lead {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-10px);
}


/* Achievement Boxes */

.achievement-box {
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.achievement-box i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.achievement-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.achievement-box p {
    color: var(--text-color);
    margin-bottom: 0;
}


/* Our Values Section */

.our-values {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.value-card {
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.value-card i {
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
    color: var(--heading-color);
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}


/* Team Section */

.our-team {
    padding: 80px 0;
}

.team-member {
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.team-member .text-muted {
    font-size: 16px;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-color);
    line-height: 1.6;
}


/* Call to Action Section */

.cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
}

.cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.cta .lead {
    font-size: 18px;
    opacity: 0.9;
    color: var(--white);
}

.cta .btn-light {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive Adjustments */

@media (max-width: 991px) {
    .about-content {
        margin-bottom: 40px;
    }
    .cta h2 {
        text-align: center;
    }
    .cta .btn-light {
        margin-top: 20px;
        display: block;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 40px 0;
    }
    .page-header h1 {
        font-size: 32px;
    }
    .about-main {
        padding: 60px 0 0;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .achievement-box {
        margin-bottom: 30px;
    }
    .value-card {
        margin-bottom: 30px;
    }
}


/* Breadcrumb Section Styles */

.breadcrumb-section {
    background: linear-gradient(rgba(93, 155, 155, 0.8), rgba(242, 160, 161, 0.8)), url("../img/ivf.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    /* margin-bottom: 60px; */
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-content h1 {
    color: #f4e6d1;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 20px;
}

.breadcrumb-content h1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #302f2f;
}

.breadcrumb {
    display: flex;
    justify-content: flex-start;
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 18px;
    font-weight: 500;
    color: #f4e6d1;
    text-transform: capitalize;
}

.breadcrumb-item a {
    color: #f4e6d1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #52adab;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #f4e6d1;
    margin: 0 15px;
}

.breadcrumb-item.active {
    color: #302f2f;
}


/* Responsive Breadcrumb */

@media (max-width: 991px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    .breadcrumb-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section {
        padding: 80px 0 20px;
    }
    .breadcrumb-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .breadcrumb-item {
        font-size: 16px;
    }
    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 10px;
    }
}


/* ... about css end ... */


/* contact css start */


/* Contact Page Styles */

.contact-section {
    background: #fff;
}


/* Contact Info Styles */

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #52adab;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #52adab;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: #52adab;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.info-content p {
    margin-bottom: 5px;
    color: #666;
}

.info-content a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #52adab;
}


/* Contact Form Styles */

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    color: #52adab;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #52adab;
}

.form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #52adab;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.btn-primary {
    background: #52adab;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-primary:hover {
    background: #f9f9f9;
    transform: translateY(-2px);
    color: #52adab;
    border: 1px solid #52adab;
}


/* Map Styles */

.map-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Responsive Styles */

@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-top: 30px;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-info {
        padding: 20px;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
    .form-control {
        height: 45px;
    }
    .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
    .map-wrapper {
        height: 350px;
    }
}


/* Map Styles */

.map-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* contact css end */

.service-hero {
    padding: 100px 0;
    margin-bottom: 50px;
}

.component-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.test-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.test-card i {
    font-size: 2.5rem;
    color: #52adab;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #ec9696;
}

.doctor-profile-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}


/* Hysteroscopy and Laparoscopy Page Styles */

.procedure-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.procedure-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.procedure-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.procedure-content h3 {
    margin: 0;
    font-size: 1.5rem;
}

.indication-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.indication-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.indication-card h4 {
    padding: 15px;
    margin: 0;
    color: #333;
}

.indication-card p {
    padding: 0 15px 15px;
    color: #666;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.custom-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

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


/* Responsive Adjustments */

@media (max-width: 768px) {
    .procedure-card img {
        height: 200px;
    }
    .indication-card img {
        height: 150px;
    }
    .procedure-content h3 {
        font-size: 1.2rem;
    }
}


/* Additional styles for hysteroscopy-laparoscopy page */

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #52adab;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.indications-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.laparoscopy-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #ffa2a3;
    font-weight: bold;
}

.feature-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.doctor-profile-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.doctor-profile-card img {
    /* width: 150px;
    height: 150px; */
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-form-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-card h4 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}


/* Service Images Section Styles */

.service-images {
    background: #f8f9fa;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.main-image {
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
}

.overlay-text {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    height: auto;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 10px;
    text-align: center;
}

.gallery-caption span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .main-image {
        height: 250px;
    }
    .overlay-text {
        font-size: 1.4rem;
    }
    .gallery-item img {
        height: auto;
    }
    .feature-card {
        padding: 15px;
    }
    .feature-card i {
        font-size: 2rem;
    }
    .indications-section,
    .laparoscopy-section {
        padding: 20px;
    }
    .doctor-profile-card img {
        /* width: 120px;
        height: 120px; */
    }
}


/* Animation Styles */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content {
    animation: fadeIn 0.5s ease-out;
}


/* Custom Form Styles */

.form-control {
    border: 1px solid #dee2e6;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ec9696;
    box-shadow: 0 0 0 0.2rem #ec9696;
}

.btn-primary {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}


/* testi */


/* Success Stories Slider Styles */

.success-stories {
    background: var(--secondary-color);
}

.section-header .subtitle {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-header .title {
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-divider {
    position: relative;
    height: 20px;
    margin: 20px 0;
}

.section-divider::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #ff6b6b;
}

.divider-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 15px;
    color: #ff6b6b;
}

.testimonial-card {
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    height: 100%;
}

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

.quote-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #52adab;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    margin: 20px auto;
    border-radius: 50%;
    overflow: hidden;
    /* border: 5px solid #ff6b6b; */
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    margin-top: 20px;
}

.testimonial-text p {
    color: #636e72;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #2d3436;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.rating {
    color: #ffd700;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}


/* conditions */

.conditions-section {
    background: #f8f9fa;
}

.treatment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: auto;
    overflow: hidden;
}

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

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.success-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgb(244 230 209);
    color: #333131;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: #2d3436;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-info {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.quick-info li {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.quick-info li i {
    color: #e99791;
    margin-right: 8px;
    font-size: 12px;
}

.learn-more {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #ff8787;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .treatment-card {
        margin-bottom: 20px;
    }
}

.learn-more {
    display: inline-block;
    width: 100%;
    background: #52adab;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: 2px solid #52adab;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    background: white;
    color: #52adab;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
}

.form-control:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

optgroup {
    font-weight: 600;
    color: #2d3436;
}

option {
    padding: 8px;
    font-weight: normal;
}

.select-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b6b;
    pointer-events: none;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.select-wrapper:hover::after {
    transform: translateY(-50%) translateY(2px);
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
    outline: none;
}

.custom-select:hover {
    border-color: #ff6b6b;
}


/* Style for option groups */

optgroup {
    font-weight: 600;
    color: #2d3436;
    background-color: #f8f9fa;
    padding: 5px;
}


/* Style for options */

option {
    padding: 10px;
    font-weight: normal;
    color: #333;
    background-color: white;
}


/* For Firefox */

.custom-select option {
    padding: 10px;
}


/* Remove default arrow in IE */

.custom-select::-ms-expand {
    display: none;
}


/* Placeholder color */

.custom-select option[value=""] {
    color: #6c757d;
}


/* Active/Selected state */

.custom-select option:checked {
    background-color: #ff6b6b;
    color: white;
}


/* Hover state for options */

.custom-select option:hover {
    background-color: #ff6b6b;
    color: white;
}


/* Mobile optimization */

@media (max-width: 768px) {
    .custom-select {
        padding: 10px 40px 15px 15px;
        font-size: 16px;
        /* Better for mobile tapping */
    }
}

.lead {
    font-size: 16px;
    font-weight: 400;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials {
    background: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #ffc107;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    min-height: 120px;
}

.reviewer-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.reviewer-info h5 {
    color: #333;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.section-header {
    margin-bottom: 40px;
}

.header-content {
    max-width: 60%;
}

.header-content .title {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 600;
}

.header-content p {
    color: #6c757d;
    margin-bottom: 0;
}

.read-more-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #52adab;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.read-more-btn:hover {
    background-color: #f3f4f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #4da5a3;
    border: 1px solid #52adab;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 25px;
    }
    .header-content {
        max-width: 100%;
        text-align: center;
        order: 1;
        /* This ensures text appears first on mobile */
    }
    .header-button {
        width: 100%;
        text-align: left;
        order: 2;
        /* This ensures button appears after text on mobile */
    }
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
}

.google-icon {
    width: 30px;
    /* Reduced from 20px to 16px */
    height: 30px;
    /* Reduced from 20px to 16px */
    object-fit: contain;
}

.rating {
    color: #ffc107;
    display: flex;
    gap: 2px;
}

.rating i {
    font-size: 14px;
}

span.rating.home {
    display: block;
}


/* ------------ */

.breadcrumb-section {
    background: linear-gradient(rgba(93, 155, 155, 0.8), rgba(242, 160, 161, 0.8)), url(../img/ivf.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    /* Increased padding from 80px to 120px */
    position: relative;
    margin-top: 80px;
    /* Added margin-top to prevent content cutting */
}


/* Keep existing styles for inner elements */

.breadcrumb-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    color: #fff;
    /* Ensure text is visible on gradient background */
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: flex-start;
    background: transparent;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/banner-img.jpg) no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    /* Increased padding */
    margin-top: 80px;
    /* Added margin-top to prevent cutting */
    margin-bottom: 50px;
    position: relative;
}


/* Additional styles to ensure content visibility */

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    color: #fff;
    margin-bottom: 15px;
}

.service-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.service-hero .breadcrumb-item,
.service-hero .breadcrumb-item a {
    color: #fff;
}

.service-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}


/* Media query for better responsiveness */

@media (max-width: 768px) {
    .service-hero {
        padding: 65px 0 50px;
        margin-top: 60px;
        margin-bottom: 20px;
    }
}


/* gallery css start */

.gallery_container {
    margin: 55px auto;
}

@media (min-width: 1300px) and (max-width: 2560px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (min-width: 700px) and (max-width: 1299px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

@media (min-width: 300px) and (max-width: 699px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }
}

.gallery_item {
    margin-bottom: 5px;
    overflow: hidden;
}

.popup-gallery a {
    display: block;
    width: 100%;
    border: 1px solid #fff;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
    transform: scale(1.05);
    border-color: #fff;
}

.popup-gallery img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: auto;
}

@media only screen and (max-width: 1000px) {
    .popup-gallery img {
        height: auto;
    }
}


/* END  */

.singicon_btn_nlf {
    position: absolute;
    top: 44%;
    bottom: 56%;
    left: 44%;
    right: 56%;
    opacity: 0;
}

.singicon_btn_nlf svg {
    color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
    opacity: 1;
}

.hover_affect_nlf:hover img {
    opacity: 0.5;
}


/* Custom Navbar Toggle Button Styling */

.navbar-toggler {
    border: none;
    padding: 10px;
    margin-right: 10px;
    position: relative;
    border-radius: 8px;
    background: linear-gradient(rgba(93, 155, 155, 0.8), rgba(242, 160, 161, 0.8));
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(93, 155, 155, 0.3);
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}


/* Animation for toggle button when active */

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}


/* Hover effect */

.navbar-toggler:hover {
    background: linear-gradient(rgba(93, 155, 155, 0.9), rgba(242, 160, 161, 0.9));
}


/* Media query for mobile devices */

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
        margin-left: auto;
    }
}


/* new banner css start */

.hero-section {
    background: linear-gradient(to right, rgba(93, 155, 155, 0.9), rgba(242, 160, 161, 0.9));
    padding: 120px 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    gap: 50px;
}

.hero-left {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 30px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
    /* mix-blend-mode: lighten; */
}

.hero-right {
    flex: 1;
    color: #fff;
}

.hero-right h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-right .lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: #ec9696;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-img {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 50px;
    }
}


/* new banner css end */

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 50px;
    }
    .breadcrumb-section {
        padding: 55px 0;
    }
    .about-content h2::after {
        left: 135px;
    }
    .footer {
        padding: 3rem 0 3em;
    }
    .hero-img{
      margin-bottom: 5px;
    }
    .hero-right h1 {
        line-height: 40px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .about-image-wrapper{
        padding: 0px;
    }
        .appointment-content {
            padding-top: 20px;

        }
        .about-image img {

            margin-bottom: 15px;
        }

}

.logo-img {
    width: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* about section css start */

.about {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(93, 155, 155, 0.1);
    color: #5D9B9B;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #2c7d7e;
    margin-bottom: 5px;
    padding-bottom: 5px;
    position: relative
}


/* .about-content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #e99696;
    margin-bottom: 5px;
    padding-bottom: 5px;
} */

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 10px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 155, 155, 0.1);
    border-radius: 12px;
    color: #5D9B9B;
    font-size: 20px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2D3436;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #636e72;
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.image-container {
    position: relative;
    padding: 30px;
}

.image-box {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 15px 15px 30px rgba(93, 155, 155, 0.1), -15px -15px 30px rgba(255, 255, 255, 0.8);
}

.image-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transform: translateZ(0);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 155, 155, 0.2) 0%, rgba(242, 160, 161, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.corner-shape {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #5D9B9B;
    opacity: 0.7;
}

.top-left {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
}

.top-right {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 10px 0 0;
}

.bottom-left {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 10px;
}

.bottom-right {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 10px 0;
}

.side-line {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #5D9B9B, #F2A0A1);
}

.left {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.right {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    color: #5D9B9B;
    font-size: 20px;
}

.badge-text {
    color: #2D3436;
    font-weight: 500;
    font-size: 14px;
}


/* Hover Effects */

.image-box:hover .main-image {
    transform: scale(1.05);
}

.image-box:hover .image-overlay {
    opacity: 1;
}

.image-box:hover .corner-shape {
    animation: pulse 2s infinite;
}


/* Shine Effect */

.image-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 8s infinite;
}


/* Animations */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 200%;
    }
    100% {
        left: 200%;
    }
}


/* Responsive Styles */

@media (max-width: 991px) {
    .image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .image-container {
        padding: 20px;
    }
    .corner-shape {
        width: 30px;
        height: 30px;
    }
    .side-line {
        height: 40px;
    }
    .floating-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: #fff;
    padding: 20px 30px;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #5D9B9B;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    color: #636e72;
}

.pattern-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(93, 155, 155, 0.1) 25%, transparent 25%), linear-gradient(-45deg, rgba(93, 155, 155, 0.1) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(93, 155, 155, 0.1) 75%), linear-gradient(-45deg, transparent 75%, rgba(93, 155, 155, 0.1) 75%);
    background-size: 20px 20px;
    border-radius: 30px;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(242, 160, 161, 0.1);
    z-index: -1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* Tablet View */

@media (max-width: 991px) {
    .about {
        padding: 120px 0 50px;
    }
    .about-content {
        text-align: center;
        margin-bottom: 50px;
    }
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px;
    }
}


/* Mobile View */

@media (max-width: 767px) {
    .about {
        padding: 120px 0 50px;
    }
    .about-content h2 {
        font-size: 32px;
    }
    .about-description {
        font-size: 16px;
    }
    .feature-item {
        padding: 15px;
    }
    .experience-badge {
        padding: 15px 25px;
    }
    .experience-badge .years {
        font-size:20px;
    }
    .pattern-bg,
    .floating-shape {
        display: none;
    }
}

.image-showcase {
    position: relative;
    padding: 40px;
    z-index: 1;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.image-container {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(93, 155, 155, 0.15);
    transform: translateZ(0);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(93, 155, 155, 0.2), rgba(242, 160, 161, 0.2));
    z-index: 1;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.decorative-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(93, 155, 155, 0.2);
    border-radius: 40px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.badge-content {
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #5D9B9B;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 14px;
    color: #636e72;
    white-space: nowrap;
}

.floating-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.card-icon {
    font-size: 24px;
}

.card-text {
    font-size: 14px;
    font-weight: 500;
    color: #2D3436;
}

.accent-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.circle-1 {
    width: 180px;
    height: 180px;
    background: rgba(93, 155, 155, 0.1);
    top: -40px;
    right: -60px;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: rgba(242, 160, 161, 0.1);
    bottom: -30px;
    left: -40px;
}

.accent-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    right: -50px;
    background-image: radial-gradient(circle, #5D9B9B 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
}


/* Shine effect */

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 8s infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 200%;
    }
    100% {
        left: 200%;
    }
}


/* Responsive Styles */

@media (max-width: 991px) {
    .image-showcase {
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .image-showcase {
        padding: 15px;
    }
    .experience-badge {
left: 59%;
        transform: translateX(-50%);
        bottom: -9px;
        padding: 5px 10px;
    }
    .floating-card {
        display: none;
    }
    .accent-circle,
    .accent-dots {
        display: none;
    }
    .decorative-border {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    .about-image-wrapper{
        padding:0px;
        margin-bottom: 20px;
    }
}


/* Additional hover effects */

.image-container {
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}


/* Gradient overlay animation */

.image-container::before {
    animation: gradientShift 8s infinite alternate;
}

@keyframes gradientShift {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}


/* Decorative elements animation */

.decorative-border {
    animation: borderPulse 4s infinite;
}

@keyframes borderPulse {
    0%,
    100% {
        border-color: rgba(93, 155, 155, 0.2);
    }
    50% {
        border-color: rgba(242, 160, 161, 0.2);
    }
}


/* navbar css new start */

.logo-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    /* width: 150px; */
    /* Default width for larger screens */
    transition: width 0.3s ease;
}

@media (max-width: 991px) {
    .logo-img {
        width: 100%;
        /* Adjust width for tablets */
    }
}

@media (max-width: 767px) {
    .logo-img {
        width: 100%;
        /* Adjust width for mobile devices */
    }
}

.navbar-brand {
    /* display: flex;
    align-items: center;
    padding: 10px; */
    margin-right: auto;
}

.brand-text {
    display: inline-block;
    vertical-align: middle;
}

.accordion-button:not(.collapsed) {
    background-color: #e3fffb;
}

.btn-primary.banner-btn {
    background: #52adab;
}

.btn-primary.banner-btn:hover {
    background: #ffffff;
    border: 1px solid #52adab;
}


/* navbar css new end */


/* footer stick code(call and whtsapp button) */

.footer-stick {
    display: none;
}

@media (min-width: 769px) {
    .footer-stick {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .footer-stick {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 85%;
        z-index: 100;
    }
}

@media (max-width: 767.98px) {
    .footer-stick .call-btn {
        padding: 10px 0;
        position: relative;
    }
    .footer-stick .call-btn span,
    .footer-stick .whats-btn span {
        position: absolute;
        top: 8px;
        left: 40px;
        z-index: -1;
        border: 1px solid #fff;
        border-radius: 20px;
        padding: 10px 20px 10px 30px;
        width: 150px;
        text-align: center;
    }
    .footer-stick .call-btn span {
        background: linear-gradient(rgb(93 155 155), rgb(242 160 161));
    }
    .footer-stick .whats-btn span {
        background: linear-gradient(rgb(93 155 155), rgb(242 160 161));
    }
    .call-img-f {
        background: linear-gradient(rgb(93 155 155), rgb(242 160 161));
        border-radius: 50%;
    }
    .whtsapp-img-f {
        background: linear-gradient(rgb(93 155 155), rgb(242 160 161));
        border-radius: 50%;
    }
    .footer-stick a {
        font-size: 16px;
        line-height: 24px;
        display: block;
        width: 100%;
    }
    .footer-stick .whats-btn {
        padding: 8px 0;
        position: relative;
    }
    .footer-stick img {
        width: 46px;
        margin-left: 37px;
    }
}

.footer-logo {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    /* width: 150px; */
    transition: width 0.3s ease;
    background: #fff;
}


/* footer stick code(call and whtsapp button) */


/* Logo size adjustments */

.logo-img {
    max-width: 320px;
    /* Adjust this value as needed */
    height: auto;
}


/* Navbar layout fixes */

.navbar-nav {
    flex-wrap: nowrap;
    white-space: nowrap;
}


/* Responsive adjustments for menu items */

@media (min-width: 992px) {
    .nav-link {
        padding: 0.5rem 0.6rem;
        margin: 0 0.3rem;
        font-size: 0.95rem;
    }
    .navbar-brand {
        margin-right: 0;
    }
    .container {
        max-width: 95%;
    }
}


/* Further compression for larger screens */

@media (min-width: 1200px) {
    .nav-link {
        padding: 0.5rem 0.8rem;
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    .container {
        max-width: 1140px;
    }
}


/* Navbar container adjustments for mobile */

@media (max-width: 991px) {
    /* Target tablets and below */
    .navbar>.container,
    .navbar>.container-fluid {
        display: flex;
        flex-wrap: wrap;
        /* Allow wrapping if needed, but prioritize same line */
        align-items: center;
        justify-content: space-between;
        /* Push brand to left, toggler to right */
    }
}


/* Logo size adjustment for mobile */

@media (max-width: 767px) {
    /* Target smaller mobile screens */
    .logo-img {
        width: 250px;
        /* Adjust this value as needed for desired mobile logo size */
        max-width: 100%;
        /* Ensure it doesn't exceed container width */
        height: auto;
    }
    .navbar-brand {
       padding-top: 0px;
        padding-bottom: 0px;
        margin-right: 0;
        /* Remove extra margin */
    }
    .navbar-toggler {
        /* Add styling if needed, e.g., padding adjustments */
        /* Ensure it aligns nicely with the logo */
    }
    .hero-container{
        gap: 0px;
    }
}


/* Optional: If logo is still too large on slightly larger mobile screens */

@media (max-width: 991px) and (min-width: 768px) {
    .logo-img {
        width: 150px;
        /* Slightly larger for tablets */
    }
}