:root {
    --brand-red: #E53935;
    --nt-red: #E53935;
    --nt-dark: #121212;
    --nt-red: #E53935;
    --nt-dark: #111111;
}


body {
    font-family: 'Poppins', sans-serif;
    /* cursor: none; */
}



/* ===================================
   CLEAN MODERN CURSOR (NO BLUR)
=================================== */
/* 
.modern-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    border: 2px solid rgba(220, 53, 69, 0.7);
    background: transparent;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s ease,
        height 0.3s ease,
        border-color 0.3s ease;
    z-index: 9999;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.smoke-particle {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9998;

    width: 14px;
    height: 14px;

    background: radial-gradient(circle,
            rgba(220, 53, 69, 0.45) 0%,
            rgba(220, 53, 69, 0.25) 40%,
            rgba(220, 53, 69, 0.1) 60%,
            transparent 80%);

    filter: blur(6px);
    animation: premiumSmoke 1.4s ease-out forwards;
}

@keyframes premiumSmoke {
    0% {
        opacity: 0.7;
        transform: scale(1) translateY(0);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.6) translateY(-8px);
    }

    100% {
        opacity: 0;
        transform: scale(2.4) translateY(-15px);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(3);
    }
}
 */


/* logo text css  */
/* TEXT LOGO STYLE */
/* Default White Logo */


.text-logo {
    font-size: 30px;
    font-weight: 900;
    /* letter-spacing: 3px; */
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: all 0.4s ease;

    /* Soft white glow */
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.4);
}


/* Scroll Active Class */
.ultra-navbar.scrolled .text-logo {
    background: linear-gradient(90deg, #ff0000, #ff4d4d, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 3px 8px rgba(255, 0, 0, 0.25);
}




/* navbar css  */
/* ================= BASE ================= */
/* ================= BASE ================= */

/* ==========================================
   ULTRA NAVBAR WITH MOBILE ICONS
========================================== */

.ultra-navbar {
    padding: 22px 0;
    /* backdrop-filter: blur(18px); */
    transition: all 0.4s ease;
    font-family: 'Raleway', sans-serif;
}

.ultra-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
}

/* LOGO */
.ultra-navbar .ultra-logo {
    height: 70px;
    transition: 0.3s ease;
}

.ultra-navbar.scrolled .ultra-logo {
    height: 55px;
}

/* NAV LINKS */
.ultra-navbar .nav-link {
    font-size: 17px;
    font-weight: 800;
    /* color: #222; */
    /* color: #000; */
    color: #222222;
    /* color: #ffffff; */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    /* transition: all 0.3s ease; */
    display: inline-block;
}


.ultra-navbar .nav-link:hover {
    color: #222222;
    text-shadow: 0 0 8px rgba(229, 57, 53, 0.3);
    transform: translateY(-3px);
    /* 3px upar */
}


.ultra-navbar .nav-link.active {
    color: #222222;
}

/* Hide icons on desktop */
.ultra-navbar .nav-icon {
    display: none;
}

/* DROPDOWN */
.ultra-navbar .dropdown-menu {
    border-radius: 16px;
    padding: 12px 0;
    border: none;
}

.ultra-navbar .dropdown-item {
    padding: 7px 22px;
    font-weight: 500;
    transition: 0.3s;
}

.ultra-navbar .dropdown-item:hover {
    background: #dc3545;
    color: #fff;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .ultra-navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* CTA BUTTON */
.ultra-navbar .ultra-btn {
    background: #dc3545;
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.ultra-navbar .ultra-btn:hover {
    background: #b02a37;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .ultra-navbar {
        color: #222222;
        padding: 14px 0;
    }

    .ultra-navbar .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    /* Show icons only on mobile */
    .ultra-navbar .nav-icon {
        display: inline-flex;
        font-size: 18px;
        color: #222222;
        width: 22px;
    }

    .ultra-navbar .nav-link {
        padding: 12px;
        border-radius: 8px;
    }

    .ultra-navbar .nav-link:hover {
        background: rgba(220, 53, 69, 0.08);
    }

    .ultra-navbar .mobile-cta {
        margin-top: 15px;
    }
}


/* navbar css  */



/* Hero section new start */



/* Hero section new end */

/* ================= HERO SLIDER ================= */

/* ==========================================
   MODERN LANDING HERO SECTION
========================================== */
/* 
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
    max-height: 450px;
    object-fit: cover;
} */

/* Slight zoom effect */

/* =====================================
   HERO SECTION WITH DIAGONAL RED SPLIT
===================================== */
/* ================================
   HERO BASE
================================ */

.modern-hero {
    /* position:relative; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Container layering */
.hero-container {
    position: relative;
    z-index: 3;
}

/* ================================
   RIGHT IMAGE
================================ */

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("../img/homepage/new.jpg") no-repeat center center/cover;
    z-index: 1;
}

/* ================================
   RED DIAGONAL OVERLAY
================================ */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, #8b0000, #dc3545, #b02a37);
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0% 100%);
    z-index: 2;
}

/* ================================
   CONTENT
================================ */

