
:root {
    --primary-blue: #0b4a99; /* Matched from your logo */
    --accent-yellow: #fdb813; /* Matched from your logo/buttons */
    --text-dark: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Top Bar Info */
.top-bar {
    background: #f8f8f8;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px; /* Scaled for visibility */
    width: auto;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 20px;
    background: #eef4ff;
    padding: 10px;
    border-radius: 50%;
}

.contact-text span {
    display: block;
    font-size: 12px;
    color: #777;
}

.contact-text a {
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .header-contact { display: none; } /* Hide phone numbers in header on mobile to save space */
    .logo img { height: 50px; }
    .header-container { justify-content: center; }
}

/*!* hero-section start *!*/
/*.hero-section {*/
/*    position: relative;*/
/*    background: linear-gradient(rgba(0, 51, 153, 0.75), rgba(0, 34, 102, 0.75)),*/
/*    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); !* Professional logistics background *!*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    padding: 60px 0 100px;*/
/*    color: var(--white);*/
/*}*/

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.hero-features {
    list-style: none;
    padding: 0;
}

.hero-features li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color:#fff;
}

.hero-features li i {
    color: var(--accent-yellow);
    font-size: 18px;
}

/* Lead Form Styling */
.hero-form-box {
    flex: 0 0 400px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    color: var(--text-dark);
    border-top: 5px solid var(--accent-yellow);
}

.hero-form-box h3 {
    margin-top: 0;
    text-align: center;
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 5px;
}

.form-subtitle {
    text-align: center;
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.hero-form-box input,
.hero-form-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.hero-form-box .submit-btn {
    background: var(--accent-yellow);
    color: #000;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.hero-form-box .submit-btn:hover {
    background: #e5a600;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 992px) {
    .hero-section { padding: 40px 0; }
    .hero-content { text-align: center; padding-right: 0; margin-bottom: 40px; }
    .hero-features { display: inline-block; text-align: left; }
    .hero-form-box { flex: 1 1 100%; max-width: 100%; }
    .hero-content h1 { font-size: 30px; }
}

/* Emotional Tagline Styling */
.emotional-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-yellow);
    font-style: italic;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Hero Action Buttons */
