﻿/* ========================
   CSS Variables (Root)
   ======================== */
:root {
    --primary: #3b8db3; /* main blue */
    --primary-dark: #217093; /* darker blue */
    --primary-light: #2db1b8; /* teal accent */
    --accent: #8c52ff; /* vibrant purple */
    --gold: #ffdf33; /* bright yellow */
    --gold-dark: #eeb411; /* amber/gold */

    --text-dark: #1e2b3c;
    --text-muted: #4a5f7a;
    --text-light: #6c7d99;
    --bg-light: #f0f5fb;
    --bg-medium: #e6ecf3;
    --border-light: rgba(0, 35, 70, 0.06);
    --shadow-soft: 0 20px 35px -8px rgba(0, 20, 45, 0.15), 0 8px 12px -4px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --primary-rgb: 59, 141, 179;
}

/* ========================
   MODERN GLOWING LOADER 
   ======================== */

.loader-wrapper {
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background: rgba(255, 255, 255, 0.98);
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

/* Main Loader */
.loader {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(from 0deg, #217193af, #3b8db3, #1e5f7a, #21719373);
    mask: radial-gradient(farthest-side, transparent 62%, black 63%);
    -webkit-mask: radial-gradient(farthest-side, transparent 62%, black 63%);
    animation: spin 1.1s linear infinite;
}

.loader::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.85),
        transparent 45%
      ),
      radial-gradient(
        circle at 70% 70%,
        rgba(255, 255, 255, 0.25),
        transparent 65%
      ),
      linear-gradient(135deg, #217093, #3b8db3);
    animation: pulse 1.6s ease-in-out infinite;
}

.loader::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.95),
                0 0 25px #217093;
    animation: orbit 1.1s linear infinite;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes orbit {
    to {
        transform: rotate(360deg) translateX(36px) rotate(-360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.12);
        filter: brightness(1.25);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .loader {
        width: 60px;
        height: 60px;
    }
    .loader::after {
        width: 10px;
        height: 10px;
    }
}

/* =============================================== >> loader >> ====================================================== END ===================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: #3b8db3;
            color: white;
            border-radius: 15%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(23, 170, 255, 0.4);
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .back-to-top:hover {
            background: white;
            color: #3b8db3;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(23, 182, 255, 0.5);
            border-color: #3b8db3;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .back-to-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1.3rem;
            }
        }
/* =============================================== >> BACK TO TOP >> ====================================================== END ===================== */

/* Custom CSS - Bootstrap ke saath kaam karne ke liye */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    min-height: 100vh;
}

/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/* Navbar items ko vertically center karne ke liye */
.navbar .navbar-nav {
    align-items: center;    
}

/* Login button ko navbar ke items ke saath perfectly align */
.navbar .btn-login {
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50rem;
    border-width: 1px;
    transition: all 0.3s ease;
    background: transparent;
    color: #3b8db3 !important;
    border-color: #3b8db3;         
}

/* Hover same rahega */
.navbar .btn-login:hover {
    background: #3b8db3 !important;
    border-color: #3b8db3;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 141, 179, 0.3);
}

/* Hero Header - Video Background */
.hero-header {
    position: relative;
    margin-top: -100px;          /* Navbar overlap — adjust according to your navbar height */
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 140px;       /* more breathing room for bottom button */
    overflow: hidden;
    background-color: #000;      /* fallback if video fails */
}

/* Video - full cover */
.hero-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Dark overlay for text readability */
.hero-header .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);   /* 0.4 – 0.65 range works best — tune per video brightness */
    z-index: 2;
}

/* Content layer above overlay */
.hero-header .container,
.hero-header .row,
.hero-header .col-lg-10 {
    position: relative;
    z-index: 3;
}

/* Text contrast on video */
.hero-header h1,
.hero-header h5,
.hero-header p,
.hero-header .lead {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* Start Application Button Wrapper */
.hero-header .start-btn-wrapper {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;                    /* above overlay & video */
    width: 100%;
    max-width: 400px;              /* prevent too wide on large screens */
    text-align: center;
}

/* Custom start button styling */
.hero-header .btn-start {
    padding: 14px 48px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50rem;
    border-width: 2px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.35s ease;
    background: transparent;
    color: #3b8db3 !important;
    border-color: #3b8db3;
}

.hero-header .btn-start:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    background: #3b8db3;
    color: #fff !important;
    border-color: #3b8db3;
}

