/* --- Testimonial (namespaced) --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* ==============================
   Trusted Transport - Hero + Track Wrapper
   ============================== */
.hero_container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ----------------- Hero Section Styles ----------------- */
.hero-track-wrapper {
    background-color: var(--section-bg);
    padding-bottom: 80px;
    /* Space for track-strip overlap */
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 0 3rem 0;
}

/* Layout Grid */
.hero-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    /* Compensation for inner padding */
    align-items: center;
}

.hero-col-content,
.hero-col-image {
    width: 50%;
    padding: 0 12px;
}

/* Content Styling */
.hero-col-content h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 48px;
    line-height: 1.1;
    max-width: 490px;
    margin-bottom: 12px;
}

.hero-col-content p {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-text);
    font-weight: 500;
    max-width: 490px;
    padding-top: 0.75rem;
    padding-bottom: 2.5rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-link {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--button-text);
    padding: 12px 24px;
    border-radius: 9999px;
    /* Rounded-full */
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Image Column */
.hero-col-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.truck-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    border-radius: 8px;
    /* Custom pure CSS animation for truck */
    animation: slideIn 1.5s ease forwards;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
}

.pallet-image {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 25%;
    /* md:w-2/6 */
    max-width: 150px;
    /* Custom pure CSS animation for pallet */
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide 1s ease 1s forwards;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-slide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------- Tracking Strip Styles ----------------- */
.track-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    padding: 30px 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px var(--shadow-color);
    max-width: 1200px;
    /* Crucial overlap positioning */
    margin: -60px auto 0 auto;
    position: relative;
    z-index: 10;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.track-strip:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Contact Info Section */
.track-info {
    display: flex;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.contact-item i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.15);
    color: var(--secondary-color);
}

.contact-item .label {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.contact-item a {
    text-decoration: none;
}

.contact-item .value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Tracking Form */
.track-form {
    display: flex;
    gap: 12px;
}

.track-form input {
    padding: 14px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    width: 240px;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.track-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px var(--primary-shade);
}

.btn-gradient {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--primary-shade);
}

/* ----------------- Responsive Media Queries ----------------- */
@media (max-width: 1024px) {

    /* Tablet/Desktop breakpoint for Hero Layout */
    .hero-col-content,
    .hero-col-image {
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero-col-content {
        order: 2;
        /* Content below image */
        text-align: center;
    }

    .hero-col-image {
        order: 1;
        /* Image above content */
    }

    .hero-col-content h1,
    .hero-col-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Tracking Strip Adjustment */
    .track-strip {
        margin: -40px auto 0 auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 30px;
        gap: 25px;
    }

    .track-info {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .track-form {
        width: 100%;
        flex-direction: column;
    }

    .track-form input,
    .track-form button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-col-content h1 {
        font-size: 40px;
    }

    .track-strip {
        padding: 20px;
    }
}


/* ==============================
   Trusted Transport - Why Choose Us Section
   ============================== */
.why-choose-us-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.container-logistics {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 3. Header and Description Styling (CENTERED LAYOUT) --- */
.header-row {
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center content (like the title/icon group) */
    text-align: center;
    /* margin-bottom: 50px  ; */
}

/* Title and Icon Wrapper */
.header-content {
    flex: 0 0 100%;
    /* Full width */
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    /* Center the title and icon group */
    margin-bottom: 15px;
}

/* Description Paragraph Wrapper */
.header-description {
    flex: 0 0 100%;
    padding: 0 5%;
    /* Adds slight side margin on desktop */
    max-width: 800px;
    /* Optional: Constrains width of the text block for readability */
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}

.title-icon {
    width: 55px;
    height: 55px;
    background-color: var(--secondary-color);
    color: var(--button-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 15px var(--secondary-shade);
}

.header-description p {
    font-size: 18px;
    color: var(--secondary-text);
}

/* --- 4. Image Placeholder Styling (Enhanced) --- */
.image-placeholder {
    margin-bottom: 60px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 4px solid var(--bg-color);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 5. Feature Cards Grid & Card Styling --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-bottom: 4px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--primary-shade);
    border-color: var(--secondary-color);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--section-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--secondary-color);
    color: var(--button-text);
    border-color: var(--secondary-color);
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.feature-card:hover .card-title {
    color: var(--primary-color);
}

.card-text {
    font-size: 15px;
    color: var(--secondary-text);
}

/* --- 6. Media Queries for Responsiveness --- */

/* Tablet/Small Desktop (up to 1200px) */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (up to 992px) - Stack the title/icon group and adjust spacing */
@media (max-width: 992px) {
    .header-description {
        padding: 0 2%;
    }
}

/* Mobile (up to 576px) */
@media (max-width: 576px) {
    .why-choose-us-section {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .container-logistics {
        padding: 0 15px;
    }

    .section-title {
        font-size: 38px;
    }

    .header-content {
        gap: 10px;
    }

    .header-description p {
        font-size: 15px;
    }

    .feature-card {
        padding: 25px;
    }

    .title-icon {
        display: none;
    }
}

/* WHy Choose Us Section END */



/* Services Section Start */

.services-section {
    padding: 80px 20px 40px;
    background-color: var(--section-bg);
}

/* Content Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ----------------- Header Styling ----------------- */

.header-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.header-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--text-color);
    /* Gradient effect on the title text */
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(4, 69, 105, 0.3);
    transition: transform 0.3s ease;
}

.header-icon-circle:hover {
    transform: rotate(15deg) scale(1.05);
    background-color: var(--secondary-color);
}

.header-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 1100px;
    margin: 0 auto 50px auto;
}

/* ----------------- Cards Grid Styling ----------------- */

.service-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 50px;
}

