:root {
     --rg-blue: #0b1d59;
     --rg-orange: #e97e12;
    --rg-green: #2c7849;
   --rg-red: #e13630;
}

html, body {
    overflow-x: clip;
     font-family: "Inter", sans-serif
}

h1,h2,h3,h4,h5,h6,p{
     font-family: "Inter", sans-serif
}

p{
    font-size: 16px;
    color: #4c4c4c;
}
img{
    max-width: 100%;
}


/* ================= HEADER STYLES (Scoped to .rg-header) ================= */
.rg-header {
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.rg-flags-grid a{
    text-decoration: none;
}

.rg-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  z-index: 999;
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.4s ease forwards;
}

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

.rg-header.scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rg-header-row {
    transition: height 0.3s ease;
}

.rg-logo img {
    width: 116px;
    max-width: 100%;
}

.rg-nav {
    display: flex;
    justify-content: center;
}

.rg-main-menu {
    display: flex;
    align-items: center;
    gap: 23px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rg-main-menu > li > a {
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    padding: 35px 0;
    position: relative;
    transition: color 0.3s ease;
}

.rg-main-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--rg-green, #2c7849);
    transition: width 0.3s ease;
}

.rg-main-menu > li:hover > a,
.rg-main-menu > li.active > a {
    color: var(--rg-green, #2c7849);
}

.rg-main-menu > li:hover > a::after,
.rg-main-menu > li.active > a::after {
    width: 100%;
}


.rg-main-menu > li > span {
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    padding: 35px 0;
    position: relative;
    transition: color 0.3s ease;
}

.rg-main-menu > li > span::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--rg-green, #2c7849);
    transition: width 0.3s ease;
}

