/* ===========================
   General Reset
=========================== */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* ===========================
   Preloader
=========================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    position: relative;
    width: 120px;
    height: 120px;
}

.preloader-logo img {
    width: 70px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: pulse 2s infinite ease-in-out;
}

.preloader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 3px solid transparent;
    border-top: 3px solid #D83475;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1.5s linear infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===========================
   Navbar (Desktop + Mobile)
=========================== */
.navbar {
    transition: background 0.4s ease;
    padding: 14px 0;
    z-index: 1000;
}

/* Brand */
.navbar-brand img {
    width: 42px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.navbar-brand {
    font-size: 1.35rem;
    letter-spacing: 0.4px;
    color: #D83475 !important;
    font-weight: 700;
}

/* Links (Desktop) */
.navbar-nav .nav-link {
    color: #fff;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #D83475 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D83475;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Dropdown Chevron */
.navbar .dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 6px;
    vertical-align: middle;
    color: #fff;
    font-weight: 600;
    background: #D83475;
    padding: 3px;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.navbar .dropdown-toggle:hover i {
    transform: rotate(180deg);
    background: #b3215c;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background: #212529;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 22px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background: #D83475;
    color: #fff;
    border-radius: 6px;
}

.dropdown-menu.show {
    display: block;
}

/* ===========================
   Mobile Navbar
=========================== */
@media (max-width: 767px) {

    /* Navbar collapse box */
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.92);
        padding: 10px 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    /* Nav links */
    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 12px 0;
        margin: 0;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Remove underline hover effect in mobile */
    .navbar-nav .nav-link::after {
        display: none;
    }

    /* Dropdown toggle full width */
    .navbar .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar .dropdown-toggle i {
        margin-left: auto;
        background: none;
        color: #fff;
        font-size: 0.9rem;
        padding: 0;
        transform: none !important;
    }

    /* Dropdown menu inside collapse */
    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }
}


/* ===========================
   Hero Banner Carousel (Final)
=========================== */
.hero-banner,
.hero-banner .carousel-item {
    height: 100vh;
}

.hero-banner .carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-banner .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* dark overlay */
    z-index: 1;
}

/* Centered Caption */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    max-width: 850px;
    text-align: center;
    padding: 0 15px;
}

/* Heading */
.carousel-caption h5 {
    font-size: 3rem;
    font-weight: 800;
    width: 500px;
    /* ✅ bolder */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
    /* ✅ tighter shadow */
}

/* Paragraph */
.carousel-caption p {
    font-size: 1.35rem;
    font-weight: 400;
    /* ✅ thoda mota */
    color: #fdfdfd;
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    /* ✅ sharper shadow */
}

/* Premium Button */
.btn-premium {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(45deg, #D83475, #FF6B6B);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #FF6B6B, #D83475);
    box-shadow: 0 6px 20px rgba(216, 52, 117, 0.5);
}

/* Carousel Indicators */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #D83475;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #D83475;
    /* brand color */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-size: 60% 60%;
    transition: all 0.3s ease;
}