/* Column definition (W-full, sm:w-6/12, lg:w-3/12 equivalent) */
.service-col {
    width: 100%;
    padding: 15px;
}

/* Desktop: 4 columns (12/4 = 3/12 or 25%) */
@media (min-width: 1024px) {
    .service-col {
        width: 25%;
    }
}

/* Tablet/Medium: 2 columns (12/2 = 6/12 or 50%) */
@media (min-width: 640px) and (max-width: 1023px) {
    .service-col {
        width: 50%;
    }
}

/* Ensure there's some top margin on mobile when stacked */
@media (max-width: 639px) {
    .service-col:nth-child(n+2) {
        margin-top: 15px;
    }
}

/* ----------------- Card Content Styling ----------------- */

.service-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    background-color: var(--bg-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

/* Card Hover Effect: Lift and Shadow */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Decorative Element (Green Accent Bar) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card:hover::before {
    height: 10px;
    /* Thicken on hover */
    background-color: var(--secondary-color);
    /* Change color on hover */
}

/* Card Header (Icon and Number Placeholder) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Left Icon Styling */
.card-header .main-icon {
    font-size: 2.2rem;
    /* Use gradient color for the main icon */
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.service-card:hover .main-icon {
    transform: rotate(-5deg) scale(1.1);
}

/* Right Placeholder (Used placeholder colors and shapes) */
.card-header .placeholder-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-blue);
    /* Light color accent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.service-card:hover .placeholder-image {
    background-color: var(--secondary-color);
    color: white;
}


/* Title Styling */
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: var(--secondary-color);
}

/* Description Styling */
.card-description {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-text);
    line-height: 1.4;
}

/* Services Section End */

/* Stats Section Start */
.stats-section {
    padding: 50px 20px;
    text-align: center;
    /* Using a smooth, professional background gradient for depth */
    background: linear-gradient(135deg, var(--section-bg) 0%, var(--bg-color) 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

/* Decorative glow background */
.stats-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Using primary shade for a subtle dark blue glow */
    background: radial-gradient(circle, var(--primary-shade) 0%, transparent 70%);
    animation: slow-rotate 40s linear infinite;
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stats-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stats-header .title-text {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    /* Responsive font size */
    font-weight: 800;
    /* Bolder title */
    /* Gradient for title text */
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Styling for the trophy circle */
.number-circle {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--button-text);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px var(--secondary-shade);
}

.stats-header p {
    opacity: 0.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--secondary-text);
}

.stats-container {
    display: grid;
    /* Responsive grid: Min width of 250px per card */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    /* Ensure cards are above the background glow */
    z-index: 10;
}

/* Stat Card Styling */
.stat-card {
    padding: 40px 20px;
    border-radius: var(--radius-xl);
    background: var(--bg-color);
    /* Solid white background */
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle vertical divider on desktop */
@media (min-width: 768px) {
    .stat-card:not(:last-child) {
        border-right: 1px solid var(--border-color);
    }
}

/* Hover effect: Subtle 3D lift and dark shadow */
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(4, 69, 105, 0.15);
}

/* Inner glow/shine effect on hover (for the glassmorphism feel) */
.stat-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* Light blue/white translucent shine */
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.stat-card:hover::after {
    left: 100%;
}

/* Icon Styling */
.stat-icon {
    font-size: 3rem;
    /* Larger icon */
    margin-bottom: 20px;
    /* Gradient color for the icon */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Removed pulse-stats to avoid excessive animation, replaced with subtle hover scale */
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

/* Number Styling */
.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    /* Very large, responsive number */
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1;
    display: inline-block;
}

.stat-card p {
    opacity: 0.9;
    font-size: 1rem;
    color: var(--secondary-text);
    font-weight: 600;
    /* Slightly bolder description */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 20px;
    }

    .stat-card {
        padding: 30px 15px;
        border-right: 1px solid var(--border-color);
        /* Ensure border on all sides */
    }

    .stats-header .title-text {
        font-size: 2rem;
    }
}