/* Optional: smaller button on mobile */
@media (max-width: 576px) {
    .hero-header .btn-start {
        padding: 12px 36px;
        font-size: 1.1rem;
    }
    
    .hero-header .start-btn-wrapper {
        bottom: 40px;
    }
    
    .hero-header {
        padding-bottom: 100px;
    }
}

/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}
/* ================================================================================================================ END ===================== */

/* ========================
   Services Section Styles
   ======================== */

.services-section {
    background: #ffffff;
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 40, 80, 0.08);
    padding: 35px 28px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(59, 141, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b8db3, #217093);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: linear-gradient(145deg, #3b8db3 0%, #217093 100%);
    border: 2px solid #217093;
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(59, 141, 179, 0.25);
}

.service-card:hover::before {
    opacity: 0;
}

.service-card:hover .service-icon,
.service-card:hover .card-title,
.service-card:hover .card-description {
    color: white !important;
}

.service-card:hover .btn-hero-outline {
    background: white;
    color: #3b8db3;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* First Special Card */
.service-card.first {
    background: linear-gradient(145deg, #3b8db3 0%, #217093 100%);
    border: 2px solid #217093;
    color: #ffffff;
    padding: 40px 30px;
}

.service-card.first .main-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.service-card.first .sub-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

/* Icon, Title & Description */
.service-icon {
    font-size: 2.8rem;
    color: #3b8db3;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}

/* Button Style */
.btn-hero-outline {
    border-radius: 50rem;
    color: #3b8db3;
    border: 2px solid #3b8db3;
    padding: 0.65rem 1.8rem;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-outline:hover {
    background-color: #3b8db3;
    color: white;
    border-color: #3b8db3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-card.first {
        padding: 40px 28px;
    }
}
/* ================================================================================================================ END ===================== */

/* ========================
   About Us Section Styles 
   ======================== */

.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 141, 179, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-image {
    position: relative;
    min-height: 400px;
}

/* Decorative Elements */
.decor-element {
    position: absolute;
    z-index: 1;
}

.decor-circle {
    width: 150px;
    height: 150px;
    border: 2px dashed rgba(59, 141, 179, 0.3);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    animation: rotateSlow 20s linear infinite;
}

.decor-circle::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(59, 141, 179, 0.1);
    border-radius: 50%;
    top: 20px;
    right: 20px;
}

.decor-plus {
    font-size: 0;
    position: relative;
}

.decor-plus::before,
.decor-plus::after {
    content: '';
    position: absolute;
    background: #3b8db3;
    opacity: 0.2;
}

/* Plus Sign 1 */
.plus-1 {
    top: 0px;
    right: 20px;
}

.plus-1::before {
    width: 24px;
    height: 4px;
    transform: rotate(0deg);
}

.plus-1::after {
    width: 4px;
    height: 24px;
    left: 10px;
    top: -10px;
}

/* Plus Sign 2 */
.plus-2 {
    bottom: 50px;
    left: 500px;
}

.plus-2::before {
    width: 30px;
    height: 5px;
    background: #217093;
    opacity: 0.3;
    transform: rotate(45deg);
}

.plus-2::after {
    width: 5px;
    height: 30px;
    background: #217093;
    opacity: 0.3;
    left: 12px;
    top: -12px;
    transform: rotate(45deg);
}

.decor-dots {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: -10px;
    background-image: radial-gradient(#217093 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.about-shape {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #3b8db3, #217093);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    top: 5%;
    left: -5%;
    z-index: 2;
    animation: shapeFloat 6s ease-in-out infinite;
}

.about-img {
    position: relative;
    z-index: 5;
    border-radius: 20px;
    box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    width: 100%;
    height: auto;
}

.about-img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 30px 30px 60px rgba(59, 141, 179, 0.2);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    z-index: 10;
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 25px;
    animation: badgePulse 3s ease-in-out infinite;
    border-left: 4px solid #3b8db3;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-content .years {
    font-size: 2rem;
    font-weight: 800;
    color: #3b8db3;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.badge-content .text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Content Side */
.about-content {
    padding-left: 20px;
}

.about-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3b8db3;
}

.about-subheading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
}

.about-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 8px 0;
}