/* ✅ Hover effect on arrows */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(216, 52, 117, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .carousel-caption h5 {
        font-size: 2.2rem;
    }

    .carousel-caption p {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .carousel-caption h5 {
        font-size: 1.6rem;
        line-height: 1.3;
        width: 250px;
    }

    .carousel-caption p {
        font-size: 0.95rem;
        line-height: 1.4;
        width: 200px;
    }

    .btn-premium {
        font-size: 0.85rem;
        padding: 10px 22px;
    }
}



/* ===========================
   Services
=========================== */
.services {
    background: #000;
    /* Black background */
    color: #fff;
}

.service-box {
    transition: all 0.4s ease;
}

.service-inner {
    background: #111;
    /* Dark card background */
    padding: 50px 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
}

.service-inner i {
    color: #d83475;
    /* Pink icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-inner h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.service-inner .underline {
    display: block;
    width: 0;
    height: 3px;
    margin: 0 auto;
    background: #d83475;
    /* Pink underline */
    transition: width 0.4s ease;
}

/* Hover Effects */
.service-box:hover .service-inner {
    background: #d83475;
    color: #fff;
    border-color: #fff;
    /* White border highlight */
    transform: translateY(-5px);
}

.service-box:hover i {
    color: #fff;
    transform: scale(1.2);
}

.service-box:hover .underline {
    width: 40px;
}

/* ===========================
   Why Choose Us
=========================== */
/* Section Base */
.why-choose-us {
    background: #fff;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
}

.section-title span {
    color: #d83475;
}

/* Text */
.why-choose-us p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

/* Feature List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #444;
    transition: all 0.3s ease;
}

.features-list li i {
    color: #d83475;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effect on Features */
.features-list li:hover {
    color: #d83475;
    transform: translateX(5px);
}

.features-list li:hover i {
    transform: scale(1.2);
    color: #ff6b6b;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.image-wrapper img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(216, 52, 117, 0.3);
}

/* Premium Button */
.btn-premium {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(45deg, #d83475, #ff6b6b);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #ff6b6b, #d83475);
    box-shadow: 0 6px 20px rgba(216, 52, 117, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
}


/* ===========================
   Products
=========================== */
.products {
    background: #000;
    color: #fff;
}

.product-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: #d83475;
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(216, 52, 117, 0.4);
}

.product-img {
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-content h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.product-content p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 15px;
}

/* 🔹 Custom Button */
.btn-custom {
    display: inline-block;
    padding: 10px 20px;
    background: #d83475;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #d83475;
}

.btn-custom:hover {
    background: transparent;
    color: #d83475;
    border-color: #d83475;
    box-shadow: 0 0 15px rgba(216, 52, 117, 0.7);
}



/* ===========================
   Other Products Section (White Theme)
=========================== */
.other-products-section {
    background: #fff;
    color: #212529;
}

.other-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.other-product-card:hover {
    border-color: #d83475;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(216, 52, 117, 0.2);
}

.other-product-img {
    overflow: hidden;
}

.other-product-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-bottom: 1px solid #eee;
}

.other-product-card:hover .other-product-img img {
    transform: scale(1.08);
}

.other-product-content {
    padding: 20px;
    text-align: center;
}

.other-product-content h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.other-product-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

/* 🔹 Custom Button */
.btn-other {
    display: inline-block;
    padding: 10px 20px;
    background: #d83475;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #d83475;
}

.btn-other:hover {
    background: transparent;
    color: #d83475;
    border-color: #d83475;
    box-shadow: 0 0 12px rgba(216, 52, 117, 0.5);
}



/* ============================
   FAQ SECTION PREMIUM STYLE
============================ */
.faq-section {
    background: #f9fbfd;
    font-family: 'Poppins', sans-serif;
    padding: 60px 0;
}

/* Title */
.faq-section .section-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.faq-section .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #d83475, #ff4d8a);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Accordion Item */
.accordion-item {
    border: 2px solid transparent;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

/* Border highlight when collapsed */
.accordion-item .accordion-button.collapsed {
    border-left: 5px solid #d83475;
    border-radius: 14px;
}

/* Hover lift */
.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* Accordion Button */
.accordion-button {
    font-weight: 600;
    padding: 18px 22px;
    background: #fff;
    color: #333;
    border: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

/* Active State */
.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #d83475, #ff4d8a);
    color: #fff;
    box-shadow: none;
}

/* Focus Reset */
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Toggle Arrow */
.accordion-button::after {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(0.5);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: brightness(0) invert(1);
}

/* Accordion Body */
.accordion-body {
    background: #fff;
    padding: 20px 22px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Container */
@media (min-width: 992px) {
    .faq-section .accordion {
        max-width: 850px;
        margin: auto;
    }
}

/* ============================
   Customer Reviews
============================ */

/* Custom colors */
:root {
    --bs-light-yellow: #fef0cd;
    --bs-light-pink: #d94b8e;
}

/* Custom background colors from the image */
.bg-light-yellow {
    background-color: var(--bs-light-yellow);
}

.bg-light-pink {
    background-color: var(--bs-light-pink) !important;
}

.testimonial-section {
    background-color: #f8f8fa;
    /* Light background for the section */
}

.divider {
    width: 50px;
    height: 4px;
    background-color: var(--bs-light-pink);
    border-radius: 2px;
}

/* Card Styling */
.testimonial-card {
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card .card-body {
    padding: 2rem;
    flex: 1;
}

.testimonial-card .card-text {
    font-size: 0.9rem;
}

.quote-icon {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: var(--bs-light-pink);
    line-height: 1;
}

.quote-icon-white {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: white;
    line-height: 1;
}

/* Star rating styling */
.star-rating span {
    color: gold;
    font-size: 0.9rem;
}

/* Image Background Card */
.bg-image-card {
    background-image: url('../images/customer/customer3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
    border-radius: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
}

.bg-image-card .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.rating-badge {
    background-color: white;
    color: var(--bs-light-pink);
    font-weight: bold;
}

/* Make columns flex so cards stretch equally */
.row-scrollable>.col-12,
.row-scrollable>.col-md-6,
.row-scrollable>.col-lg-3 {
    display: flex;
}

.row-scrollable>.col-12 .testimonial-card,
.row-scrollable>.col-md-6 .testimonial-card,
.row-scrollable>.col-lg-3 .testimonial-card {
    flex: 1;
}

/* Responsive horizontal scroll for smaller screens */
@media (max-width: 991.98px) {
    .row-scrollable {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .row-scrollable>.col-12 {
        flex: 0 0 75%;
        max-width: 75%;
    }
}


/* ============================
   Blog Section (White Background)
============================ */
/* ===== Premium Blog Section ===== */
#premium-blog {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    color: #222;
    padding: 60px 0;
}

#premium-blog .pb-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 0.5rem;
}

#premium-blog .pb-subtitle {
    color: #555;
    font-size: 1rem;
}

/* Blog Card */
.pb-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pb-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(216, 52, 117, 0.25);
}

.pb-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pb-card:hover .pb-img img {
    transform: scale(1.1);
}

/* Blog Content */
.pb-content {
    padding: 20px;
}

.pb-date {
    font-size: 0.8rem;
    color: #d83475;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pb-title-card {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.pb-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

.pb-link {
    color: #d83475;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pb-card:hover .pb-link {
    transform: translateX(6px);
}

.pb-link:hover {
    color: #222;
}

/* Responsive */
@media (max-width: 992px) {
    .pb-img img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .pb-img img {
        height: 180px;
    }
}

/* ============================
   Premium Contact Section
============================ */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    background-color: #f9fbfd;
}

/* 🔹 Contact Section */
.contact-section {
    padding: 60px 0;
}

/* 🔹 Cards */
.contact-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(216, 52, 117, 0.25);
}

/* 🔹 Card Icons (default grey → pink on hover) */
.contact-card .icon-box i {
    font-size: 2rem;
    color: #444 !important;
    /* default grey */
    transition: color 0.3s ease;
}

.contact-card:hover .icon-box i {
    color: #d83475 !important;
    /* hover pink */
}

/* 🔹 Contact Info Links & Text */
.contact-card .premium-link,
.contact-card span,
.contact-card p {
    color: #444 !important;
    transition: color 0.3s ease;
}

.contact-card:hover .premium-link,
.contact-card:hover span,
.contact-card:hover p,
.contact-card:hover .icon-box {
    color: #d83475 !important;
}

/* 🔹 Titles & Primary */
.text-primary {
    color: #d83475 !important;
}

/* 🔹 Floating Label Icons (form ke andar jo icons hain) */
.form-floating label i {
    color: #444 !important;
    transition: color 0.3s ease;
}

.form-control:focus+label i,
.form-floating:hover label i {
    color: #d83475 !important;
}

/* 🔹 Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #d83475, #b7285d);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 22px;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #b7285d, #d83475);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 52, 117, 0.3);
}

/* 🔹 Map Container */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

/* 🔹 Responsive */
@media (max-width: 991px) {
    .map-container {
        height: 250px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 24px;
    }

    .btn-gradient {
        width: 100%;
    }
}



/* ===== Blog Section ===== */
.blog-section {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

.blog-article {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(216, 52, 117, 0.15);
}

.blog-article p {
    color: #555;
    line-height: 1.8;
}

/* ===== Sidebar ===== */
.sidebar {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(216, 52, 117, 0.15);
}

.sidebar h5 {
    font-weight: 600;
    color: #222;
}

.sidebar-link {
    color: #d83475;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sidebar-link:hover {
    color: #222;
    transform: translateX(5px);
}

/* ===== CTA Section ===== */
.cta-section {
    transition: background-color 0.3s ease;
}

.cta-section:hover {
    background-color: #c62f68;
}

.cta-section h2 {
    font-size: 2rem;
}

.cta-section .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {

    .blog-article,
    .sidebar {
        padding: 20px;
    }
}

/* ============================
   Tab Section
============================ */

.tab-section-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

/* Tab Bar */
.tab-bar {
    background: linear-gradient(135deg, #d83475, #b52c61);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn svg {
    flex-shrink: 0;
}

.tab-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.tab-btn.active {
    background-color: #fff;
    color: #d83475;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(216, 52, 117, 0.4);
}

/* Content */
.tab-content-card {
    padding: 2.5rem;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.tab-image-wrapper {
    width: 100%;
    height: 300px;
    /* ✅ Fixed display height */
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(216, 52, 117, 0.2);
}

.tab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ Crop karega, stretch nahi karega */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.tab-image.active {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(216, 52, 117, 0.3);
}

.tab-text {
    color: #495057;
    line-height: 1.7;
    text-align: justify;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 850px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tab-content-card {
        padding: 1.5rem;
    }

    .tab-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .tab-text {
        font-size: 0.95rem;
    }

    .tab-image-wrapper {
        height: 200px;
        /* ✅ Smaller images on mobile */
    }
}

/* ============================
   SCROLL TO TOP BUTTON WITH PROGRESS
============================ */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #d83475, #ff4d8a);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(216, 52, 117, 0.5);
    overflow: visible;
    /* cut hone ka issue fix */
}

/* Hover Glow Effect */
#scrollTopBtn:hover {
    background: linear-gradient(135deg, #ff4d8a, #d83475);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(216, 52, 117, 0.7);
}

/* SVG Circle Progress */
#scrollTopBtn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    transform: rotate(-90deg);
}

#scrollTopBtn circle {
    fill: none;
    stroke: rgba(216, 52, 117, 0.3);
    stroke-width: 4;
    r: 26;
    /* ✅ proper fit */
    cx: 30;
    cy: 30;
}

#scrollTopBtn circle.progress {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 163;
    /* 2πr (r=26) */
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.25s linear;
}