.hero-content {
    color: #fff;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-heading span {
    color: #ffd6d6;
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

/* Primary */
.primary-btn {
    background: #fff;
    color: #dc3545;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Outline */
.outline-btn {
    border: 2px solid #fff;
    color: #fff;
}

.outline-btn:hover {
    background: #fff;
    color: #dc3545;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stats h4 {
    font-weight: 800;
    margin-bottom: 5px;
}

.hero-stats span {
    font-size: 13px;
    opacity: 0.8;
}

/* ================================
   LARGE SCREENS (1400px+)
================================ */

@media (min-width: 1400px) {
    .hero-heading {
        font-size: 3.5rem;
    }
}

/* ================================
   TABLET
================================ */

@media (max-width: 1199px) {

    .hero-bg-image {
        width: 55%;
    }

    .hero-overlay {
        width: 70%;
        clip-path: polygon(0 0, 90% 0, 75% 100%, 0% 100%);
    }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 991px) {

    .modern-hero {
        text-align: center;
        padding: 120px 0 80px;
    }

    /* Remove diagonal on mobile */
    .hero-overlay {
        clip-path: none;
        width: 100%;
    }

    .hero-bg-image {
        width: 100%;
        opacity: 0.15;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-text {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 576px) {

    .hero-heading {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}


/* old hero section css  */

/* HERO HEIGHT (reduced from 100vh) */

/* .hero-height {
    min-height: 72vh;
}

.btn {
    border-radius: 8px;
    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #111;
}


.hero-professional .hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(17, 17, 17, 0.88),
            rgba(229, 57, 53, 0.75)),
        url("https://images.unsplash.com/photo-1517433456452-f9633a875f6f");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
}


.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: #ffe1e1;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.hero-image {
    max-width: 460px;
    background: #fff;
}

@media (max-width: 991px) {
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
} */





/* about section css  */

/* ==========================================
   RESPONSIVE SAME HEIGHT IMAGE
========================================== */
.text-justify-custom {
    text-align: justify;
}

.about-img {
    width: 100%;
    height: 450px;
    /* Desktop height */
    object-fit: cover;
    /* Important */
    /* border-radius: 12px;   */
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .about-img {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-img {
        height: 240px;
    }
}


/* footer css  */

.footer-logo-img {
    height: 50px;
    /* logo size */
    width: auto;
    object-fit: contain;
}


/* Footer base */
.footer-premium-light {
    /* background: #ffffff; */
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    border-top: 1px solid #eaeaea;
}

/* Footer links */
.footer-link-light {
    color: #555;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-link-light:hover {
    color: #dc3545;
}

/* Social icons – default red */
.social-icon-light {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fbe9eb;
    /* light red bg */
    color: #dc3545;
    /* red icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover effect – premium */
.social-icon-light:hover {
    background: #dc3545;
    /* solid red */
    color: #fff;
    /* white icon */
    transform: translateY(-2px);
    /* subtle lift */
}


/* Divider */
.footer-premium-light hr {
    border-color: #e0e0e0;
}



/* footer css  */


/* hero section ke niche wala section ka css  */
/* VALUE SECTION CARDS */

/* ===========================
   TRUST SECTION
=========================== */
/* ===========================
   TRUST SECTION
=========================== */

.trust-section {
    padding: 70px 0;
    /* background: linear-gradient(135deg, #fff5f5, #ffeaea); */
    position: relative;
}

/* Section Title */
.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1c1c1c;
}

.section-title span {
    color: #dc2626;
    position: relative;
}

.section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    border-radius: 10px;
}

/* Subtitle */
.section-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 600px;
    margin: auto;
}

/* ===========================
   CARD DESIGN (Smaller)
=========================== */

.value-card {
    background: #ffffff;
    padding: 25px 18px;
    /* smaller padding */
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.05);
    height: 100%;
}

/* Red Gradient Border */
.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s;
}

/* Hover */
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
}

.value-card:hover::before {
    opacity: 1;
}

/* ===========================
   ICON STYLE
=========================== */

.value-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

/* ===========================
   TEXT STYLE
=========================== */

.value-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
    /* smaller */
    color: #111827;
}

.value-card p {
    font-size: 13px;
    /* smaller */
    color: #6b7280;
    margin-bottom: 0;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {

    .trust-section {
        padding: 5px 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .value-card {
        padding: 22px 15px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}



/* about us css  */


/* services css  */
.service-card {
    background: #ffffff;
    padding: 32px 26px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.12);
    color: #E53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}



/* services css  */

/* services modal css  */
/* ==========================================
   MODERN SERVICE MODAL DESIGN
========================================== */
.service-modal-image img {
    max-height: 260px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}


.modern-service-modal .modal-content {
    border-radius: 0;
    /* Rounded 0 */
    border: none;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Header */
.modern-service-modal .modal-title {
    font-size: 22px;
    color: #111;
}

/* Close Button */
.modern-service-modal .modern-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #dc3545;
    transition: 0.3s ease;
}

.modern-service-modal .modern-close:hover {
    transform: rotate(90deg);
    color: #b02a37;
}

/* Description */
.modern-service-modal .service-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Custom List */
.modern-service-modal .service-list {
    list-style: none;
    padding-left: 0;
}

.modern-service-modal .service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
}

/* Custom Red Bullet */
.modern-service-modal .service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: #dc3545;
    border-radius: 50%;
}

/* Button */
.modern-service-modal .modern-modal-btn {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
    padding: 12px 32px;
    border-radius: 0;
    /* Sharp look */
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 12px 25px rgba(220, 53, 69, 0.3);
}

.modern-service-modal .modern-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(220, 53, 69, 0.4);
}