.feature-item i {
    color: #3b8db3;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

/* Button */
.btn-about {
    background: #3b8db3;
    color: white;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #3b8db3;
    box-shadow: 0 10px 20px rgba(59, 141, 179, 0.3);
    letter-spacing: 0.5px;
}

.btn-about:hover {
    background: transparent;
    color: #3b8db3;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 141, 179, 0.4);
}

/* Animations */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shapeFloat {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* ================================================== >> About Us >> ============================================================== END ===================== */

/* ========================
        SLIM SECTION
   ======================== */

.slim-pricing {
    padding: 25px 0;
    background: linear-gradient(135deg, #3b8db3 0%, #217093 100%);
    position: relative;
    color: white;
    min-height: 140px;
    overflow: visible;           /* Truck image bahar nikal sake */
}

.slim-content {
    position: relative;
    z-index: 2;
}

.slim-heading {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 5rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.slim-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    font-size: 2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    height: 100%;
    min-height: 160px;
}

/* Truck Image - positioned half outside */
.slim-truck {
    position: absolute;
    right: 50px;
    top: -180px;
    width: 450px;
    max-width: none;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
    z-index: 10;
}

/* Optional Hover Effect */
.slim-truck:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

/* ========================
   RESPONSIVE ADJUSTMENTS
   ======================== */

@media (max-width: 1200px) {
    .slim-truck {
        width: 380px;
        right: 30px;
        top: -160px;
    }
}

@media (max-width: 992px) {
    .slim-heading {
        font-size: 3.8rem;
    }
    
    .slim-text {
        font-size: 1.6rem;
    }
    
    .slim-truck {
        width: 320px;
        right: 20px;
        top: -140px;
    }
}

@media (max-width: 768px) {
    .slim-pricing {
        min-height: 180px;
        padding: 35px 0;
    }
    
    .slim-heading {
        font-size: 2.8rem;
    }
    
    .slim-text {
        font-size: 1.4rem;
    }
    
    .slim-truck {
        width: 260px;
        right: 15px;
        top: -110px;
    }
    
    .row {
        text-align: center;
    }
    
    .slim-content {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .slim-truck {
        width: 220px;
        right: 10px;
        top: -95px;
    }
}
/* ================================================== >>  SLIM SECTION >> ============================================================== END ===================== */

/* ========================
   INSURANCE COSTS SECTION 
   ======================== */

.insurance-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.insurance-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,141,179,0.04) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
    animation: gentlePulse 12s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}

/* Left Content */
.insurance-content {
    position: relative;
    z-index: 2;
}

.insurance-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 1.8rem;
    line-height: 1.15;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

.insurance-heading::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #3b8db3, #217093);
    border-radius: 3px;
}

.insurance-paragraph {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.85;
    margin-bottom: 1.6rem;
    font-weight: 400;
}

.insurance-highlight {
    font-weight: 600;
    color: #3b8db3;
}

/* List */
.insurance-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.insurance-list li {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.insurance-list li i {
    color: #3b8db3;
    font-size: 1.4rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Bundle Box */
.insurance-bundle {
    margin: 2.5rem 0;
    padding: 28px 32px;
    background: rgba(59,141,179,0.06);
    border-left: 5px solid #3b8db3;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 8px 25px rgba(59,141,179,0.08);
}

.bundle-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 1rem;
}

/* Button */
.btn-insurance {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3b8db3;
    color: white;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    border: 2px solid #3b8db3;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(59,141,179,0.25);
}

.btn-insurance:hover {
    background: transparent;
    color: #3b8db3;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(59,141,179,0.35);
}

.btn-insurance i {
    transition: transform 0.35s ease;
}

.btn-insurance:hover i {
    transform: translateX(8px);
}

/* Right Side - Image Area */
.insurance-image {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    width: 380px;
    height: 380px;
    top: 5%;
    right: 5%;
    background: linear-gradient(135deg, rgba(59,141,179,0.12), rgba(33,112,147,0.08));
    animation: floatShape 10s ease-in-out infinite;
}

.shape-2 {
    width: 240px;
    height: 240px;
    bottom: 8%;
    left: 8%;
    background: linear-gradient(135deg, rgba(59,141,179,0.15), rgba(33,112,147,0.1));
    animation: floatShape 7s ease-in-out infinite reverse;
}

.main-image {
    position: relative;
    z-index: 3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 15px 30px rgba(59,141,179,0.12);
    transition: all 0.5s ease;
    max-width: 100%;
    height: auto;
}

.main-image:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.22), 0 20px 40px rgba(59,141,179,0.18);
}