.hero-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-call, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.btn-call { background-color: var(--primary-blue); }
.btn-whatsapp { background-color: #25D366; }

/* Pulse Animation for Focus */
.pulse-animation {
    animation: pulse-blue 2s infinite;
}

.pulse-animation-green {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-blue {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(11, 74, 153, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(11, 74, 153, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(11, 74, 153, 0); }
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive fix */
@media (max-width: 600px) {
    .hero-action-buttons {
        flex-direction: column;
    }
}
/* Base style for reveal */
.reveal-text, .reveal-text-delay-1, .reveal-text-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Staggered Delays */
.reveal-text {
    animation-delay: 0.2s;
}

.reveal-text-delay-1 {
    animation-delay: 0.5s; /* Appears shortly after h1 */
    color: var(--accent-yellow);
    font-weight: 600;
}

.reveal-text-delay-2 {
    animation-delay: 0.8s; /* Appears last to complete the thought */
}

/* Keyframes for the Entrance */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Engagement Booster: Highlight Animation for the City Name */
h1 span.city-highlight {
    background: linear-gradient(to right, var(--accent-yellow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 1. Shimmer Effect for the City Name */
.city-shimmer {
    background: linear-gradient(90deg, #0b4a99, #fdb813, #0b4a99);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-weight: 800;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* 2. "Breathing" Effect for the Emotional Tagline */
.pulse-text {
    animation: breathe 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; color: #fff; }
}

/* 3. Re-trigger Animation Class (for JS) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*!* 1. Hero Background with Meaningful Image Overlay *!*/
/*.hero-section {*/
/*    position: relative;*/
/*    background: #020d1a; !* Dark base *!*/
/*    background-image: linear-gradient(to right, rgba(2,13,26,0.95) 30%, rgba(2,13,26,0.2) 80%, rgba(2,13,26,0.95) 100%),*/
/*    url('../../assets/images/landing-page/hero/hero.jpeg'); !* Your meaningful image *!*/
/*    background-size: cover;*/
/*    background-image: url("../../assets/images/landing-page/hero/hero.jpeg");*/
/*    */
/*    background-position: center;*/
/*    padding: 100px 0;*/
/*    overflow: hidden;*/
/*}*/

.hero-section {
    position: relative;
    /* Clean path to your local image */
    background-image: url('../../assets/images/landing-page/hero/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    z-index: 1; /* Establishes a stack context */
}

/* The Overlay Layer */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Matching your brand navy (#020d1a) with 70% opacity */
    background: rgba(2, 13, 26, 0.9);
    z-index: -1; /* Sits behind text, but in front of image */
}

.hero-section .container {
    position: relative;
    z-index: 2; /* Ensures text stays on top of the overlay */
}

/*!* Text Pop Fixes *!*/
/*.hero-section h1 {*/
/*    font-size: 3.5rem;*/
/*    font-weight: 800;*/
/*    color: #fdb813; !* Euro Gold *!*/
/*    margin-bottom: 20px;*/
/*    line-height: 1.2;*/
/*}*/

/*.hero-section p {*/
/*    font-size: 1.2rem;*/
/*    color: rgba(255, 255, 255, 0.9);*/
/*    max-width: 600px;*/
/*}*/



/*!* 2. The 15% Discount Badge Focus *!*/
/*.discount-badge-wrapper {*/
/*    margin-bottom: 15px;*/
/*    text-align: center;*/
/*}*/

.badge-flash {
    display: inline-block;
    background: linear-gradient(45deg, #fdb813, #fff, #fdb813);
    background-size: 200% auto;
    color: #000 !important;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    animation: shine 2s linear infinite;
    box-shadow: 0 0 15px rgba(253, 184, 19, 0.4);
}

/* 3. Modern Neo-Glass Buttons */
.hero-action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.action-btn {
    display: flex;
    align-items: center;
    padding: 8px 25px 8px 8px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-neo-call { background: rgba(11, 74, 153, 0.2); }
.btn-neo-call .icon-circle { background: #0b4a99; color: #fff; }

.btn-neo-whatsapp { background: rgba(37, 211, 102, 0.1); }
.btn-neo-whatsapp .icon-circle { background: #25D366; color: #fff; }

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.2);
}

/* Re-using the shine animation from the city-shimmer */
@keyframes shine {
    to { background-position: 200% center; }
}

/* 1. Continuous Aura Pulse for Call Button */
.pulse-blue-aura {
    animation: blueAura 3s infinite;
}

@keyframes blueAura {
    0% { box-shadow: 0 0 0 0 rgba(11, 74, 153, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(11, 74, 153, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(11, 74, 153, 0); transform: scale(1); }
}

/* 2. Continuous Aura Pulse for WhatsApp Button */
.pulse-green-aura {
    animation: greenAura 3s infinite 1.5s; /* 1.5s delay so they blink alternately */
}

@keyframes greenAura {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

/* 3. The "Shimmer" sweep on the Icon */
.shimmer-icon {
    position: relative;
    overflow: hidden;
}

.shimmer-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: iconShimmer 4s infinite;
}

@keyframes iconShimmer {
    0% { transform: translateX(-150%) rotate(45deg); }
    20%, 100% { transform: translateX(150%) rotate(45deg); }
}

/* 4. Hover State: Stop animation and glow solid */
.action-btn:hover {
    animation: none;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* 1. The Track (The Road) */
.truck-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.2); /* Subtle road effect */
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 10;
}

/* 2. The Animation Wrapper */
.truck-wrapper {
    position: absolute;
    width: 100%;
    animation: drive 15s linear infinite;
}

/* 3. The Truck Icon Styling */
.truck-icon {
    font-size: 24px;
    color: var(--accent-yellow);
    display: inline-block;
    position: relative;
    animation: engineVibration 0.3s infinite alternate;
}

/* 4. The "Speed Trail" behind the truck */
.truck-trail {
    position: absolute;
    right: 100%;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(to left, var(--accent-yellow), transparent);
    opacity: 0.6;
}

/* Keyframes: Driving from Left to Right */
@keyframes drive {
    0% { transform: translateX(-10%); }
    100% { transform: translateX(110%); }
}

/* Keyframes: Engine Vibration (Realism) */
@keyframes engineVibration {
    from { transform: translateY(0); }
    to { transform: translateY(-2px); }
}
/* Container and Track */
.truck-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Increased height for better visibility */
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    overflow: hidden;
    z-index: 10;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.truck-wrapper {
    position: absolute;
    width: 100%;
    text-decoration: none; /* Removes link underline */
    animation: drive 14s linear infinite;
}

/* The Message Styling - "Tension Free Shifting" */
.truck-message {
    background: var(--accent-yellow);
    color: #000;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(253, 184, 19, 0.5);
    border: 2px solid #fff;
    display: inline-block;
    animation: textFlash 1s infinite alternate;
}

/* Truck Icon with Animation */
.truck-icon {
    font-size: 28px;
    color: #fff; /* White truck stands out on dark bg */
    margin-left: -5px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
    animation: truckShake 0.2s infinite;
}

/* Animations */
@keyframes textFlash {
    from { transform: scale(1); box-shadow: 0 0 10px rgba(253, 184, 19, 0.5); }
    to { transform: scale(1.05); box-shadow: 0 0 20px rgba(253, 184, 19, 0.8); }
}

@keyframes drive {
    0% { transform: translateX(-20%); }
    100% { transform: translateX(120%); }
}

@keyframes truckShake {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

/* Trail effect behind the truck */
.truck-trail {
    position: absolute;
    right: 100%;
    top: 60%;
    width: 80px;
    height: 1px;
    background: linear-gradient(to left, #fff, transparent);
    opacity: 0.4;
}
/* hero-section end*/

/* clients start */

/* MNC Slider */
.client-logos-wrapper {
    padding: 20px 0;
}
.client-logos-wrapper img {
    padding: 0 20px;
    height: 60px;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    /*opacity: 0.6;*/
    transition: 0.3s;
}
.client-logos-wrapper img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Review Cards */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-name h5 {
    margin: 0;
    font-size: 15px;
    color: var(--primary-blue);
}
.g-verify {
    font-size: 12px;
    color: #28a745;
}
.review-text {
    font-size: 14px;
    color: #555;
    font-style: italic;
}

/* Container for Padding & Alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* This adds the left and right padding */
    box-sizing: border-box;
}

/* Base Styles for Sections */
section {
    padding: 60px 0; /* Top and bottom spacing for sections */
}

.section-main-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.review-item {
    padding: 15px; /* Adds space between the cards in the slider */
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-height: 180px;
}
/* Ensure navigation dots are visible */
.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-blue);
}

.tagline-container {
    margin: 10px 0 20px;
    display: flex;
    justify-content: center;
}

.trust-tagline-main {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    background: var(--primary-blue); /* Your brand blue */
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(11, 74, 153, 0.3);
    position: relative;
    transform: rotate(-1deg); /* Slight tilt for a "sticker" look */
    animation: nudge 3s infinite;
}

/* Add a yellow underline/accent to make it pop even more */
.trust-tagline-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    width: 60%;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

/* Subtle attention-grabbing nudge */
@keyframes nudge {
    0%, 100% { transform: rotate(-1deg) scale(1); }
    50% { transform: rotate(1deg) scale(1.05); }
}

/* SEO text styling */
.trust-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}
/* clients end */

/* why-choose-us start */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--accent-yellow);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #eef4ff;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.feature-card h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 20px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* why-choose-us-end */

/* services start */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-box:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(11, 74, 153, 0.1);
    transform: translateY(-5px);
}

.premium-service {
    background: #fdfaf0; /* Light gold tint for specialized services */
    border: 1px solid #fcebb6;
}

.service-icon-bg {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-box h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 0 0 15px 0;
}

.service-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-cta-link {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.service-cta-link:hover {
    color: var(--primary-blue);
}

/* Make icons in premium boxes stand out */
.premium-service .service-icon-bg {
    background: var(--accent-yellow);
    color: #000;
}
/* services end */


/* Section Background Differentiator */
.grey-bg {
    background-color: #f8faff; /* Very light blue-grey */
    padding-top: 40px;
    padding-bottom: 80px;
}

/* SVG Curve Styling */
.section-curve-top {
    line-height: 0;
    width: 100%;
    background-color: #ffffff; /* Matches the service section above */
}

.section-curve-top svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Ensure Service section has proper bottom padding */
.our-services {
    padding-bottom: 60px;
    background-color: #ffffff;
}


.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

/* The Step Number Badge */
.step-number {
    position: absolute;
    top: 0;
    right: 20%;
    background: var(--accent-yellow);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: #f0f5ff;
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
    transition: 0.3s;
    border: 1px solid #e0e8ff;
}

.process-step:hover .step-icon {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-5px);
}

.process-step h4 {
    color: var(--primary-blue);
    font-size: 19px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Desktop Connector Line */
@media (min-width: 992px) {
    .process-grid::before {
        content: "";
        position: absolute;
        top: 65px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #e0e8ff 0, #e0e8ff 10px, transparent 10px, transparent 20px);
        z-index: 1;
    }
}
/* process end */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.faq-question:hover {
    background: #f0f5ff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* State when active */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.faq-item.active .faq-question {
    background: #f0f5ff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* faq end */

.main-footer {
    background-color: #03336f; /* Euro Blue */
    color: #ffffff;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white for dark bg */
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1e1f5;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d1e1f5;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #d1e1f5;
}

.contact-item i {
    color: var(--accent-yellow);
    margin-top: 4px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: #000;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9abce7;
}

/* Back to Top Button */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--accent-yellow);
    color: #000;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* footer end */

/** header */
/* 1. Icon Animations */
.icon-animate-phone {
    color: #0b4a99;
    font-size: 22px;
    animation: simpleRing 4s infinite;
}

.icon-animate-wa {
    color: #25D366;
    font-size: 24px;
    animation: simpleGlow 3s infinite;
}

/* 2. Phone "Ringing" Movement */
@keyframes simpleRing {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(15deg); }
    94% { transform: rotate(-15deg); }
    96% { transform: rotate(10deg); }
    98% { transform: rotate(-10deg); }
}

/* 3. WhatsApp "Pulse" Movement */
@keyframes simpleGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* 4. Text Shimmer: A light sweep across the phone number */
.text-shimmer {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(90deg, #333, #888, #333); /* Standard Dark Text */
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textSweep 5s linear infinite;
    font-weight: 800;
}

/* Green Shimmer for WhatsApp Number */
.text-shimmer.wa-green {
    background: linear-gradient(90deg, #25D366, #b2f5cb, #25D366);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes textSweep {
    to { background-position: 200% center; }
}

/* Hover Effect: Stop animation and show solid color */
.contact-item:hover .text-shimmer {
    animation-play-state: paused;
    /*background: #fff;*/
    -webkit-text-fill-color: #000;
}
.contact-item:hover .wa-green {
    /*background: #000;*/
    -webkit-text-fill-color: #25D366;
}
/* header end */

/* Tighten spacing between main title and tagline */
.section-main-title {
    margin-bottom: 5px !important; /* Forces the gap to close */
    font-size: 32px;
}

.tagline-container {
    margin: 0px 0 25px !important; /* Removes top margin, keeps bottom margin for separator */
}

/* Expanded Description Styling */
.trust-description {
    max-width: 900px; /* Slightly wider for the extra text */
    margin: 0 auto 40px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.trust-description p {
    margin-bottom: 15px; /* Adds nice spacing between paragraphs */
}

.trust-description strong {
    color: var(--primary-blue);
}

/* Tightening the Trust Header Spacing */
.section-main-title {
    margin-bottom: 2px !important;
    letter-spacing: -0.5px;
}

.tagline-container {
    margin: 0 0 20px 0 !important;
}

/* SEO Description Spacing */
.trust-description {
    max-width: 850px;
    margin: 0 auto 50px; /* Increased bottom margin before logos */
    text-align: center;
}

.trust-description p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Spacing between Logo Slider and Reviews */
.client-logos-wrapper {
    margin-bottom: 80px; /* Creating a clear "sexy" gap */
}

/* Review Header Styling */
.reviews-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-title {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.reviews-subtitle {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Sexy highlight for "Original Positive" */
.reviews-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #25D366; /* WhatsApp green for "Positive" vibe */
    margin: 10px auto;
    border-radius: 2px;
}

.rating-centered {
    display: flex;
    flex-direction: column; /* Stack logo, text, and stars vertically */
    align-items: center;    /* Center them horizontally */
    justify-content: center;
    text-align: center;
    margin: 0 auto 30px;    /* Center the block itself and add bottom gap */
    width: 100%;
}

.rating-centered img {
    margin-bottom: 8px;     /* Gap between Google logo and text */
}

.rating-centered span {
    font-weight: 700;
    font-size: 18px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.rating-centered .stars {
    color: #fbbc05;         /* Official Google Star Gold */
    font-size: 18px;
    letter-spacing: 2px;
}

/* Optional: Add a slight "shine" animation to the stars to keep it sexy */
.rating-centered .stars i {
    animation: starTwinkle 2s infinite alternate;
}

@keyframes starTwinkle {
    from { opacity: 0.8; transform: scale(1); }
    to { opacity: 1; transform: scale(1.1); text-shadow: 0 0 10px rgba(251, 188, 5, 0.4); }
}


/* Ensure the grid adapts to the new content */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Specific styling for the more detailed heading */
.feature-card h4 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.3;
}

/* Icon Wrap Colors for New Icons */
.blue-glow { background: #eef4ff; color: #0b4a99; } /* Registered */
.green-glow { background: #eafff2; color: #25D366; } /* Staff */
.red-glow { background: #fff0f0; color: #dc3545; } /* India Reach */

/* Add a subtle shine to the 'Registered' icon to make it look official */
.blue-glow i {
    animation: officialShine 3s infinite;
}

@keyframes officialShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.why-choose-euro.light-theme {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    overflow: hidden;
}

.container-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE CARD */
.emotional-visual-column { flex: 1.2; min-width: 380px; }

.premium-glass-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(11, 74, 153, 0.07);
    position: sticky;
    top: 100px; /* Sticks as you scroll the list */
}

.live-status-light {
    color: #25D366;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 10px; height: 10px; background: #25D366; border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.ultra-title { font-size: 34px; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; }
.highlight-blue { color: #0b4a99; }
.ultra-sub { font-size: 22px; color: #444; margin-bottom: 15px; font-weight: 500; }
.behtareen-text { color: #0b4a99; font-weight: 800; border-bottom: 3px wavy #fdb813; }
.emotional-footer-text { font-size: 16px; color: #666; line-height: 1.6; margin-bottom: 25px; }

.family-stack { display: flex; align-items: center; }
.family-stack img {
    width: 40px; height: 40px; border-radius: 50%; border: 3px solid #fff; margin-left: -12px;
}
.plus-text { margin-left: 15px; color: #0b4a99; font-weight: 700; font-size: 14px; }

/* RIGHT SIDE LIST */
.power-points-column { flex: 1; min-width: 350px; display: flex; flex-direction: column; gap: 12px; }

.power-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f2f4f7;
    transition: 0.3s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.power-item:hover {
    transform: translateX(8px);
    border-color: #0b4a99;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.power-icon {
    width: 50px; height: 50px; min-width: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff;
}

.blue-bg { background: #0b4a99; }
.green-bg { background: #25D366; }
.red-bg { background: #dc3545; }
.yellow-bg { background: #fdb813; }
.purple-bg { background: #6f42c1; }
.orange-bg { background: #fd7e14; }

.power-info h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; color: #333; }
.power-info p { font-size: 13px; color: #777; line-height: 1.4; margin: 0; }

.why-choose-euro.light-theme {
    padding: 120px 0 100px; /* Increased top padding for the wave */
    background: #f8faff; /* Light Ice-Blue to separate from white sections */
    position: relative;
    border-top: 1px solid #edf2f7;
    overflow: hidden;
}

/* Optional: Add a subtle 'Section Curve' to make the separation look sexy */
.why-choose-euro.light-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff; /* Matches the white of the testimonial section above */
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.5);
}

.premium-glass-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    padding: 45px;
    border-radius: 30px;
    /* Stronger shadow since background is now slightly colored */
    box-shadow: 0 30px 60px rgba(11, 74, 153, 0.1);
    position: sticky;
    top: 120px;
}

/* Making the Power Items stand out more on the new background */
.power-item {
    background: #ffffff;
    border: 1px solid #ffffff; /* Hidden border until hover */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.power-item:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 15px 30px rgba(11, 74, 153, 0.08);
}

/* Entrance Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* Continuous Micro-Animations for Icons */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.float-anim { animation: float 3s infinite ease-in-out; }

@keyframes pulse-soft { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
.pulse-anim { animation: pulse-soft 2s infinite ease-in-out; }

@keyframes shield-glow { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }
.shield-anim { animation: shield-glow 2s infinite; }

/* Avatar Entrance */
.avatar {
    transition: transform 0.3s ease;
}
.avatar:hover {
    transform: scale(1.2) translateY(-10px);
    z-index: 10;
}

/* Wavy underline animation */
.behtareen-text {
    position: relative;
    z-index: 1;
}
.behtareen-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 4"><path d="M0 1s2-1 4-1 4 2 6 2 4-2 6-2 4 2 4 2" fill="none" stroke="%23fdb813" stroke-width="2"/></svg>') repeat-x;
    animation: wave-move 2s linear infinite;
}

@keyframes wave-move {
    from { background-position: 0 0; }
    to { background-position: 20px 0; }
}

/* CTA Container Styling */
.why-cta-wrapper {
    margin-top: 60px;
    padding: 0 15px;
    width: 100%;
}

.cta-box {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(11, 74, 153, 0.12);
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect on Box */
.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.cta-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cta-text p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

/* Primary Button Animation */
.btn-main-cta {
    background: #0b4a99;
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-main-cta:hover {
    background: #083a7a;
    transform: translateY(-3px);
    color: #fff;
}

.btn-whatsapp-cta {
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp-cta:hover {
    background: #1eb956;
    transform: translateY(-3px);
    color: #fff;
}

/* Pulse Animation for Quote Button */
.pulse-btn {
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0% { box-shadow: 0 0 0 0 rgba(11, 74, 153, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(11, 74, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 74, 153, 0); }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    .cta-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* Layout & Background */
.why-choose-euro.light-theme {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    overflow: hidden;
    position: relative;
}

.section-divider-wave {
    height: 60px;
    width: 100%;
    background: #fff;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.2);
}

.container-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Card Sticky Logic */
.emotional-visual-column { flex: 1.2; min-width: 380px; }
.premium-glass-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(11, 74, 153, 0.07);
    position: sticky;
    top: 100px;
}

/* Typography Accents */
.ultra-title { font-size: 34px; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; }
.highlight-blue { color: #0b4a99; }
.behtareen-text {
    color: #0b4a99;
    font-weight: 800;
    border-bottom: 3px wavy #fdb813;
}

/* Icons & Grid */
.power-points-column { flex: 1; min-width: 350px; display: flex; flex-direction: column; gap: 15px; }
.power-item {
    display: flex; align-items: center; gap: 18px; padding: 20px;
    background: #ffffff; border-radius: 20px; border: 1px solid #f2f4f7;
    transition: 0.3s all ease;
}
.power-item:hover { transform: translateX(10px); border-color: #0b4a99; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

.power-icon { width: 55px; height: 55px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; }
.blue-bg { background: #0b4a99; } .green-bg { background: #25D366; } .red-bg { background: #dc3545; }
.yellow-bg { background: #fdb813; } .purple-bg { background: #6f42c1; } .orange-bg { background: #fd7e14; }

/* Entrance Animations */
.reveal-left, .stagger-item { opacity: 0; transition: all 0.8s ease-out; }
.reveal-left { transform: translateX(-50px); }
.stagger-item { transform: translateY(30px); }
.is-visible { opacity: 1; transform: translate(0); }

/* CTA Box */
.cta-box {
    margin-top: 50px; background: #fff; padding: 40px; border-radius: 25px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 20px 50px rgba(11, 74, 153, 0.1); border: 1px solid #eef2f6;
}
.btn-main-cta, .btn-whatsapp-cta { padding: 15px 30px; border-radius: 12px; font-weight: 700; text-decoration: none; color: #fff; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.btn-main-cta { background: #0b4a99; }
.btn-whatsapp-cta { background: #25D366; }

/* Micro-animations */
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.pulse-dot { width: 10px; height: 10px; background: #25D366; border-radius: 50%; animation: pulse-green 2s infinite; }
/* Main Bar Styling */
.cta-luxury-bar {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 100px; /* Pill Shape */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.cta-text-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-pulse {
    width: 60px;
    height: 60px;
    background: #f4f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0b4a99;
    animation: icon-float 3s infinite ease-in-out;
}

.cta-copy h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
}

.cta-copy p {
    margin: 0;
    color: #777;
    font-size: 15px;
}

/* BUTTON STYLING */
.cta-buttons-modern {
    display: flex;
    gap: 15px;
}

.luxury-btn {
    padding: 16px 32px;
    border-radius: 50px; /* Pill Shape */
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 15px;
}

/* The Primary Glow Button */
.btn-primary-glow {
    background: #0b4a99;
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 74, 153, 0.3);
}

.btn-primary-glow:hover {
    transform: scale(1.05);
    background: #0d56b1;
    box-shadow: 0 15px 35px rgba(11, 74, 153, 0.4);
}

.btn-primary-glow i {
    transition: transform 0.3s ease;
}

.btn-primary-glow:hover i {
    transform: translateX(5px);
}

/* The Ghost WhatsApp Button */
.btn-whatsapp-border {
    background: transparent;
    color: #25D366;
    border: 2px solid #25D366;
}

.btn-whatsapp-border:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

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

/* Responsive */
@media (max-width: 991px) {
    .cta-luxury-bar {
        border-radius: 30px;
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .cta-text-side {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .cta-buttons-modern {
        flex-direction: column;
        width: 100%;
    }
    .luxury-btn {
        width: 100%;
        justify-content: center;
    }
}
/* This creates a subtle physical gap between Testimonials and Why Us */
.section-spacer {
    height: 80px;
    background: #ffffff; /* Matches Testimonial background */
}

.why-choose-euro.light-theme {
    padding: 100px 0;
    background: #f8faff; /* Subtly different from white */
    position: relative;
    border-top: 1px solid #edf2f7;
}

/* Add a soft "Curve" at the top to break the flat line */
.why-choose-euro.light-theme::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8faff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}

/* Ensure cards pop off the new background */
.premium-glass-card, .power-item, .cta-luxury-bar {
    background: #ffffff !important;
    box-shadow: 0 20px 40px rgba(11, 74, 153, 0.05);
}

/* Floating Luxury Pill CTA */
.cta-luxury-bar {
    border-radius: 100px;
    padding: 25px 45px;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.luxury-btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary-glow { background: #0b4a99; color: #fff; box-shadow: 0 10px 20px rgba(11, 74, 153, 0.2); }
.btn-whatsapp-border { border: 2px solid #25D366; color: #25D366; }
.btn-whatsapp-border:hover { background: #25D366; color: #fff; }

.our-services-modern {
    padding: 100px 0;
    background: #ffffff;
}

/* Focusable Header Styling */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.focusable-shoutout {
    background: #f8faff;
    display: inline-block;
    padding: 25px 40px;
    border-radius: 20px;
    border: 1px dashed #0b4a99;
    margin-top: 10px;
}

.hinglish-focus {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.tension-free-glow {
    color: #0b4a99;
    background: linear-gradient(120deg, #eef4ff 0%, #eef4ff 100%);
    padding: 0 5px;
    border-radius: 5px;
}

.sub-detail {
    margin-top: 10px;
    color: #777;
    font-size: 15px;
}

/* Interactive Grid */
.services-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card-neo {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card-neo:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 74, 153, 0.08);
    border-color: #0b4a99;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: 0.3s;
}

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

/* Glow Variations */
.blue-glow { background: #eef4ff; color: #0b4a99; }
.green-glow { background: #eafff2; color: #25D366; }
.purple-glow { background: #f3eeff; color: #6f42c1; }
.yellow-glow { background: #fff9e6; color: #fdb813; }
.red-glow { background: #fff0f0; color: #dc3545; }
.orange-glow { background: #fff5eb; color: #fd7e14; }

.service-card-neo h4 { font-size: 20px; font-weight: 800; margin-bottom: 15px; color: #1a1a1a; }
.service-card-neo p { color: #666; line-height: 1.6; font-size: 15px; }

.neo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #0b4a99;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.neo-cta:hover { gap: 12px; color: #083a7a; }

/* Animation Classes */
.reveal-up { opacity: 0; transform: translateY(30px); transition: 0.8s all ease; }
.stagger-item { opacity: 0; transform: translateY(20px); transition: 0.5s all ease; }
.is-visible { opacity: 1; transform: translateY(0); }


/* --- MASSIVE FAMILY IMAGE STYLING --- */
.massive-family-container {
    position: relative;
    margin-top: -20px; /* Slight overlap with the glass card for design depth */
    margin-left: 20px;
    margin-right: -10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid #ffffff; /* Like a real photo frame */
    transform: rotate(-1deg); /* Subtle classy tilt */
    transition: all 0.4s ease;
    z-index: 2;
}

.massive-family-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(11, 74, 153, 0.2);
}

.family-group-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Badge on the Image */
.trust-badge-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(11, 74, 153, 0.9); /* Your brand blue */
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.trust-badge-overlay i {
    color: #ff4d4d; /* Red heart for emotion */
}

/* Ensure mobile looks good */
@media (max-width: 768px) {
    .massive-family-container {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
        transform: rotate(0deg);
    }
}

.form-success-alert {
    background-color: #dcfce7; /* Light green */
    color: #166534; /* Dark green text */
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: slideDown 0.4s ease;
}

.form-success-alert i {
    font-size: 18px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* spinner */
.submit-btn:disabled {
    background-color: #cbd5e1 !important; /* Grey out when sending */
    cursor: not-allowed;
    transform: none !important;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Optional: Smooth fade for the response message */
#formResponse {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
}
/* spinner end */

/* popup */
/* --- SUCCESS MODAL STYLES --- */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(2, 13, 26, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-icon-wrapper {
    width: 80px; height: 80px;
    background: #22c55e;
    color: white;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.modal-content h2 { color: #1e293b; margin-bottom: 10px; font-size: 28px; }
.modal-content p { color: #64748b; line-height: 1.6; margin-bottom: 25px; }

.modal-close-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(11, 74, 153, 0.4); }

.modal-footer-brand img { height: 30px; margin-top: 30px; opacity: 0.5; }
 /* popup end  */


/* responsiveness */
/* Add this to your main container or body */
body, html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Initial Hidden State */
.reveal-left {
    opacity: 0;
    transform: translateX(-30px); /* Smaller movement for mobile */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Visible State */
.reveal-left.is-visible,
.reveal-up.is-visible,
.stagger-item.is-visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Staggered items initial state */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

/* This is the most critical fix */
html, body {
    width: 100%;
    overflow-x: hidden; /* Clips any animation starting off-screen */
    position: relative;
}

/* Ensure the main wrapper also clips overflow */
main, .contact-section-modern, .hero-section {
    overflow: hidden;
    width: 100%;
}
/* --- Desktop/Tablet Animation State --- */
@media (min-width: 769px) {
    .reveal-up, .reveal-left, .reveal-text, .hero-form-box,
    .services-header, .why-cta-wrapper, .services-grid-interactive,
    .power-points-column, .stagger-item {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform, opacity;
    }

    .reveal-up { transform: translateY(40px); }
    .reveal-left { transform: translateX(-40px); }
    .stagger-item { transform: translateY(20px); }

    /* The Visible State */
    .is-visible {
        opacity: 1 !important;
        transform: translate(0, 0) !important;
    }
}

/* --- Mobile Fix: Static State --- */
@media (max-width: 768px) {
    /* Force everything to be visible and static */
    .reveal-up, .reveal-left, .reveal-text, .hero-form-box,
    .services-header, .why-cta-wrapper, .services-grid-interactive,
    .power-points-column, .stagger-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
    }

    /* Prevent horizontal overflow on the whole site */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
}

/* why choose us */
@media (max-width: 768px) {
    /* Force the flex container to stack and center */
    .why-cta-wrapper{
        padding: 0;
    }
    .luxury-btn{
        width: auto;
        padding: 12px;
    }
    .why-choose-euro .container{
       padding : 0 10px !important;
    }
    .emotional-visual-column{
        min-width: auto!important;
    }
    /* why choose us end */
    /* font-size */
    .section-main-title{
        font-size: 28px;
    }
    .trust-tagline-main{
        font-size: 15px;
    }
    .hinglish-focus{
        font-size:20px ;
    }
    .btn-main-call,.btn-wa-link{
        font-size: 15px!important;
    }
       .hindi-highlight-text{
           font-size: 18px!important;
       }
       h3{
           text-align: center;
       }

    .hero-section {
        position: relative;
        /* Clean path to your local image */
        background-image: url('../../assets/images/landing-page/hero/hero-mobile.png')!important;
        background-size: cover;
        background-position: left;
        background-repeat: no-repeat;
       padding:60px 0 120px 0;
        min-height: 40vh;
        display: flex;
        align-items: center;
        color: #ffffff;
        z-index: 1; /* Establishes a stack context */
    }

    /* The Overlay Layer */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Matching your brand navy (#020d1a) with 70% opacity */
        background: rgba(2, 13, 26, 0.85);
        z-index: -1; /* Sits behind text, but in front of image */
    }
    .truck-message{
        font-size: 9px!important;
    }
    .cta-luxury-bar{
        padding: 80px 30px!important;
    }
    .form-group input, .form-group textarea{
        width: 90%!important;
    }
    .contact-section-modern{
        padding: 60px 0!important;

    }
    .info-card{
        padding:40px 0!important;
    }
    .city-name{
        width: 90px!important;
    }
    /* font-size end */
}