/* Smooth Fade Animation */
.modern-service-modal .modal-content {
    animation: modalSmooth 0.35s ease;
}

@keyframes modalSmooth {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 576px) {

    .modern-service-modal .modal-content {
        padding: 25px;
    }

    .modern-service-modal .modal-title {
        font-size: 18px;
    }
}







/* contact us css  */

/* FORM BASE */
.premium-form .form-control,
.premium-form .form-select {
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.25s ease;
}

/* INPUT HEIGHT FEEL */
.premium-form .form-control-lg,
.premium-form .form-select-lg {
    min-height: 52px;
}

/* FOCUS EFFECT (PROFESSIONAL) */
.premium-form .form-control:focus,
.premium-form .form-select:focus {
    border-color: #E53935;
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.15);
}

/* HOVER EFFECT */
.premium-form .form-control:hover,
.premium-form .form-select:hover {
    border-color: #E53935;
}

/* TEXTAREA FIX */
.premium-form textarea {
    resize: none;
}

/* BUTTON POLISH */
.submit-btn {
    /* height: 50px; */
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.35);
}


/* contact us css  */





/* gallery css  */
/* ==========================================
   MODERN 4-COLUMN GALLERY DESIGN
========================================== */
/* ==========================================
   PROFESSIONAL SOFT GALLERY DESIGN
========================================== */
/* ================================
   CLEAN 4-COLUMN GALLERY
================================ */

/* ==========================================
   CLEAN RESPONSIVE GALLERY (WRAPPED)
========================================== */
/* ===============================
   CLEAN GALLERY SECTION
=============================== */

.clean-gallery {
    background: #fff;
}

.clean-gallery .gallery-heading {
    font-size: 32px;
}

.clean-gallery .gallery-subtext {
    font-size: 15px;
}

.clean-gallery .gallery-line {
    width: 70px;
    height: 3px;
    background: #dc3545;
}

/* CARD */
.clean-gallery .gallery-card {
    position: relative;
    height: 260px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .clean-gallery .gallery-card {
        height: 280px;
    }
}

@media (min-width: 1200px) {
    .clean-gallery .gallery-card {
        height: 300px;
    }
}

.clean-gallery .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.clean-gallery .gallery-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.clean-gallery .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.clean-gallery .gallery-card:hover .overlay {
    opacity: 1;
}

/* BUTTON */
.clean-gallery .zoom-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #dc3545;
    color: #fff;
    font-size: 22px;
}

/* ===============================
   IMAGE LIGHTBOX MODAL
=============================== */

.image-lightbox .modal-content {
    background: #000;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-lightbox img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.image-lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc3545;
    border: none;
    width: 45px;
    height: 45px;
    color: #fff;
}


/* testimonial css  */

/* Testimonial card */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Client image */
.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #dc3545;
}

/* Carousel dots */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dc3545;
    opacity: 0.3;
}

.carousel-indicators .active {
    opacity: 1;
}


/* Testimonial carousel indicators */
#testimonialCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dc3545;
    opacity: 0.4;
    margin: 0 5px;
    border: none;
}

/* Active indicator */
#testimonialCarousel .carousel-indicators .active {
    opacity: 1;
    background-color: #dc3545;
}


#testimonialCarousel .carousel-indicators button:hover {
    opacity: 0.8;
}




/* floating button css  */
/* FLOATING PILL ACTIONS */
.floating-pill-actions {
    position: fixed;
    right: 0;
    /* screen se touch */
    top: 85%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* PILL BUTTON */
.pill-btn {
    display: flex;
    align-items: center;

    background: #ffffff;

    /* RIGHT SIDE FLAT */
    border-radius: 40px 0 0 40px;

    padding: 5px 18px 5px 6px;

    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 14px;

    box-shadow: -4px 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ICON CIRCLE */
.pill-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;

    border-radius: 50%;
    font-size: 18px;

    margin-right: 10px;
}

/* TEXT */
.pill-text {
    white-space: nowrap;
}

/* HOVER – SOFT LEFT SLIDE */
.pill-btn:hover {
    transform: translateX(-6px);
    box-shadow: -6px 14px 35px rgba(0, 0, 0, 0.25);
}

/* MOBILE TUNING */
@media (max-width: 576px) {
    .pill-btn {
        font-size: 13px;
    }

    .pill-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}


/* floating button css  */



/* services section read more css start  */
.read-more-btn {
    color: #000;
    /* Default BLACK */
    text-decoration: none;
    /* Underline remove */
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #e53935;
    /* RED on hover */
}


/* services section read more css end */