/* Savings Badge */
.savings-badge {
    position: absolute;
    top: 12%;
    left: -20px;
    background: white;
    padding: 14px 24px 14px 60px;
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
    border: 2px solid #3b8db3;
    animation: badgeFloat 4s ease-in-out infinite;
}

.savings-badge i {
    position: absolute;
    left: 18px;
    color: #3b8db3;
    font-size: 1.8rem;
}

.savings-badge span {
    font-weight: 700;
    color: #1a2b3c;
    font-size: 1.1rem;
}

/* Animations */
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(25px, -25px) scale(1.08); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ========================
   RESPONSIVE 
   ======================== */

@media (max-width: 991px) {
    .insurance-heading { 
        font-size: 2.6rem; 
    }
    
    .insurance-content { 
        padding-right: 0; 
        margin-bottom: 3rem; 
    }
    
    .insurance-image { 
        min-height: 380px; 
    }
    
    .shape-1, .shape-2 { 
        width: 280px; 
        height: 280px; 
    }
    
    .main-image { 
        border-radius: 16px; 
    }
    
    .savings-badge { 
        left: 10px; 
        top: 8%; 
        padding: 12px 20px 12px 50px; 
    }
}

@media (max-width: 576px) {
    .insurance-heading { 
        font-size: 2.2rem; 
    }
    
    .savings-badge {
        left: 0;
        padding: 10px 18px 10px 48px;
    }
}
/* ================================================== >>  INSURANCE COSTS SECTION >> =================================================== END ===================== */

/* ========================
   Pricing Packages Section 
   ======================== */

.pricing-section {
    background: #f8fbff;
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 141, 179, 0.2) !important;
    border-color: rgba(59, 141, 179, 0.3);
}

/* Popular Card */
.pricing-card.popular {
    border: 2px solid #3b8db3 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    box-shadow: 0 20px 45px rgba(59, 141, 179, 0.25) !important;
    transform: scale(1.03);
    z-index: 2;
    position: relative;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 141, 179, 0.3) !important;
}

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-card:hover .icon-circle {
    transform: scale(1.1);
}

.pricing-card.popular .icon-circle {
    background: #3b8db3 !important;
    color: rgb(0, 0, 0) !important;
    box-shadow: 0 10px 20px rgba(59, 141, 179, 0.3);
}

/* Price */
.price h2 {
    color: #333;
    transition: color 0.3s ease;
}

.pricing-card.popular .price h2 {
    color: #3b8db3;
}