/* -- Responsive Fixes -- */
@media (max-width: 768px) {
    #scrollTopBtn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    #scrollTopBtn svg {
        width: 50px;
        height: 50px;
    }

    #scrollTopBtn circle,
    #scrollTopBtn circle.progress {
        r: 22;
        /* ✅ proportionate radius */
        cx: 25;
        cy: 25;
        stroke-width: 3;
        stroke-dasharray: 138;
        /* 2πr */
        stroke-dashoffset: 138;
    }
}

@media (max-width: 480px) {
    #scrollTopBtn {
        width: 44px;
        height: 44px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }

    #scrollTopBtn svg {
        width: 44px;
        height: 44px;
    }

    #scrollTopBtn circle,
    #scrollTopBtn circle.progress {
        r: 19;
        /* ✅ smaller screens ke liye */
        cx: 22;
        cy: 22;
        stroke-width: 2.5;
        stroke-dasharray: 119;
        stroke-dashoffset: 119;
    }
}


/* ============================
   About Us Banner
============================ */

.product-banner {
    position: relative;
    width: 100%;
    /* ✅ full width hamesha */
    height: 60vh;
    /* ✅ kam height (pehle 70vh tha) */
    background: url('../images/f1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.blog-banner1 {
    position: relative;
    width: 100%;
    /* ✅ full width hamesha */
    height: 60vh;
    /* ✅ kam height (pehle 70vh tha) */
    background: url('../images/blog1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.blog-banner2 {
    position: relative;
    width: 100%;
    /* ✅ full width hamesha */
    height: 60vh;
    /* ✅ kam height (pehle 70vh tha) */
    background: url('../images/blog2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* About Us Banner */
.about-banner {
    position: relative;
    width: 100%;
    /* ✅ full width hamesha */
    height: 60vh;
    /* ✅ kam height (pehle 70vh tha) */
    background: url('../images/customer-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* dark overlay */
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.about-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #d83475;
    /* brand accent */
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 991px) {

    .about-banner,
    .blog-banner1,
    .blog-banner2,
    .product-banner {
        height: 45vh;
        /* ✅ tablet pe thoda chhota */
    }

    .about-content h1 {
        font-size: 2.4rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

@media(max-width: 575px) {

    .about-banner,
    .blog-banner1,
    .blog-banner2,
    .product-banner {
        height: 60vh;
        /* ✅ mobile pe aur chhota */
    }

    .about-content h1 {
        font-size: 2rem;
    }
}


/* ============================
   About Section Premium (Theme Colors Applied)
============================ */
.about-section {
    background: linear-gradient(135deg, #f9fbfd 0%, #eef4ff 100%);
    position: relative;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

/* Text content card */
.text-content {
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.title {
    color: #222;
    line-height: 1.2;
    position: relative;
}

.title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d83475, #f06292);
    /* ✅ theme color gradient */
    border-radius: 2px;
}

.intro-text {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #555;
}

/* Image box */
.image-box {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-box:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-box img {
    width: 100%;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

/* Stat boxes */
.stat-box {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #d83475, #f06292);
    /* ✅ theme gradient */
    opacity: 0.1;
    transition: width 0.4s ease;
    z-index: 0;
}

.stat-box:hover::before {
    width: 100%;
}

.stat-box h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d83475;
    /* ✅ theme color */
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.stat-box p {
    font-size: 0.95rem;
    color: #444;
    position: relative;
    z-index: 1;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 991.98px) {
    .text-content {
        padding: 2rem;
    }

    .title {
        font-size: 2rem;
    }
}


/* =========================
   Director Premium Section
========================= */
.director-premium {
    background: #0a0a0a;
    /* Dark base */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 80px 0;
}

.director-text .headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.director-text .headline span {
    color: #d83475;
    /* Theme accent */
}

.director-text .underline {
    width: 70px;
    height: 4px;
    background: #d83475;
    margin-top: 12px;
    border-radius: 2px;
}

.director-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

/* Profile Card */
.director-profile {
    background: #111;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.director-profile:hover {
    transform: translateY(-8px);
    border-color: #d83475;
    box-shadow: 0 0 25px rgba(216, 52, 117, 0.3);
}

.director-profile .image-box {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d83475;
    transition: all 0.4s ease;
}

.director-profile .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.director-profile:hover .image-box img {
    transform: scale(1.1);
}

.director-profile .name {
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.director-profile .role {
    font-size: 0.95rem;
    color: #bbb;
}

/* Responsive */
@media (max-width: 991.98px) {
    .director-text {
        text-align: center;
    }

    .director-text .headline {
        font-size: 2rem;
    }
}


/* ============================
   Vision, Mission, Aim & Goal
============================ */
.vmag-section {
    background: #f9fbfd;
    font-family: 'Poppins', sans-serif;
}

.vmag-section .section-title {
    font-size: 2rem;
    color: #222;
}

.vmag-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.vmag-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #d83475, #f15b95);
    color: #fff;
}

.vmag-card:hover p {
    color: #fff !important;
}

.vmag-card .icon {
    font-size: 2.2rem;
    color: #d83475;
    transition: all 0.4s ease;
}

.vmag-card:hover .icon {
    color: #fff;
    transform: scale(1.2);
}

.vmag-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}


/* ============================
   Product Section
============================ */
/* ===== Product Showcase Section ===== */
#product-showcase {
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
}

.showcase-subtitle {
    color: #555;
    font-size: 1rem;
}

/* ===== Cards ===== */
.product-card-link {
    text-decoration: none;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(216, 52, 117, 0.25);
}

.img-wrapper {
    overflow: hidden;
    height: 250px;
    /* bigger image */
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .img-wrapper img {
    transform: scale(1.15);
}

.showcase-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(216, 52, 117, 0.9), rgba(216, 52, 117, 0));
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
}

.showcase-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.showcase-info p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* Learn More Button */
.learn-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #fff;
    color: #d83475;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.showcase-card:hover .learn-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .img-wrapper {
        height: 200px;
    }
}

.showcase-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    /* darker gradient */
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    /* text pop effect */
}

.showcase-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.showcase-info p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}


/* ============================
   Footer Section
============================ */

.footer {
    background-color: #000;
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-top: 3rem;
    overflow-x: hidden;
    /* ✅ mobile horizontal scroll fix */
}

.footer-logo {
    width: 42px;
    height: auto;
}

/* Promo Box */
.promo-box {
    background: #121212;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    max-width: 100%;
    /* ✅ prevent overflow */
}

.promo-box h2,
.promo-box p,
.promo-box .btn {
    color: #fff;
}

.promo-box .lead {
    color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
    background-color: #d83475;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #b02560;
    transform: translateY(-2px);
}

/* Globe Canvas */
.globe-canvas {
    width: 250px;
    height: 250px;
    max-width: 100%;
    /* ✅ responsive globe */
}

/* Footer Links + Lists */
.footer-links li,
.footer-why li,
.col-md-3 p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links i,
.footer-why i,
.col-md-3 p i {
    color: #d83475;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* General Links */
a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

a:hover {
    color: #d83475;
    transform: translateX(4px);
}

/* Hover Effects for Icons */
.footer-links li:hover i,
.footer-why li:hover i,
.col-md-3 p:hover i {
    transform: scale(1.2);
    color: #fff;
}

.text-secondary {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Footer Bottom */
.footer-bottom {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    position: relative;
}

.footer-bottom p {
    margin: 0;
    transition: 0.3s;
}

.footer-bottom p span.footer-company {
    font-weight: 600;
    color: #d83475;
    /* brand accent color */
}

.footer-bottom p:hover span.footer-company {
    color: #fff;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d83475, #b02560);
    border-radius: 2px;
}

/* Optional: subtle hover effect on the entire line */
.footer-bottom:hover p {
    color: #fff;
    transform: translateY(-1px);
    transition: 0.3s;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
    .footer-bottom {
        text-align: center;
    }

    .divider {
        margin: 0 auto 10px auto;
    }
}


/* Responsive */
@media (max-width: 991.98px) {
    .promo-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .globe-canvas {
        margin-top: 20px;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .footer {
        text-align: left;
    }

    .footer-links li,
    .footer-why li,
    .col-md-3 p {
        justify-content: flex-start;
    }
}