/* Stats Section End */


/* Process Section Start */

.process-section {
    /* Implements the user's requested gradient: 0deg means bottom (primary) to top (secondary) */
    /* This translates to secondary-color at the top, primary-color at the bottom */
    background: linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    /* Using user's gap concept for overall bottom spacing */
    margin-bottom: 9vh;
}

.process-inner-section {
    display: flex;
    /* Using user's max-width and center margin */
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* ----------------- Left Column: Sticky Image (Desktop) ----------------- */

.process-container-section {
    width: 80%;
    /* Sticky positioning for the image column */
    position: sticky;
    top: 0px;
    align-self: flex-start;

    /* Ensures the sticky box has a small offset from the content below it */
    margin-bottom: -230px;
}

.widget-image-container {
    text-align: center;
}

.container-img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    width: 100%;

    /* REMOVED SHADOW as requested */
    /* Increased size for more visual impact, but still responsive */
    transform: scale(1.1);
    /* Slightly larger */
    transform-origin: top left;
    /* Scale from top-left */
}

/* ----------------- Right Column: Scrollable Content (Desktop) ----------------- */

.process-right-section {
    width: 42%;
    display: flex;
    flex-direction: column;

    /* Gap equivalent to the 4% space between the 60% and 36% columns */

    /* User's padding idea */
    padding-top: 10vh;
}

/* Headings */
.right-section-sub-heading {
    margin-bottom: 30px;
}

.sub-heading-section h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--button-text);
    line-height: 1.14rem;
}

.right-section-heading {
    margin-bottom: 9vh;
    /* User's spacing idea */
}

.right-section-heading h3 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--button-text);
}

/* ----------------- Card Styling (Glassmorphism) ----------------- */

.process-point-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
    cursor: pointer;

    /* Glassmorphism background/border using calculated RGBA from --button-text (#ffffff) */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    border-radius: var(--radius-lg);
    margin-bottom: 20px;

    /* Adjusted padding to wrap content better */
    padding: 20px;
}

.process-point-section:last-of-type {
    margin-bottom: 0;
}

.process-point-section:hover {
    background: rgba(255, 255, 255, 0.15);
    /* More prominent hover background */
    transform: translateX(5px);
}

.point-number-sec {
    font-size: 16px;
    /* Slightly increased font size */
    font-weight: 700;
    /* Made it bolder */
    /* Distinct styling for the number badge */
    color: #fff;
    background-color: #ffffff5b;
    border: 1px solid #fff;
    padding: 6px 10px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
    /* Space from title below */
}

.process-point-heading h6 {
    color: var(--button-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.process-point-description {
    color: rgba(255, 255, 255, 0.8);
    /* Slightly muted white for description */
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
}

.point-icon-section {
    text-align: right;
    margin-top: 15px;
    /* More space for the icon */
}

.point-icon-section i {
    font-size: 24px;
    /* Larger icon */
    color: var(--button-text);
    /* White icon color */

    /* Distinct styling for the icon background */
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    /* Circle shape */
    padding: 10px;
    display: inline-flex;
    /* For perfect centering */
    align-items: center;
    justify-content: center;
    width: 48px;
    /* Fixed size */
    height: 48px;
    /* Fixed size */

    transition: all 0.3s;
}

.process-point-section:hover .point-icon-section i {
    color: var(--secondary-color);
    /* Green icon on hover */
    background-color: var(--button-text);
    /* White background on hover */
    border-color: var(--secondary-color);
    transform: scale(1.1) translateX(5px);
    /* Scale and move on hover */
}

/* ----------------- Bottom Visual ----------------- */
.bottom-visual {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 80px;
    border-radius: var(--radius-xl);
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.2); */
}

/* Fallback for the SVG image */
.bottom-visual[src*=".svg"] {
    /* If it's the SVG, we can't show it, so use a placeholder */
    content: url("https://swiftline.vamtam.com/wp-content/uploads/2024/09/truck-il.svg");
    object-fit: cover;
    object-position: center;
}


/* ----------------- 6. Responsive Breakpoints (Mobile) ----------------- */

@media (max-width: 1024px) {
    .process-section {
        min-height: auto;
        /* Allow height to collapse */
        padding: 40px 0;
        margin-bottom: 5vh;
    }

    .process-inner-section {
        flex-direction: column;
        gap: 20px;
    }

    .process-container-section,
    .process-right-section {
        /* Both columns take full width and static positioning */
        width: 100%;
        max-width: 100%;
        position: static;
        align-self: auto;
        margin-left: 0;
        padding-top: 0;
        margin-bottom: 0;
    }

    /* Order the image above the content for mobile */
    .process-container-section {
        order: 1;
    }

    .process-right-section {
        order: 2;
        padding-top: 20px;
    }

    .right-section-heading h3 {
        font-size: 40px;
    }

    .right-section-heading {
        margin-bottom: 5vh;
    }

    .process-point-section {
        margin-bottom: 15px;
    }

    .container-img {
        transform: none;
        /* Remove desktop scale on mobile */
    }
}

@media (max-width: 600px) {
    .right-section-heading h3 {
        font-size: 32px;
    }

    .process-inner-section {
        padding: 0 16px;
    }
}

/* Testimonial Section Start */


/* wrapper */
:root {
    --primary-blue: #044569;
    --secondary-green: #058F48;
    --light-bg: #f7f9fc;
    --text-dark: #1a1a1a;
    --shadow-subtle: 0 10px 30px rgba(4, 69, 105, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
}

/* Section Background and Padding */
.testimonial-section {
    background-color: white;
    padding: 96px 20px;
}

.testimonial-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Title Styling */
.subtitle-text {
    color: var(--secondary-green);
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
}

.main-title {
    color: var(--primary-blue);
    font-weight: 900;
}

/* Testimonial Card Styling */
.testi-card-new {
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    /* Keep the quote icon slightly contained but visible */
    transition: all 0.3s ease;
    border: 1px solid #e1e7f0;
}

.testi-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 69, 105, 0.15);
    border-color: var(--primary-blue);
}