/* Button */
.btn-insurance {
    background: linear-gradient(135deg, #3b8db3 0%, #217093 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 141, 179, 0.2);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.btn-insurance:hover {
    background: linear-gradient(135deg, #217093 0%, #1a5a7a 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 141, 179, 0.3);
    color: white;
}

/* Popular Badge Effect (if you want to add "Most Popular" tag later) */
.pricing-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 40px;
    right: -45px;
    background: #ffc107;
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 50px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    z-index: 5;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
}
/* ================================================== >>  Pricing Packages Section >> ================================================== END ===================== */

/* ========================
   CLIENTS LOGO SECTION - Modern Marquee 
   ======================== */

.clients-section {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.clients-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1.75rem;
}

/* Marquee Container */
.clients-marquee {
    display: flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: max-content;
    gap: 4rem;                    /* Better spacing between logos */
}

.clients-marquee:hover {
    animation-play-state: paused;   /* Hover pe pause (user friendly) */
}

/* Individual Logo */
.client-logo {
    flex: 0 0 auto;
    opacity: 0.75;
    transition: all 0.4s ease;
}

.client-logo img {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(0.85);
    transition: all 0.4s ease;
    object-fit: contain;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .clients-marquee {
        gap: 3rem;
    }
    .client-logo img {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 2.5rem 0;
    }
    
    .clients-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .clients-marquee {
        animation-duration: 25s;     /* Thoda fast on mobile */
        gap: 2.5rem;
    }
    
    .client-logo img {
        max-width: 100px;
        max-height: 55px;
    }
}

@media (max-width: 576px) {
    .clients-marquee {
        gap: 2rem;
    }
}
/* ================================================== >> CLIENTS LOGO SECTION >> ======================================================= END ===================== */

/*** Testimonial SECTION ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

    .testimonial-img::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: calc(50% + 45px);
        height: 100%;
        background: var(--bs-primary);
        z-index: -1;
    }

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

    .testimonial-text h5::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 40px;
        height: 2px;
        background: var(--bs-primary);
    }

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

    .testimonial-carousel .owl-dot.active {
        width: 30px;
        background: var(--bs-primary);
    }

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}
/* ================================================== >> Testimonial SECTION >> ======================================================== END ===================== */

/*** Our Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

    .team-overlay small {
        display: inline-block;
        padding: 3px 15px;
        color: var(--bs-white);
        background: var(--bs-primary);
    }
/* ================================================== >> Our Team SECTION >> =========================================================== END ===================== */

/* ========================
       BLOG SECTION 
======================== */

.blog-section {
    background: #ffffff;
}

.blog-card {
    transition: all 0.4s ease;
    height: 100%;
    border: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(59, 141, 179, 0.15);
}

.blog-img {
    overflow: hidden;
    border-radius: 0px;
}

.blog-img img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-card.bg-primary {
    background: linear-gradient(135deg, #3b8db3, #217093) !important;
}

.blog-card .p-3 p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: inherit;
}

/* Date Badge */
.blog-img span {
    font-size: 0.8rem;
    border-radius: 0px 0 0 0;
}

/* Button */
.btn-about {
    background: #3b8db3;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: transparent;
    color: #3b8db3;
    border: 2px solid #3b8db3;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-card .p-3 {
        padding: 1.25rem !important;
    }
}
/* ================================================== >> BLOG SECTION >> =============================================================== END ===================== */

/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

    .service-item.bg-primary:hover {
        background: var(--bs-light) !important;
    }

    .service-item.bg-primary p {
        color: var(--bs-light);
        transition: .5s;
    }

    .service-item.bg-primary:hover p {
        color: var(--bs-secondary);
    }

    .service-item.bg-light:hover {
        background: var(--bs-primary) !important;
    }

    .service-item.bg-light p {
        color: var(--bs-secondary);
        transition: .5s;
    }

    .service-item.bg-light:hover p {
        color: var(--bs-light);
    }


    .service-item .service-img h3 {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 12px 7px 0;
    }

    .service-item.bg-primary .service-img h3 {
        background: var(--bs-primary);
        color: var(--bs-white);
        transition: .5s;
    }

    .service-item.bg-primary:hover .service-img h3 {
        background: var(--bs-light);
        color: var(--bs-dark);
    }

    .service-item.bg-light .service-img h3 {
        background: var(--bs-light);
        color: var(--bs-dark);
        transition: .5s;
    }

    .service-item.bg-light:hover .service-img h3 {
        background: var(--bs-primary);
        color: var(--bs-white);
    }

    /*** =============================================================================== Newsletter ***/