.rg-main-menu > li:hover > span,
.rg-main-menu > li.active > span {
    color: var(--rg-green, #2c7849);
}

.rg-main-menu > li:hover > span::after,
.rg-main-menu > li.active > span::after {
    width: 100%;
}

/* Dropdown Styles */
.rg-has-dropdown {
    position: relative;
}

.rg-sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 260px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.rg-has-dropdown:hover .rg-sub-menu {
    top: 3rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rg-sub-menu li a ,.rg-sub-menu li span {
    color: #444444;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 12px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
        cursor: pointer;
}

.rg-sub-menu li:last-child a ,.rg-sub-menu li:last-child span {
    border-bottom: none;
}

.rg-sub-menu li a:hover , .rg-sub-menu li span:hover {
    color: var(--rg-green, #2c7849);
    padding-left: 32px;
    background-color: rgba(44, 120, 73, 0.05);
}

/* Button & Animation */
.rg-btn-primary {
    background-color: var(--rg-green, #2c7849);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.rg-btn-primary:hover {
    background-color: var(--rg-blue, #0b1d59);
    color: #ffffff;
}

.btn-arrow {
    display: inline-flex;
}

.rg-btn-primary:hover .btn-arrow svg {
    animation: flyArrow 0.4s ease forwards;
}

@keyframes flyArrow {
    0% { transform: translateX(0); opacity: 1; }
    40% { transform: translateX(20px); opacity: 0; }
    41% { transform: translateX(-20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@media (max-width: 1199px) {
    .rg-header-row {
        justify-content: space-between;
    }
}

/* ================= BANNER SECTION ================= */
.rg-banner-sec {
    position: relative;
    height: 78vh;
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
}

.rg-banner-sec img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0; 
}

.rg-banner-sec::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(91deg, rgb(11 29 89 / 69%) 0%, rgb(11 29 89 / 46%) 50%, rgb(11 29 89 / 0%) 100%);
    z-index: 1;
}



.rg-banner-sec::after {
  content:"";
    position:absolute;
    inset:0;
    pointer-events:none;

       background: repeating-linear-gradient(135deg, rgb(255 255 255 / 5%) 0px, rgb(255 255 255 / 7%) 1.5px, transparent 1px, #00000000 6px);
}

.rg-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-bottom: 80px; 
}

.rg-banner-content h1 {
    color: #ffffff;
    font-size: 43px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 23px;
}

.rg-banner-content p {
    color: #ffffff;
    font-size: 16px;
        margin-bottom: 32px;
}

.rg-banner-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.rg-btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.rg-btn-outline:hover {
    background-color: #ffffff;
    color: var(--rg-blue);
}

/* ================= BANNER WAVES & FLOATING BOX ================= */
.rg-waves-wrapper {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.rg-wave {
    width: 100%;
    height: auto;
    display: block;
}

.rg-features-container {
    position: absolute;
    bottom: -90px; /* Floats exactly half over the wave */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 92%;
    max-width: 1240px;
}

.rg-features-box {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.rg-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    border-right: 1px solid #e0e0e0;
    padding: 0 21px;
}

.border-0 { border: none !important; }

.rg-feat-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.bg-green { background: linear-gradient(135deg, #2c7849, #40a065); }
.bg-blue { background: linear-gradient(135deg, #0b1d59, #1c3894); }
.bg-orange { background: linear-gradient(135deg, #e97e12, #ff9d3b); }
.bg-green-alt { background: linear-gradient(135deg, #2c7849, #40a065); }

.rg-feat-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 5px 0;
}

.rg-feat-text p {
    font-size: 13px;
    margin: 0;
}

/* ================= GLOBAL TYPOGRAPHY REUSABLES ================= */



.rg-about-content .sec-big-title {
    font-size: 34px;
margin-bottom: 8px;
}

.rg-about-content p {
    margin:0;
}


.text-white { color: #ffffff !important; }


.rg-service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.rg-service-card{
    background:#fff;
    border:1px solid #edf0f3;
    border-radius:22px;
    padding: 0px 0px 22px;
    display:flex;
    flex-direction:column;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.rg-service-card a{
    text-decoration: none;
}




.srv-img img{
   width: 100%;
    object-fit: contain;
}

.srv-info{
    display:flex;
    align-items: center;
    gap: 10px;
        padding: 16px 18px 4px;
}

.srv-info h4{
    color:#111;
    font-size:18px;
    font-weight:700;
    margin:0;
}

.sec-title{
    margin-bottom: 2.5rem;
}

.rg-about-content .sec-title{
    margin-bottom: 1.5rem;
}

.sec-big-title{
    color: #0b1d59;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    margin-bottom: 1rem;
}

.rg-service-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:260px;
}

.kinetic-badge{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:180px;
    border-radius:50%;
    text-decoration:none;
    color:#2c7849;

     background:linear-gradient(135deg,#eef9f2,#ffffff);
    border:2px solid #d9efe1;

    overflow:hidden;
    transition:.35s;
}

.kinetic-badge:hover{
    transform:translateY(-4px);
}
.badge-bg{
    position:absolute;
    inset:0;
    border-radius:50%;
    background:#2c7849;
    transform:scale(0);
    transition:transform .55s cubic-bezier(.85,0,.15,1);
    z-index:1;
}

.kinetic-badge:hover .badge-bg{
    transform:scale(1);
}

.badge-text{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
    animation:spinSlow 12s linear infinite;
    transition:.3s;
    
}

.badge-text svg{
    overflow:visible;
}

.kinetic-badge:hover .badge-text{
    color:#fff;
    animation:spinSlow 4s linear infinite;
}

.badge-icon{
    position:relative;
    z-index:3;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#2c7849;
    transition:.4s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.kinetic-badge:hover .badge-icon{
    transform:rotate(45deg) scale(1.08);
}

@keyframes spinSlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.srv-arrow{
      padding-top: 3px;
    flex-shrink: 0;
    margin-left: auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #2c7849;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c7849;
    font-size: 14px;
    transition: .35s;
     text-decoration: none;
}

.rg-service-card:hover .srv-arrow{
    background:#2c7849;
    border-color:#2c7849;
    
    color:#fff;
    transform:translateX(4px);
    text-decoration: none;
}

.rg-services-sec{
    padding: 4rem 0;
}

/* ================= FLOATING CONTACT BUTTONS ================= */
.floating-contact-wrap {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%); 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}
.float-btn {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.15); /* Nice bouncy pop effect on hover */
}


.float-wa img {
    width: 47px;
    height: 47px;
    object-fit: contain;
}




@media (min-width: 992px) {
    .float-call {
        display: none !important;
    }
}



/* ================= SECTION 2: ABOUT TRANSPORT ================= */
.rg-about-sec {
    background-color: #ffffff;
    padding: 4rem 0 0;
}

.rg-about-img {
    width: 100%;
    border-radius: 0 14px 0 0;
    overflow: hidden;
}

.rg-about-img img {
    width: 100%;
    object-fit: cover;
    height: 546px;
}

.rg-about-content {
    padding: 0 60px;
}
.rg-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -1px;
    padding-top: 0px;
    margin-left: -1rem;
}

.text-green {
    color: #2c7849;
}

.no-botttom {
    margin-bottom: 0 !important;
}

.rg-about-content h4 {
    margin: 1rem 0;
    font-weight: 600;
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 17px 23px;
}

/* Creates the clean inner borders that don't touch the edges */
.stat-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #dcdcdc;
}

/* Adds a subtle bottom border for the top row */
.stat-item:nth-child(-n+3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #dcdcdc;
}

/* Removes the right border from the last item in each row */
.stat-item:nth-child(3n)::before {
    display: none;
}

/* ==================================
   NEW TICK ICON LOGIC 
================================== */
.stat-text {
    position: relative;
    padding-left: 28px; /* Room for the tick icon */
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
    display: flex;
    align-items: center;
}

/* The custom tick icon */
.stat-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: rgba(44, 120, 73, 0.1); /* Soft green background */
    border-radius: 50%;
    /* Creating a pure CSS checkmark using background-image */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c7849' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-text::before {
    background-color: #2c7849;
    /* Changes tick to white on hover */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    transform: translateY(-50%) scale(1.15);
}

@media (max-width: 991px) {
    .rg-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reset Desktop Borders */
    .stat-item::before, .stat-item::after { display: none; }
    
    /* Apply Tablet Borders */
    .stat-item::before {
        display: block;
        content: '';
        position: absolute;
        right: 0; top: 15%; height: 70%; width: 1px; background-color: #dcdcdc;
    }
    .stat-item:nth-child(2n)::before { display: none; }
    
    .stat-item:nth-child(-n+4)::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0; left: 10%; width: 80%; height: 1px; background-color: #dcdcdc;
    }
}

@media (max-width: 575px) {
    .rg-about-stats {
        grid-template-columns: 1fr;
        margin-left: 0;
    }
    /* Remove all internal borders for single column mobile */
    .stat-item::before, .stat-item::after { display: none !important; }
    .stat-item {
        border-bottom: 1px solid #dcdcdc;
        padding: 15px 0;
    }
 
}

@media (max-width: 575px) {
    .rg-about-stats {
        grid-template-columns: 1fr;
    }
    /* Remove all internal borders for single column mobile */
    .stat-item::before, .stat-item::after { display: none !important; }
    .stat-item {
        border-bottom: 1px solid #dcdcdc;
        padding: 15px 0;
    }
   
}

/* ================= 3. INDUSTRIES SERVED ================= */
.rg-industries-sec {
    padding: 4rem 0;
    background-color: #f4f6f8;
}

.rg-industries-sec .rg-sec-headings {
    margin-bottom: 3.5rem;
}

.rg-industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.ind-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.ind-icon {
  width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ind-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ind-card:hover .ind-icon {
    transform: scale(1.15) rotate(5deg);
}

.ind-card span {
    display: block;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

/* RESPONSIVE Adjustments */
@media (max-width: 1199px) {
    .rg-industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .rg-industries-sec {
        padding: 3rem 0;
    }
    .rg-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ================= 4. WHY CHOOSE US BAR ================= */
.rg-why-bar-sec {
    background-color: #0b1d59; /* Theme Dark Blue */
    padding: 4rem 26px;
    position: relative;
}

.rg-why-bar-sec p{
    color: #ffffff;
    font-size: 14px;
}


.rg-why-bar-sec::before{
      content: "";
    position: absolute;
    left: -30px;
    bottom: -15px;
    width: 380px;
    height: 305px;
    background: url(../image/home/truck-loading.svg) no-repeat left bottom;
    background-size: contain;
    opacity: .20;
    pointer-events: none;
    z-index: 0;
}

.why-bar-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    background:#fff;
    border-radius:12px;
    overflow:hidden;
}

.why-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:15px;
    padding:25px;
}

.why-item::after{
    content:"";
    position:absolute;
    right:0;
    top:10px;
    bottom:10px;
    width:1px;
    background:#0b1d59;
}

.why-item::before{
    content:"";
    position:absolute;
    left:10px;
    right:10px;
    bottom:0;
    height:1px;
    background:#0b1d59;
}

.why-item:nth-child(4n)::after{
    display:none;
}



.rg-why-bar-sec .sec-big-title{
    font-size: 34px;
    color: #ffffff;
}
.why-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.why-item:last-child::before{
    display: none;
}
.why-item:last-child::after{
    display: none;
}
.why-item:nth-last-child(2)::before{
    display: none;
}

.why-item:nth-last-child(2)::after{
         content: "";
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #0b1d59;
}


.why-icon {
    color: #2c7849;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    /* Clean fill background for the icon */
    fill: rgba(44, 120, 73, 0.1);
}

.why-item span {
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}


/* ================= 6. FOOTER SECTION ================= */
.rg-footer-sec {
    background-color: #0b1d59; 
}

.footer-links-box {
    padding: 60px 40px 60px 60px;
    height: 100%;
}

.footer-logo-area {
    text-align: left;
}

.footer-logo-area img {
    max-width: 160px;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
}

.footer-about-txt {
    color: #b0b9d1;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links-box h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 2px solid #2c7849;
    padding-bottom: 10px;
    display: inline-block;
}

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

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

.footer-list a {
    color: #b0b9d1;
    text-decoration: none;
    font-size: 14.5px;
    display: inline-block; 
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-list a:hover {
    color: #e97e12;
    transform: translateX(6px); 
}

/* CTA Box (Right) */
.footer-cta-box {
    background-color: #2c7849; 
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-cta-box h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 22px;
}

.footer-cta-box p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-cta-box .rg-btn-primary {
    background-color: #ffffff;
    color: #2c7849;
    width: max-content;
}

.footer-cta-box .rg-btn-primary:hover {
    background-color: #0b1d59;
    color: #ffffff;
}

/* New Contact Section inside Green Box */
.cta-contact-wrap {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-wrap h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

/* White icons for high contrast on green background */
.footer-contact-list li svg {
    color: #ffffff; 
    flex-shrink: 0;
    margin-top: 2px;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-contact-list a:hover {
        color: #e97e12;
    transform: translateX(6px);
}

/* Socials inside Green Box */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #f18920;
    transform: translateY(-3px);
}

/* Locations Bar (Bottom) */
.footer-locations-bar {
    background-color: #07133b;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.loc-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.loc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.loc-list li {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 15px;
}

.loc-list li:last-child {
    border-right: none;
    padding-right: 0;
}

.loc-list a {
    color: #b0b9d1;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.loc-list a:hover {
    color: #e97e12;
    transform: translateX(4px);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    background-color: #040b24; 
    padding: 20px 60px;
}

.footer-bottom p {
    color: #8894b5;
    font-size: 13px;
    margin: 0;
}

.xcodefix-link {
    color: #8894b5;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.xcodefix-link:hover {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-links-box {
        padding: 40px 20px;
    }
    .footer-cta-box {
        padding: 40px 20px;
    }
    .footer-locations-bar {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .loc-list li {
        border-right: none;
        padding: 5px 15px 5px 0;
    }
}

@media (max-width: 767px) {
    
.why-item:nth-child(4n)::after{
     content: "";
    display: inline-block !important;
}

.why-item:nth-last-child(-n+4)::before{
    display:inline-block !important;
}
.footer-list a {
    font-size: 14px;}

    
    .footer-bottom {
        padding: 20px;
        text-align: center;
    }
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}
/* Footer Bottom (Copyright) */
.footer-bottom {
    background-color: #040b24; 
    padding: 20px 60px;
}

.footer-bottom p {
    color: #8894b5;
    font-size: 13px;
    margin: 0;
}

.xcodefix-link {
    color: #8894b5;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.xcodefix-link:hover {
    color: #ffffff;
}
/* ================= LOCATIONS SECTION ================= */
.rg-locations-sec {
    padding: 3rem 26px 4rem;
    background-color: #fafbfe; /* Very soft cool white */
}

.rg-locations-sec .sec-big-title{
    line-height: 1.2;
    font-size: 34px;
    margin-bottom: 1rem;
}


.rg-locations-sec p{
    font-size: 15px;
}


/* Map Image */
.rg-map-img {
    width: 110%;
}

.rg-map-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Flags Grid */
.rg-flags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.flag-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flag-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.flag-card img {
  width: 37px;
    height: 30px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #eeeeee;
    margin-right: 6px;
}

.flag-card span {
    color: #111111;
    font-size: 13px;
    font-weight: 700;
}

.shadow-green { box-shadow: 0 10px 20px rgba(44, 120, 73, 0.35); }
.shadow-blue { box-shadow: 0 10px 20px rgba(11, 29, 89, 0.35); }
.shadow-orange { box-shadow: 0 10px 20px rgba(233, 126, 18, 0.35); }
.shadow-green-alt { box-shadow: 0 10px 20px rgba(44, 120, 73, 0.35); }
.shadow-red-alt { box-shadow: 0 10px 20px rgb(229 75 72 / 41%); }

.border-green { border-bottom: 6px solid #2c78499c; }
.border-blue { border-bottom: 6px solid #0b1d59a6; }
.border-orange { border-bottom: 6px solid #e97e129e; }
.border-green-alt { border-bottom: 6px solid #2c78499e; }
.border-red-alt {
    border-bottom: 6px solid #e23b3875;
}

.bg-red-alt {
    background: linear-gradient(135deg, #df3530, #e64e4b);
}
/* ================= SECTION LAYOUT ================= */
.rg-transport-process {
    padding: 0 0 7rem 26px;
    overflow: hidden;
}

/* ================= TOP AREA ================= */
.process-intro-row {
    margin-bottom: 5rem;
}

.rg-transport-process .sec-title{
    position: relative;
}

.rg-transport-process .sec-title .sec-big-title{
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Faint Map Background via ::before */
.rg-transport-process .sec-title::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150%;
    height: 150%;
    background-image: url('../image/home/world-location-map.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.20;
    z-index: -1;
}

.rg-kicker-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rg-kicker {
  color: #2c7849;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.rg-kickers {
    color: #2c7849;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
}
.rg-kickers::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #2f7d4a;
    display: block;
    margin-left: 4px;
    
}


/* Shaped Image on Right */
.process-img-wrapper {
    width: 100%;
    height: 380px;
    position: relative;
    z-index: 1;
}

.process-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(98% 113% at 100% 0%);
}

/* ================= BOTTOM CARDS & CONNECTORS ================= */
.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: -3rem;
}

.p-card-wrap {
    position: relative;
}

/* The Dotted Connecting Line (Animated) */
.p-card-wrap:not(.last-card)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #b0b9d1 50%, transparent 50%);
    background-size: 12px 2px; /* Dotted effect */
    z-index: 0;
}

/* Flowing animation on line hover */
.p-card-wrap:hover::after {
    animation: flowLine 0.5s linear infinite;
}

@keyframes flowLine {
    to { background-position: 24px 0; }
}

/* The Dot between cards */
.p-dot-wrapper {
    position: absolute;
    top: 50%;
    right: -20px; /* Centers it perfectly in the 40px gap */
    transform: translate(50%, -50%);
    z-index: 2;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Creates the colored border around the dot based on next card color */
.dot-blue { border: 2px solid #0b1d59; }
.dot-orange { border: 2px solid #e97e12; }
.dot-green { border: 2px solid #2c7849; }

/* The actual solid inner dot */
.p-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.dot-blue.p-dot { background-color: #0b1d59; }
.dot-orange.p-dot { background-color: #e97e12; }
.dot-green.p-dot { background-color: #2c7849; }

/* The Card itself */
.p-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 1px -1px 7px 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-card-wrap:hover .p-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Floating Top Icon */
.p-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.p-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Icon Spin Animation */
.p-card-wrap:hover .p-icon svg {
    transform: rotate(360deg);
}

/* Card Typography */
.p-num {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.phone-group {
    align-items: flex-start;
}

.phone-group .phone-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-group .phone-list a {
    display: block;
}

.p-card h4 {
    color: #0b1d59;
    font-size: 21px;
    font-weight: 700;
}

.p-card p {
margin: 0;
font-size: 14px;
}

/* ================= CLIENTS GRID SECTION ================= */
.rg-clients-grid-sec {
    padding: 4rem 0;
    background-color: #ffffff;
}

.rg-clients-grid-sec .rg-btn-primary {
    font-size: 11px;
    padding: 14px 16px;}

.rg-clients-grid-sec .sec-title{
    margin-bottom: 1.5rem;
}

.rg-clients-grid-sec .sec-big-title{
    font-size: 33px;
}

label.error {
    color: red;
    font-size: 13px;
}

/* ================= RIGHT SIDE GRID ================= */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-left: 50px; 
}

.client-logo-box {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.client-logo-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.client-logo-box:hover img {
    transform: scale(1.1);
}




@media (max-width: 767px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-logo-box {
        padding: 10px 10px;
            justify-content: center;
    }
}

/* ================= VARIABLES & SETUP ================= */
.rg-process-circle-sec {
    padding: 3rem 0;
    background-color: transparent;
    overflow: hidden;
}

/* ================= THE MAIN LAYOUT GRID ================= */
.process-master-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.process-center-img {
    flex: 0 0 35%;
    max-width: 35%;
    text-align: center;
}

.process-center-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.process-side {
    flex: 0 0 30%; 
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.process-side.left-side .proc-side-item {
    flex-direction: row-reverse;
    text-align: right;
}

/* ================= INDIVIDUAL ITEMS ================= */
.proc-side-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-bottom: 2px solid transparent; /* Ready for hover */
    transition: all 0.3s ease;
    border-radius: 8px; 
}

.proc-side-content {
    flex-grow: 1;
}

.section-kicker{
    display: inline-flex;
        color: #2c7849;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.section-kicker::before{
    content: "";
    width: 45px;
    height: 2px;
    background: linear-gradient(to right, #2c7849, #78c296);
    border-radius: 10px;
}


.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #111111; /* Hardcoded to black */
    margin-bottom: 6px;
    line-height: 1.2;
}

.proc-side-item p {
    margin: 0;
}

/* ================= THE ICON & CONTINUOUS ORBIT ANIMATION ================= */
.proc-orb-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proc-orb-icon svg {
    width: 33px;
    height: 33px;
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease;
}

.orb-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid; 
    z-index: 1;
    animation: spinContinuous 4s linear infinite;
    animation-play-state: paused; 
}

.orb-dot {
    position: absolute;
    top: -4px; 
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@keyframes spinContinuous {
    100% { transform: rotate(360deg); }
}

.proc-side-item:hover .orb-ring {
    animation-play-state: running;
}

.proc-side-item:hover .proc-orb-icon svg {
    transform: scale(1.15);
}




.theme-blue .proc-orb-icon { background-color: rgba(11, 29, 89, 0.08); color: #0b1d59; }
.theme-blue .orb-dot { background-color: #0b1d59; }
.theme-blue .orb-ring { border-color: rgba(11, 29, 89, 0.2); }



.theme-orange .proc-orb-icon { background-color: rgba(233, 126, 18, 0.08); color: #e97e12; }
.theme-orange .orb-dot { background-color: #e97e12; }
.theme-orange .orb-ring { border-color: rgba(233, 126, 18, 0.2); }



.theme-green .proc-orb-icon { background-color: rgba(44, 120, 73, 0.08); color: #2c7849; }
.theme-green .orb-dot { background-color: #2c7849; }
.theme-green .orb-ring { border-color: rgba(44, 120, 73, 0.2); }



.theme-red .proc-orb-icon { background-color: rgba(225, 54, 48, 0.08); color: #e13630; }
.theme-red .orb-dot { background-color: #e13630; }
.theme-red .orb-ring { border-color: rgba(225, 54, 48, 0.2); }

    /* ================= OVERALL SECTION ================= */
.home-page-form {
    position: relative;
    background-color: #f4f6f8; /* Light gray to blend with the bottom of the card */
    padding-bottom: 6rem;
}

/* ================= PARALLAX BACKGROUND ================= */
.full-parralox {
    position: relative;
    padding: 107px 0 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../image/home/best-land-shippers-uae.webp');
    background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

/* 1. Dark Overlay */
.full-parralox::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(11, 29, 89, 0.85); /* The exact #0b1d59 overlay */
    z-index: 1;
}

/* 2. Dotted Grid Pattern Overlay */
.full-parralox::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
      background: repeating-linear-gradient(135deg, rgb(255 255 255 / 5%) 0px, rgb(255 255 255 / 7%) 1.5px, transparent 1px, #00000000 6px);
    z-index: 1;
}


.home-page-form .rg-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #f28c24; /* Matches the orange/red from screenshot */
    font-size: 14px;
    font-weight: 700;

}


.home-page-form .rg-kicker::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='18' viewBox='0 0 30 18' fill='none'%3E%3Cpath fill='%23f28c24' d='M8.125 15.429h-2.5a.62.62 0 0 1-.442-.189.65.65 0 0 1 0-.909.62.62 0 0 1 .442-.188h2.5c.166 0 .325.068.442.188a.65.65 0 0 1 0 .91.62.62 0 0 1-.442.188m20.313 0h-1.563a.62.62 0 0 1-.442-.189.65.65 0 0 1 0-.909.62.62 0 0 1 .442-.188h1.044l.842-4.618c-.011-2.364-1.973-4.382-4.386-4.382h-4.104l-1.989 9h3.593c.166 0 .325.068.442.188a.653.653 0 0 1 0 .91.62.62 0 0 1-.442.188H17.5a.61.61 0 0 1-.488-.242.65.65 0 0 1-.122-.543L19.162 4.36a.65.65 0 0 1 .22-.361.6.6 0 0 1 .39-.14h4.603C27.476 3.857 30 6.452 30 9.642l-.949 5.261a.65.65 0 0 1-.214.377.6.6 0 0 1-.4.148'/%3E%3Cpath fill='%23f28c24' d='M24.375 18c-1.722 0-3.125-1.441-3.125-3.214s1.403-3.215 3.125-3.215c1.723 0 3.125 1.442 3.125 3.215S26.098 18 24.375 18m0-5.143c-1.034 0-1.875.866-1.875 1.929s.841 1.928 1.875 1.928 1.875-.865 1.875-1.928-.841-1.929-1.875-1.929M10.625 18C8.903 18 7.5 16.559 7.5 14.786s1.403-3.215 3.125-3.215c1.723 0 3.125 1.442 3.125 3.215S12.348 18 10.625 18m0-5.143c-1.034 0-1.875.866-1.875 1.929s.841 1.928 1.875 1.928 1.875-.865 1.875-1.928c0-1.064-.841-1.929-1.875-1.929m-2.5-9h-5a.62.62 0 0 1-.442-.188.65.65 0 0 1 0-.91.62.62 0 0 1 .442-.188h5c.166 0 .325.068.442.189a.65.65 0 0 1 0 .909.62.62 0 0 1-.442.188m0 3.857h-6.25a.62.62 0 0 1-.442-.188.65.65 0 0 1 0-.91.62.62 0 0 1 .442-.187h6.25c.166 0 .325.067.442.188a.65.65 0 0 1 0 .909.62.62 0 0 1-.442.188m0 3.857h-7.5a.62.62 0 0 1-.442-.188.65.65 0 0 1 0-.909.62.62 0 0 1 .442-.188h7.5c.166 0 .325.067.442.188a.65.65 0 0 1 0 .91.62.62 0 0 1-.442.187'/%3E%3Cpath fill='%23f28c24' d='M17.5 15.429h-4.375a.62.62 0 0 1-.442-.189.65.65 0 0 1 0-.909.62.62 0 0 1 .442-.188H17l2.84-12.857H5.625a.62.62 0 0 1-.442-.189.65.65 0 0 1 0-.909A.62.62 0 0 1 5.625 0h15a.61.61 0 0 1 .488.241.65.65 0 0 1 .122.543L18.11 14.927a.65.65 0 0 1-.22.36.6.6 0 0 1-.39.142'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}



.home-page-form .sec-big-title {
   color: #ffffff;
    font-size: 44px;
    font-weight: 600;
}


.form-overlap-container {
    position: relative;
    z-index: 5;
    margin-top: -120px; 
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 20px; 
    padding: 60px 80px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ================= CUSTOM RADIO BUTTONS ================= */
.radio-group-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.custom-radio {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 15px;
    color: #555555;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-submit-area{
    margin-top: 3rem;
}

.radio-mark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 2px solid #dcdcdc;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.custom-radio:hover input ~ .radio-mark {
    border-color: #ff4d4d;
}

.custom-radio input:checked ~ .radio-mark {
    border-color: #ff4d4d;
}

.custom-radio input:checked ~ .radio-mark:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d4d;
}

/* ================= INPUT FIELDS ================= */
.input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
}

.rglt-input {
    width: 100%;
    background-color: #f7f7f7; /* Grey background matching screenshot */
    border: 1px solid transparent;
    border-radius: 14px; /* Pill shape */
    padding: 14px 25px;
    font-size: 14px;
    color: #333333;
    transition: all 0.3s ease;
}

.rglt-input::placeholder {
    color: #999999;
}

select.rglt-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 40px;
}

/* ================= SUBMIT BUTTON (Circle with Up Arrow) ================= */
.submit-circle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #ff4d4d;
    color: #ff4d4d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.15);
}

.submit-circle-btn:hover {
    background-color: #ff4d4d;
    color: #ffffff;
    transform: translateY(-3px);
}


@media (max-width: 767px) {
    .full-parralox {
        padding: 48px 0 127px;
        background-attachment: scroll; /* Disable parallax on mobile to prevent jitter */
    }
    
    .form-title {
    font-size: 16px;
        text-align: center;
    }
    
    .input-label {
    font-size: 13px;}
    .rglt-input{
        font-size: 13px;
    }
    
    .form-submit-area{
        margin-top: 1.5rem;
    }
    
    .home-page-form .sec-big-title {
        font-size: 20px;
    }
    .form-overlap-container {
        margin-top: -92px;
    }
    .contact-form-card {
        padding: 30px 20px;
    }
}


@media (max-width: 1399px) {
    .process-master-grid { gap: 20px; }
    .process-side { flex: 0 0 32%; }
}

@media (max-width: 1199px) {
    .process-master-grid {
        flex-direction: column;
    }
    .process-center-img {
        max-width: 60%;
        order: -1; 
    }
    .process-side {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .process-side.left-side { order: 2; }
    .process-side.right-side { order: 3; }
    
    .process-side.left-side .proc-side-item {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .process-side {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .process-center-img { max-width: 90%; }
}



@media (max-width: 768px) {
       .rg-header-cta .rg-btn-primary {
      
        right: 53px;
        position: absolute;
        gap: 6px;
        bottom: 24px;
    }
    .rg-header-cta {
         display: block !important; 
        position: relative;
    }
    .footer-bottom {
    padding: 14px 0;
}
.footer-links-box h4 {
    font-size: 17px;
}

.footer-list li {
    margin-bottom: 10px;
}
.footer-list {
    margin-bottom: 15px;
}
.footer-links-box h4 {
    margin-bottom: 15px;
}
.footer-cta-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
}
.cta-contact-wrap h4 {
    font-size: 17px;
}
.cta-contact-wrap {
    margin-top: 22px;
    padding-top: 22px;
}

p{
    font-size:14px;
}
.rg-testi-card::before, .rg-testi-card::after {
    width: 35px;
    height: 35px;
}


.rg-testi-card {
    padding: 50px 34px;
}


.rg-testimonials-sec .swiper-horizontal {
    padding-bottom: 50px;
}

.footer-logo-area img {
    max-width: 130px;
}
.rg-testimonials-sec {
    padding: 2rem 0;
}

.rg-testi-pagination .swiper-pagination-bullet {
    width: 50px;
}

.rg-transport-process {
    padding: 2rem 0 3rem;
}

.process-cards-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 47px;
}
.p-card h4 {
    color: #0b1d59;
    font-size: 18px;
}

.process-img-wrapper {
    height: 250px;
}
.process-img-wrapper img {
 
    clip-path: unset;
}
.rg-transport-process .sec-title .sec-big-title {
    text-align: center;
}

.rg-kickers {
    margin-left: 50px;
}
.rg-locations-sec {
    padding: 3rem 0;
}

.rg-locations-sec .sec-big-title {
    font-size: 19px;
}

.rg-why-bar-sec .sec-big-title {
    font-size: 18px;
}
.why-icon {
    width: 26px;
    height: 26px;
}
.why-item {
    gap: 10px;
    padding: 15px;
}
.rg-why-bar-sec {
    padding: 4rem 0;
}
.rg-why-bar-sec {
    padding: 2rem 0;
}

.why-bar-grid {
    grid-template-columns: repeat(2, 1fr);
}
.rg-why-bar-sec .sec-title{
    margin-bottom:2rem;
}


}

/* ================= RESPONSIVE ADJUSTMENTS ================= */