/* Quote Icon (The "Comma") */
.quote-icon-large {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-blue);
    opacity: 0.08;
    /* Very subtle background element */
    width: 120px;
    /* Significantly larger */
    height: 120px;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.testi-card-new:hover .quote-icon-large {
    opacity: 0.15;
}

/* Review Text Layering */
.review-content {
    z-index: 1;
    /* Ensure text is above the quote icon */
    position: relative;
}

.review-text {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
}

/* Author Info */
.author-name {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.15rem;
}

.author-title {
    color: var(--secondary-green);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Avatar styling */
.author-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 9999px;
    overflow: hidden;
    background-color: var(--secondary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 0 0 4px rgba(5, 143, 72, 0.1);
}

/* Swiper Pagination/Navigation Styling */
.swiper-pagination-bullet-active {
    background-color: var(--primary-blue) !important;
    opacity: 1 !important;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 40px;
}

/* Testimonial Section End */

/* Contact Us / Quote Start */

/* Contact Us / Quote End */




/* Footer Section Start */

.footer {
    background: var(--secondary-bg);
    color: var(--text-color);
    padding: 70px 40px 25px;
    position: relative;
    overflow: hidden;
    font-size: 15px;
}

/* Rotating glow */
.footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    background: radial-gradient(circle at center, var(--accent-color)15%, transparent 65%);
    opacity: 0.05;
    animation: rotateGlow 28s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Logo + tagline */
.footer-top {
    text-align: center;
    margin-bottom: 50px;
    z-index: 3;
}

.footer-top .logo {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-top .tagline {
    margin-top: 8px;
    color: var(--secondary-text);
    font-size: 16px;
    font-style: italic;
}

/* Grid Layout */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 3;
}

/* About Section */
.footer-about p {
    font-size: 17px;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Socials below description */
.footer-socials.big-icons a {
    font-size: 24px;
    margin-right: 14px;
    display: inline-block;
    color: var(--secondary-text);
    transition: all 0.3s ease;
}

.footer-socials.big-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.25) rotate(8deg);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Section Titles */
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--accent-color);
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 6px;
    border-radius: 2px;
    animation: glowLine 3s infinite alternate;
}

@keyframes glowLine {
    from {
        opacity: 0.4;
        width: 20px;
    }

    to {
        opacity: 1;
        width: 80px;
    }
}

@media (max-width: 600px) {
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        /* This ensures the margin rule from above is definitely applied here */
        margin-top: 6px; 
        margin-left: auto;
        margin-right: auto;
    }
}

/* Links */
.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 13px;
}

.footer-links a,
.footer-services a {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
    transform: translateX(6px);
}

/* Contact Info */
.footer-contact p {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--secondary-text);
    cursor: pointer;
}

.footer-contact p:hover {
    transform: translateX(12px);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 16px;
    background: var(--bg-color);
    height: 35px;
    width: 35px;
    text-align: center;
    align-content: center;
    border-radius: 4px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--secondary-text);
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        margin-top: 20px;
    }

    .footer-socials.big-icons a {
        margin: 0 10px;
    }
}


/* Footer Section End*/

p-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
/* .popup {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 12px;
    width: 380px;
    max-width: 95%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    animation: popupFade 0.3s ease;
    display: hidden;
}

.popup h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
        }

        .popup {
            background: rgba(255, 255, 255, 0.8);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
            text-align: center;
            animation: scaleUp 0.5s ease forwards;
        } */