.newsletter {
    background: url(../../assets/imgs/banners/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

    /* Newsletter message styles */
    .newsletter-message {
        position: absolute;
        left: 0;
        right: 0;
        margin-top: 10px;
        z-index: 1000;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .newsletter .alert {
        border-radius: 5px;
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .newsletter .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .newsletter .alert-danger {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    /* Disabled state */
    .newsletter input:disabled,
    .newsletter button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    /* ================================================== >> BLOG SECTION >> =============================================================== END ===================== */

/* ==================================================================== Footer Custom Styles */
footer {
    background-color: #f8f9fa; /* bg-light jaisa */
    color: #6c757d; /* text-muted */
    font-size: 0.95rem;
}

    footer a {
        color: #6c757d;
        text-decoration: none;
    }

        footer a:hover {
            color: #0d6efd; /* primary blue hover */
            text-decoration: underline;
        }

    /* Headings aur HR */
    footer h5 {
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    footer hr {
        border-top: 2px solid #000000; /* border-primary */
        opacity: 1;
    }

    /* Social Icons - Rounded Circle Outline */
    footer .social-btn {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #3b8db3;
        border-radius: 50%;
        color: #3b8db3;
        background-color: transparent;
        transition: all 0.3s ease;
        margin-right: 0.5rem;
        text-decoration: none; /* ← yeh add karo */
    }

        footer .social-btn:hover {
            background-color: #3b8db3;
            color: white;
            border-color: #3b8db3;
            transform: translateY(-2px);
            text-decoration: none !important; /* ← yeh add karo ya !important ke saath */
        }

    /* BBB badge responsive banao */
    footer .img-fluid {
        max-width: 280px; /* agar bohot bara lage to limit */
    }

/* Mobile pe thoda adjust */
@media (max-width: 991px) {
    footer .social-btn {
        margin-bottom: 0.5rem;
    }
}
/* ================================================== >> FOOTER SECTION >> =============================================================== END ===================== */


/* WHY CHOOSE US */
.why-choose-us h2 {
  letter-spacing: 1.5px;
}

.why-choose-us .bi {
  line-height: 1;
}

/* Hover effect (existing rakha hai) */
.hover-zoom {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 991px) {
  .why-choose-us h2 {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .d-flex {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  
  .d-flex .bi {
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }
  
  .hover-zoom:hover {
    transform: scale(1.03);
  }
}

/* Horizontal Centered Card - Call to Action */
.cta-card {
  border-radius: 1.1rem;
  transition: all 0.4s ease;
  background: linear-gradient(rgba(12, 74, 110, 0.164), rgba(12, 74, 110, 0.205)),   /* light dark tint overlay for readability */
              url('../../assets/imgs/2151468897-1024x798.jpg') center center / cover no-repeat;  /* ← yahan apni image ka path daal den */
  background-color: #0c4a6e1e;   
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.cta-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25) !important;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b8db3af 0%, #217193c7 100%);
  z-index: 1;
  pointer-events: none;
}

.cta-card img {
  display: none;
}

.card-body {
  z-index: 2;
  color: white;
  padding: 3.5rem 2.5rem;
  position: relative;
}

/* Typography */
.cta-title {
  font-size: 2.1rem;
  line-height: 1.15;
  color: rgb(255, 255, 255);
}

.cta-title .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
  display: block;
  margin-top: 0.35rem;
}

.cta-text {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.80);
}

.cta-text .highlight {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

/* Button */
.cta-button {
  border-width: 1px;
  border-color: #000000;
  color: #000000;
  padding: 0.75rem 2.5rem;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.37);           /* better visibility on dark bg */
}

.cta-button:hover {
  background-color: #217193;
  color: white !important;
  transform: scale(1.06);
  border-color: #217193;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-body {
    padding: 2.5rem 1.5rem !important;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-text {
    font-size: 1.15rem;
  }
  
  .cta-button {
    padding: 0.65rem 2rem;
  }
  
  .cta-card {
    min-height: 320px;
  }
}

@media (min-width: 1200px) {
  .cta-card {
    border-radius: 1.25rem;
  }
}

/* SERVICES PAGE*/
/* ============================================= */
/* btn-4 - Fancy Download Button                 */
/* ============================================= */
.btn-4 {
    scale: 0.5;   /* you can change to 0.6–0.8 if too small */
    --width: 300px;
    --height: 64px;
    --tooltip-height: 60px;
    --tooltip-width: 180px;   /* slightly wider for "Download Form" */
    --gap-between-tooltip-to-button: 18px;
    --button-color: #000;
    --tooltip-color: #fff;
    width: var(--width);
    height: var(--height);
    border-color: #000;
    background: var(--button-color);
    position: relative;   /* changed from absolute → relative for better layout */
    text-align: center;
    border-radius: 32px;
    font-family: lato;
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s;
    overflow: hidden;
}

.btn-4::before {
    position: absolute;
    content: attr(data-tooltip);
    width: var(--tooltip-width);
    height: var(--tooltip-height);
    background-color: var(--tooltip-color);
    font-size: 16px;
    color: #3b8db3;
    border-radius: 6px;
    border-color: #000;
    line-height: var(--tooltip-height);
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
    left: calc(50% - var(--tooltip-width) / 2);
}

.btn-4::after,
.btn-4::before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.btn-4 .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-4 .button-wrapper,
.btn-4 .text,
.btn-4 .icon {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
}

.btn-4 .text {
    top: 0;
}

.btn-4 .text,
.btn-4 .icon {
    transition: top 0.5s;
}

.btn-4 .icon {
    color: #fff;
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-4 .icon svg {
    width: 24px;
    height: 24px;
}

.btn-4:hover {
    background: #3b8db3;
}

.btn-4:hover .text {
    top: -100%;
}

.btn-4:hover .icon {
    top: 0;
}

.btn-4:hover::before,
.btn-4:hover::after {
    opacity: 1;
    visibility: visible;
}

.btn-4:hover::after {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.btn-4:hover::before {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

/* Make sure btn-group handles both buttons nicely */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;          /* space between Learn More and Download */
    margin-top: 25px;
}

/* Optional: make download button a bit larger on desktop */
@media (min-width: 992px) {
    .btn-4 {
        scale: 0.7;     /* or remove scale and adjust --width/--height */
    }
}

/* Hold-to-Verify CAPTCHA Styles */
.captcha-wrapper {
    margin-top: 1.2rem;
    text-align: center;
}

.hold-button {
    width: 100%;
    height: 52px; /* Slightly reduced height for compact form */
    background: #f1f3f5; /* Light gray (neutral & modern) */
    border: 1px solid #ced4da; /* Bootstrap-like border */
    border-radius:0;
    font-size: 1rem; /* Smaller font for compactness */
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    touch-action: manipulation; /* Better touch response on mobile */
}

    .hold-button:hover {
        background: #e9ecef;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .hold-button:active,
    .hold-button.holding {
        background: #dee2e6;
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #28a745, #198754);
    transition: width 0.08s linear; /* Very smooth fill */
    z-index: 1;
}

.hold-button span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
}

.hold-button.success {
    background: #198754 !important;
    border-color: #198754 !important;
    color: white !important;
    cursor: default;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
}

    .hold-button.success:hover,
    .hold-button.success:active {
        transform: none; /* No movement after success */
    }

.verified-text {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #198754;
    font-weight: 600;
    display: none;
}

.invalid-captcha {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: none;
}

/* Optional: Make text responsive on small screens */
@media (max-width: 576px) {
    .hold-button {
        height: 48px;
        font-size: 0.95rem;
    }

        .hold-button span {
            padding: 0 0.8rem;
        }
}
.very-small {
    font-size: 0.8rem;
}

.hold-button {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    transition: all 0.3s;
}

    .hold-button:hover {
        background: linear-gradient(90deg, #e9ecef, #dee2e6);
    }

    .hold-button:active {
        transform: scale(0.98);
    }

.progress-fill {
    transition: width 0.1s linear !important;
    z-index: 1;
}

.form-control-sm:focus, .form-select-sm:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
}

.invalid-feedback {
    font-size: 0.75rem;
}
/* End */