@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
:root {
    --orange-color: #F18916;
    --blue-color: #073247;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Montserrat,sans-serif;
    background-color: #f0f0f0; 
}
p {
    letter-spacing: 0.2px;
    font-size: 16px;
}
a {
    all: unset;
}
.d-block {
    display: block !important;
}
.d-mb-block {
    display: none !important;
}
.hidden {
    display: none;
}
.alert-btn {
    margin-top: 5px;
    height: 35px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    border: none;
    position: relative;
}
.alert-btn::after {
    content: 'X';
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 16px;
    transform: translateY(-50%);
    font-weight: 500;
    cursor: pointer;
}
.alert-btn.alert-success {
    background-color: forestgreen;
}
.alert-btn.alert-danger {
    background-color: darkred;
}
#loader {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/background.png');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    animation: moveBg 5s linear infinite;

}
@keyframes moveBg {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -100% 0;
    }
}
.load-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
}
#fullpage {
    visibility: hidden;
    opacity: 0;
}
section {
    height: 100vh;
}
.banner-section {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}
.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    z-index: 999;
    top: 0;
}
.menu-bar .logo img {
    width: 40%;
    padding-left: 40px;
    cursor: pointer;
}
.menu-bar .menu-right {
    width: 100%;
}
.menu-bar .top-bar {
    background-color:var(--blue-color);
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border-radius: 0 0 0 10px;
}
.menu-bar .top-bar .contact-info {
    display: flex;
    gap: 20px;
}
.menu-bar .top-bar .contact-info i {
    margin-right: 5px;
}
.menu-bar .top-bar .social-icons {
    display: flex;
    gap: 15px;
}
.menu-bar .top-bar .social-icons a {
    color: #fff;
    text-decoration: none;
}
.menu-bar .bottom-bar {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}
.menu-bar .bottom-bar a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 14px;
    transition: transform 0.3s ease;
}
.menu-bar .bottom-bar .dropdown {
    position: relative;
}
.menu-bar .bottom-bar .dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 160px;
    z-index: 1;
}
.menu-bar .bottom-bar .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #000;
    white-space: nowrap;
    font-size: 12px;
}
.menu-bar .bottom-bar .dropdown-menu a:hover {
    background-color: #f1f1f1;
}
.menu-bar .bottom-bar a:hover, 
.menu-bar .bottom-bar a.active {
    color: var(--orange-color);
    cursor: pointer;
    transform: scale(1.1);
}
.menu-bar .bottom-bar .has-submenu {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-bar .bottom-bar .arrow {
    font-size: 14px;
    color: #1a1a1a;
}
.menu-bar .bottom-bar .submenu-wrapper {
    position: relative;
}
.menu-bar .bottom-bar .submenu {
    position: absolute;
    top: 0;
    right: 100%;
    left: auto;
    background: white;
    min-width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    right: calc(100% + 1px);
    max-height: 80vh;   
    overflow-y: auto;
}
.menu-bar .bottom-bar .submenu a {
    padding: 10px;
    white-space: nowrap;
}
.menu-bar .bottom-bar .submenu-wrapper:hover .submenu {
    display: flex;
}
.video-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.progress-bar {
    position: absolute;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: var(--orange-color);
    opacity: 1;
}
.banner-text {
    text-transform: uppercase;
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}
.banner-text .label {
    font-size: 22px;
    color: #fff;
    position: relative;
}
.banner-text .label::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    bottom: -3px;
    left: 0;
    background-color: #F18916;
}
/*.banner-text .main-text {
    -webkit-text-stroke: 0.5px #F18916;
}*/
.banner-text .overlay {
    /*padding: 0 20px 10px;*/
    /*background: rgba(0, 0, 0, 0.1);*/ /* Matte black with transparency */
    /*box-sizing: border-box;*/
    /*backdrop-filter: blur(3px);*/ /* Frosted glass effect */
    /*border-radius: 5px;*/ /* Rounded corners */
    /*-webkit-backdrop-filter: blur(3px);*/ /* For Safari */
}
.banner-section {
    position: relative;
}
.text-item {
    position: absolute;
    top: 40%;
    left: 18%;
    transform: translateY(-40%);
    opacity: 0;
    transform: rotateX(90deg);
    transition: all 0.7s ease;
}
.text-item.active {
    opacity: 1;
    transform: rotateX(0);
}
.about-us-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                      url('../images/world-map.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-us-section .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-top: 0%;
}
.about-us-content {
    padding-right: 75px;
}
.about-us-content h1 {
    font-size: 2.5rem;
    color: var(--blue-color);
}
.about-us-content p {
    color: #555;
}
.about-us-section .stats {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    background-color: #FF3A3A;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}
.about-us-section .stat {
    font-size: 24px;
}
.about-us-section video {
    width: 45%;
    height: 85%;
}
.stat .number {
    font-size: 48px;
    font-weight: bold;
}
.services-section {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100vh;
    background-color: #f9f9f9;
}
.services-section .left-section {
    width: 25%;
    padding: 40px;
}
.services-section .left-section h1 {
    font-size: 40px;
    color: #253F55;
}
.services-section .left-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #828282;
}
.services-section .left-section p {
    font-size: 16px;
    color: #828282;
    margin-top: 20px;
}
.learn-more {
    padding: 10px 20px;
    background-color: var(--orange-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
}
.learn-more:hover {
    background-color: #e55e00;
}
.services-section .right-section {
    display: flex;
    width: 75%;
    height: 100%;
}
.services-section .tabs {
    margin-top: 40px;
    min-width: 350px;
}
.services-section .tab-content {
    width: 100%;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-image: url('../images/road-freight.jpg');
}
.services-section .tab {
    font-size: 18px;
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid #b3b3b3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #f9f9f9;
}
.services-section .tab:nth-child(1) {
    background-color: #073247;
    color: #fff;
}
.services-section .tab .icon {
    margin-right: 10px;
    font-size: 20px;
}
.services-section .title {
    font-size: 26px;
}
.services-section .excerpt {
    display: none;
}
.services-section .tab:nth-child(1) .excerpt {
    display: block;
}
.services-section .excerpt p {
    margin-bottom: 5px;
}
.services-section .excerpt a {
    color: #fff;
    text-decoration: none;
    position: relative;
}
.services-section .excerpt a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #F18916;
}
.testimonials-section {
    position: relative;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8); 
}
.testimonials-section .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonials-section .left-content {
    color: #000;
    width: 25%;
}
.testimonials-section .quote-icon {
    position: absolute;
    font-size: 200px;
    color: #F18916;
    left: 75px;
    top: 50px;
    z-index: 9;
}
.testimonials-section .left-content h2 {
    font-size: 2.5rem;
    color: var(--blue-color);
    margin-bottom: 20px;
}
.testimonial-slider {
    width: 70%;
}
.testimonial-slider .item {
    background-color: rgba(0, 0, 50, 0.8); 
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 0 7.5px;
}
.testimonial-slider .item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
.testimonial-slider .item .quote {
    font-size: 30px;
    color: #F18916;
    position: absolute;
    top: 10px;
    left: 20px;
}
.testimonial-slider .item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: bold;
}
.testimonial-slider .item .company {
    font-size: 0.9rem;
    color: #c2b85e;
    font-weight: 600;
}
.testimonials-section .owl-dots {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;

}
.owl-dots button.owl-dot{
    height: 10px;
    width: 10px;
    position: relative;
    background-color: #CCC;
    border-radius: 50%;

}
.owl-dots button.owl-dot.active span, 
.owl-dots button.owl-dot:hover span {
    background-color: #F18916;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 0px;
    left:0px;
}
.home-page .articles-section {
    height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 30px 30px;
    background-color: white;
}
.home-page .articles-section .news-header {
    font-size: 2.5rem;
    color: var(--blue-color);
    margin-bottom: 20px;
    padding-left: 20px;
}
.home-page .articles-section .news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 30px;
}
.home-page .articles-section .news-item {
    padding: 20px;
} 
.home-page .articles-section .news-item:nth-child(1),
.home-page .articles-section .news-item:nth-child(2) {
    position: relative;
    padding-bottom: 10px; 
    margin-bottom: 0;
}
.home-page .articles-section .news-item:nth-child(1)::after,
.home-page .articles-section .news-item:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: -0px; 
    left: 20px;
    width: 90%;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto;
}
.home-page .articles-section .news-item h3 {
    font-size: 1.1rem;
    color: var(--blue-color);
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
}
.home-page .articles-section .news-item p {
    font-size: 1rem;
    color: #555;
    cursor: pointer;
}
.home-page .articles-section .news-item time {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}
.home-page .articles-section .read-time {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}
.home-page .articles-section .read-time i {
    margin-right: 5px;
}
.home-page .articles-section .learn-more {
    width: 150px;
    margin: 0 auto;
}

/*About Us Page*/
.about-us-page .menu-bar {
    position: fixed;
}
.about-us-page .banner-section {
    margin-bottom: 175px;
}
.about-us-page .banner {
    position: relative;
    width: 100%;
    height: 90vh;
    margin: 0 auto;
    margin: 0 25px;
    margin-top: 90px;
}
.about-us-page .banner-section .image-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75%;
    height: 100%;
    border-radius: 12px;
    background-image: url(../images/about_us.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.about-us-page .banner-section .colored-block {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 400px;
    background-color: #1a73e8; 
    border-radius: 12px;
    z-index: 0;
}
.about-us-page .banner-section .white-card {
    position: absolute;
    bottom: -100px;
    left: 32%;
    background-color: white;
    padding: 20px;
    width: 650px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    color: var(--blue-color);
}
.about-us-page .banner-section .white-card h1 {
    margin: 0;
    font-size: 46px;
}
.about-us-page .banner-section .white-card p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.3rem;
}
.about-us-page .banner-section .white-card a {
    color: #1a73e8;
    text-decoration: none;
}
.about-us-page .why-choose-us {
  text-align: center;
  padding: 10px 30px 40px;
  height: unset;
  color: var(--blue-color);
}
.about-us-page .why-choose-us h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}
.about-us-page .features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 50px;
}
.about-us-page .feature-block {
    width: 45%;
    text-align: left;
}
.about-us-page .feature-block h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.about-us-page .feature-block ul {
    list-style-type: none;
    padding: 0;
}
.about-us-page .feature-block ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}
.about-us-page .feature-block ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--orange-color);
}
.about-us-page .statistics {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}
.about-us-page .stat-block {
    background-color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 22%;
}
.about-us-page .stat-block h3 {
    font-size: 36px;
    color: #1a73e8;
    margin-bottom: 10px;
}
.about-us-page .stat-block p {
    font-size: 16px;
    font-weight: bold;
    color: var(--blue-color);
}
.team-section {
    text-align: center;
    padding: 50px 0 75px;
    background-color: #1C1C1C;
    height: unset;
}
.team-section .container {
    max-width: 1300px;
}
.team-section h1 {
    color: white;
    font-size: 2rem;
}
.team-section h3 {
    color: white;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.team-section .team-grid {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}
.team-section .team-card {
    flex: 0 1 calc(25% - 30px); /* 25% width minus gap compensation */
    box-sizing: border-box;
    background-color: #fff;
    /*width: 250px;*/
    height: 400px;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}
.team-section .card-front {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}
.team-section .card-front img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
}
.team-section .card-front h4 {
    margin: 10px 0 5px;
    font-size: 20px;
}
.team-section .card-front p {
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
}
.team-section .social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.team-section .social-links a {
    font-size: 18px;
    color: #555;
}
.team-section .social-links a:hover {
    color: #FF4500;
}
.team-section .card-back {
    background-color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.team-section .card-back p {
    font-size: 16px;
    color: var(--blue-color);
    line-height: 1.2rem;
}
.vision-mission-section {
    background-color: #f5f7fa;
    padding: 40px 20px;
}
.vision-mission-section .container {
    max-width: 1200px;
    margin: auto;
}
.vision-mission-section .section-title {
    text-align: center;
    font-size: 32px;
    color: #002b45;
    margin-bottom: 40px;
}
.vision-mission-section .vision-mission-block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.vision-mission-section .vision,
.vision-mission-section .mission {
    flex: 1 1 45%;
}
.vision-mission-section .vision h3,
.vision-mission-section .mission h3,
.vision-mission-section .core-values h3 {
    color: #002b45;
    font-size: 22px;
    margin-bottom: 10px;
}
.vision-mission-section .vision p,
.vision-mission-section .mission p,
.vision-mission-section .core-values ul {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}
.vision-mission-section .core-values ul {
    padding-left: 20px;
    list-style: disc;
}
.vision-mission-section .core-values li {
  margin-bottom: 10px;
}
.awards-gallery {
    padding: 40px 20px 60px;
    background-color: #f9f9f9;
    text-align: center;
    height: unset;
}
.awards-gallery h2 {
    font-size: 32px;
    color: #002d4f;
    margin-bottom: 40px;
}
.awards-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}
.awards-gallery .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.awards-gallery .gallery-item img:hover {
    transform: scale(1.05);
}
/*About Us Page - END*/

/*Services Page*/
.services-page .menu-bar {
    position: fixed;
}
.services-page .banner-section {
    margin-bottom: 50px;
}
.services-page .banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin: 0 25px;
    margin-top: 90px;
}
.services-page .banner-section .image-container {
    position: absolute;
    top: 175px;
    transform: translateY(-50%);
    width: 100%;
    height: 62vh;
    border-radius: 12px;
    background-image: url(../images/services_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}
.services-page .banner-title {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 50px;
}
.services-page .services-icons {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    top: 50%;
    width: 100%;
}
.services-page .services-icons .icon-card {
    background-color: white;
    padding: 20px;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 
.services-page .services-icons .icon-card h5 {
    margin: 5px 0;
}
.services-page .our-expertise {
    height: auto;
    background-color: #fff;
    text-align: center;
}
.services-page .our-expertise  .title {
    display: inline-block;
    font-size: 32px;
    background-color: var(--orange-color);
    color: #fff;
    padding: 15px;
    margin: 50px 0;
}
.services-page .our-expertise .img {
    background-image: url('../images/expertise.png');
    background-size: cover;
    background-position: center;
    height: 600px;
}
.services-page .service-section {
    padding: 50px;
    height: unset;
    background-color: #fff;
}
.services-page .service-section .tab-links {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}
.services-page .service-section .tab-links li {
    width: 175px;
    height: 35px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #1a73e8;
    color: var(--blue-color);
}
.services-page .service-section .tab-links li:hover,
.services-page .service-section .tab-links li.active {
    background-color: #1a73e8;
    color: #fff;
}
.services-page .service-section .tab {
    padding: 20px 50px 0 50px;
}

.services-page .service-section .tab img {
    width: 100%;
    padding: 20px 0;
}
.services-page .service-section .tab ul {
    font-size: 18px;
    color: #1a73e8;
}
.services-page .service-section .road-services {
    display: flex;
    justify-content: space-around;
}
.services-page .service-section .road-services ul {
    margin-top: 0px;
}
.services-page .service-section .tab {
    font-size: 16px;
    line-height: 1.4rem;
    color: var(--blue-color);
}
.services-page .service-section .sea-tab,
.services-page .service-section .air-tab {
    display: flex;
    justify-content: space-between;
    gap: 75px;
}
.services-page .service-section .sea-tab .content,
.services-page .service-section .air-tab .content {
    width: 75%;
    padding-top: 50px;
}
.services-page .service-section table,
.services-page .service-section th,
.services-page .service-section td {
    border: 1px solid var(--blue-color);
    border-collapse: collapse;
}
.services-page .service-section table {
    margin: 0 auto;
}
.services-page .service-section th {
    padding: 7px;
    color: var(--blue-color);
}
.services-page .service-section td {
    padding: 5px;
    font-size: 18px;
    color: #1a73e8;
}
.services-page #railTab img {
    padding-bottom: 35px;
}
.services-page .coastal-fwd-service {
    padding: 15px 50px;
    color: var(--blue-color);
}
.services-page .consolidation {
    background-image: url('../images/consolidation-bg.png');
    background-repeat: repeat;
    text-align: center;
    height: auto;
    padding: 50px;
}
.services-page .consolidation img {
    width: 50%;
}
.services-page .custom-clearance-section {
    background-image: linear-gradient(to right, #3681c4, #0b6fbf);
    padding: 40px 100px;
    color: white;
    height: auto;
}
.services-page .custom-clearance-section .content {
    margin: 0 auto;
}
.services-page .custom-clearance-section h1 {
    margin: 0 auto;
    font-size: 32px;

}
.services-page .custom-clearance-section h1 span {
    position: relative;
}
.services-page .custom-clearance-section h1 span::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -3px;
   height: 3px;
   width: 100%;
   background-color: var(--orange-color);
}
.services-page .custom-clearance-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.services-page .two-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.services-page .two-col .content {
    width: 100%;
}
.services-page .custom-clearance-section img {
    width: 100%;
    height: 300px;
}
/*Services Page - END*/

/*Contact Page*/
.contact-page .menu-bar {
    position: fixed;
}
.contact-page .banner-section {
    margin-bottom: 0px;
    height: 90vh;
}
.contact-page .banner {
    width: 100%;
    margin: 0 auto;
    margin: 0 25px;
    margin-top: 90px;
}
.contact-page .banner-section .image-container {
    margin-top: 0px;
    width: 100%;
    height: 62vh;
    border-radius: 12px;
    background-image: url(../images/contact_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    position: relative;
}
.contact-page .banner-section h1 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
}
.contact-page .company-details {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 75px;
    height: auto;
    padding: 0 30px;
    width: 90vw;
    margin: 0 auto;
    margin-bottom: 50px;
}
.contact-page .c-detail {
    width: 50%;
    position: relative;
    color: var(--blue-color);
}
.contact-page .c-detail h2 {
    position: relative;
}
.contact-page .c-detail h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 3px;
    width: 75px;
    background-color: var(--orange-color);
}
.contact-page .c-detail .title {
    font-weight: bold;
}
.contact-page .c-detail ul li {
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-page .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
}
.contact-page .contact-container .map-container {
    width: 100%;
    height: 100%;
}
#map {
    height: 100%;
    width: 100%;
}
.contact-page .form-container {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    background-image: url('../images/sea-freight.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
}
.contact-page .form-container::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 71, 89, 0.8);
    color: #fff;
    z-index: 0;
}
.contact-page .form-container h2 {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-size: 26px;
}
.contact-page .form-container .contact-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding: 10px 20px;
}
.contact-page .form-container .contact-form form {
    width: 100%;
}
.contact-page .grp-pe {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
.contact-page .form-container .form-group {
    margin-bottom: 15px;
}
.contact-page .form-container label {
    display: block;
    margin-bottom: 5px;
}
.contact-page .form-container input[type="text"],
.contact-page .form-container  input[type="email"], 
.contact-page .form-container textarea {
    width: 97%;
    padding: 10px;
    border: 1px solid rgb(241 137 22 / 70%);
    color: #fff;
    background: transparent;
}
.contact-page .grp-pe .form-group {
    width: 100%;
}
.contact-page .form-container textarea {
    resize: vertical;
    min-height: 100px;
}
:focus-visible {
    outline: none;
}
.contact-page .form-container .submit-btn {
    background-color: var(--orange-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
}
.contact-page .branches {
    padding: 50px 20px;
    height: auto;
    text-align: center;
    background-color: #fbfbfb;
}
.contact-page .branches h1 {
    text-align: center;
    font-size: 40px;
    color: var(--blue-color);
    position: relative;
    display: inline-block;
}
.contact-page .branches h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    height: 3px;
    width: 100px;
    background-color: var(--orange-color);
}
.contact-page .locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px 0 50px;
}
.contact-page .locations .card {
    text-align: left;
    padding: 15px;
    background-color: var(--blue-color);
    color: #fff;
}
.contact-page .locations .card h4 {
    font-size: 18px;
}
.contact-page .locations .card li {
    margin-bottom: 15px;
}
.contact-page .locations .card ul {
    list-style: none;
    padding-left: 10px;
}
.contact-page .locations .card li .fas {
    margin-right: 10px;
    color: var(--orange-color);
}
.contact-page .locations .card li .addr {
    line-height: 1.4;
}
/*Contact Page - END*/


/*Article Page */
.article-page .menu-bar {
    position: fixed;
}
.article-page .banner-section {
    margin-bottom: 0px;
    height: unset;
    background-color: #fff;
}
.article-page .banner {
    width: 100%;
    margin: 0 auto;
    margin: 0 25px;
    margin-top: 90px;
}
.article-page .banner-section .image-container {
    margin-top: 0px;
    width: 100%;
    height: 62vh;
    border-radius: 12px;
    background-image: url(../images/articles_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    position: relative;
}
.article-page .banner-section h1 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: var(--blue-color);
}
.article-page .articles-section {
    height: auto;
    padding: 50px 100px;
    background-color: white;
}
.article-page .articles-section .news-item {
    position: relative;
    padding: 30px 0; 
    margin-bottom: 0;
    cursor: pointer;
}
.article-page .articles-section .news-item::after {
    content: '';
    position: absolute;
    bottom: -0px; 
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto;
}
.article-page .articles-section .news-item:last-child::after {
    background-color: #fff;
}

.article-details-page .banner-section {
    height: unset;
    margin-bottom: 100px;
}
.article-details-page .article-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    color: var(--blue-color);
}
.article-details-page .article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.article-details-page .article-content {
    margin-top: 20px;
}
.article-details-page .article-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    text-transform: capitalize;
}
.article-details-page .article-content .author {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}
.article-details-page .article-content .author-name {
    font-weight: bold;
}
.article-details-page .article-content .publish-date {
    font-style: italic;
}
.article-details-page .article-text p {
    line-height: 1.6;
    margin-bottom: 20px;
}
.article-details-page .other-articles {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container {
        padding: 15px;
    }

    .blog-content h1 {
        font-size: 2rem;
    }

    .blog-content .author {
        font-size: 0.9rem;
    }

    .other-blogs h2 {
        font-size: 1.6rem;
    }
}

/*Article Page - END*/

footer {
    background-color: #073247;
    color: white;
    padding: 0px 20px;
    padding-bottom: 0px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Arial, sans-serif;
}
footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 430px;
    padding-top: 50px;
}
footer .left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    padding: 20px;
}
footer .left-section h2 {
    margin-bottom: 0px;
}
footer .left-section ul {
    padding-left: 0px;
}
footer .left-section li {
    padding-top: 12px;
    list-style: none;
}
footer .left-section li i {
    margin-right: 7px;
}
footer .middle-section, footer .right-section {
    width: 30%;
}
footer .logo {
    display: flex;
    align-items: center;
}
footer .logo img {
    width: 100px;
}
footer .subscribe h4 {
    margin-bottom: 10px;
}
footer .subscribe-input {
    display: flex;
    align-items: center;
}
footer .subscribe-input input {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 4px;
}
footer .subscribe-input button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}
footer .footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
footer .footer-column h5 {
    margin-bottom: 15px;
    font-size: 18px;
}
footer .footer-column ul {
    list-style: none;
    padding-left: 0px;
}
footer .footer-column ul li {
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
}
footer .right-section h4 {
    margin-bottom: 5px;
    font-size: 14px;
}
footer .right-section input, footer .right-section select, footer .right-section textarea {
    display: block;
    width: 85%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}
footer .right-section textarea {
    height: 80px;
    resize: none;
}
footer .submit-btn {
    background-color: #FF6F42;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-bottom p {
    margin: 0;
}
footer .social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}
footer .social-media span {
    margin-right: 10px;
}
footer .social-media a img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}
footer .cmp-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}
footer .cmp-details .top{ 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.fab {
    cursor: pointer;
}

.mb-menu-container {
    display: none;
}

#mobilePage {
    display: none !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    max-height: 90vh; 
    overflow-y: auto;  
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}
.modal .close-modal {
    position: absolute;
    top: 15px; 
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}
#pdfModal .close-modal {
    top: 3px;
}
#grievancesModal .contact-container {
    display: flex;
    gap: 30px;
}
#grievancesModal .contact-card {
    flex: 1 1 45%;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    min-height: 53vh;
}

#grievancesModal .contact-card h3 {
    margin-top: 0;
    color: #0a3d62;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

.policy-submenu-wrapper .submenu a:hover {
    padding-left: 40px;
}

.investor-page .accordion {
    padding: 125px 40px 50px;
    background-color: #fff;
}
.accordion-item,
.accordion {
    color: var(--blue-color);
}
.accordion-item {
    margin-bottom: 15px;
}
.accordion-header {
    cursor: pointer;
    padding: 20px 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    background: #f2f2f2;
}
.accordion-header:hover {
    background-color: #e9e9e9;
}
.accordion-body {
    display: none;
    padding: 10px 20px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}
.accordion-body.show {
    display: block;
}
.accordion .documents {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
}
.accordion .document-box {
    background: #f9f9f9;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    cursor: pointer;
}
.sub-accordion {
    margin-top: 15px;
    border-top: 1px solid #ccc;
}
.sub-accordion .accordion-header {
    font-size: 14px;
    padding: 10px 15px;
    background: #f7f7f7;
}
.sub-accordion .accordion-body {
    padding-left: 20px;
}
.accordion .arrow {
    transition: transform 0.3s;
    color: var(--blue-color);
}
.accordion .arrow.rotate {
    transform: rotate(180deg);
}
.accordion .fa-file-pdf {
    color: var(--orange-color);
}
.table-wrapper {
    overflow-x: auto;
}
.table-wrapper::-webkit-scrollbar {
    height: 5px;
}
.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--blue-color);
    border-radius: 40px;
}
.table-wrapper::::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 40px;
}
.table-wrapper table {
    margin-bottom: 25px;
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}
.table-wrapper table th,
.table-wrapper table td {
    padding: 10px;
}
.table-wrapper table th {
    color: #fff;
    background: var(--blue-color);
}
.table-wrapper table tbody tr {
    border: 1px solid #edf2f4;
}
.table-wrapper table tbody tr:nth-of-type(even) > * {
    background: #edf2f4;
}
.member-more {
    background: none;
    border: none;
    color: var(--orange-color);
    text-decoration: underline;
    padding: 0;
    font: inherit;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
}

.member-more:focus,
.member-more:active {
    outline: none;
    box-shadow: none;
}
.team-modal .content {
    color: var(--blue-color);
}


@media (max-width: 767px) { 
    .d-block {
        display: none !important;
    }
    .d-mb-block {
        display: block !important;
    }
    section {
        height: unset;
    }

    .menu-bar {
        z-index: 9999;
    }
    .menu-bar .logo img {
        width: 38%;
        padding-left:10px;
    }
    .hamburger-menu {
        padding-top: 20px;
        padding-right: 15px;
        height: 43px;
        cursor: pointer;
        z-index: 9998;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }
    .bar,
    .bar:after,
    .bar:before {
        width: 22px;
        height: 3px;
    }
    .bar {
        position: relative;
        transform: translateY(10px);
        background: black;
        transition: all 0ms 300ms;
    }
    .bar.animate {
        background: rgba(255, 255, 255, 0);
    }
    .bar:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 7px;
        background: black;
        transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .bar:after {
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        background: black;
        transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .bar.animate:after {
        top: 0;
        transform: rotate(45deg);
        transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .bar.animate:before {
        bottom: 0;
        transform: rotate(-45deg);
        transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    } 
    .mobile-menu ul {
        margin: 0;
        padding: 0;
    }
    .mobile-menu li {
        font-size: 20px;
        line-height: 30px;
        margin: 0;
        overflow: hidden;
        padding: 5px 5px 15px 0;
        position: relative;
        text-align: left;
        text-transform: uppercase;
        padding-left:15px;
    }
    .mobile-menu li:first-child {
        margin-top: 70px;
    }
    .mobile-menu li a {
        text-decoration: none;
        color: #fff;
        position: relative;
    } 
    .mobile-menu {
        top: 0;
        max-width: 300px;
        left: -100%;
        width: 100%;
        background: var(--blue-color);
        color: #fff;
        height: 100%;
        position: fixed;
        z-index: 9997;
        overflow-y: auto;
        -webkit-transform: translate3d(0, 0, 205px);
        -moz-transform: translate3d(0, 0, 205px);
        transform: translate3d(0, 0, 205px);
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        transition: all 500ms ease-in-out;
    }
    .mobile-menu.active {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        transition: all 500ms ease-in-out;
    }
    .mobile-menu .dropdown-menu {
        display: none;
    }
    .mobile-menu .dropdown-menu-sub {
        display: none;
    }
    .mobile-menu .dropdown-menu a,
    .mobile-menu .dropdown-menu-sub a {
        display: block;
        padding-left: 15px;
        font-size: 14px;
        white-space: nowrap;
    }
    .mobile-menu li.dropdown .main-link::after {
        content: '>';
        position: absolute;
        right: -30px;
        top: -5px;
        font-size: 25px;
    }
    .mobile-menu li.dropdown.active .main-link::after {
        transform: rotate(90deg);
    }
    .mobile-menu .dropdown-sub .sub-link::after {
        content: '>';
        position: absolute;
        top: -1px;
        margin-left: 10px;
        font-size: 18px;
    }
    .mobile-menu .dropdown-sub.active .sub-link::after {
        transform: rotate(90deg);
    }
    .mobile-menu li.dropdown.active .dropdown-menu {
        display: block;
    }
    .mobile-menu .dropdown-sub.active .dropdown-menu-sub {
        display: block;
    }
    .mobile-menu .dropdown-menu-sub {
        padding-left: 20px;
    }

    footer {
        overflow: hidden;
        height: unset !important;
    }
    footer .footer-container {
        min-height: unset;
        padding-top: 0px;
    }
    footer .middle-section {
        width: 100%;
    }
    footer .footer-bottom {
        flex-direction: column;
        padding: 0px;
        gap: 15px;
        padding: 20px 0;
    }
    footer .footer-links {
        margin-bottom: 30px;
    }

    .banner-section {
        height: unset;
    }

    .about-us-page .banner {
        margin: 0;
        height: unset;
    }
    .about-us-page .banner-section {
        margin-bottom: 0px;
    }
    .about-us-page .banner-section .image-container {
        position: unset;
        width: 100%;
        border-radius: 0px;
        z-index: 0;
        transform: unset;
        margin-top: 0px;
        height: 300px;
        top: 0%;
        position: relative;
    }
    .about-us-page .banner-section .image-container::after {
        content: 'About Us';
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2.4em;
        font-weight: 600;
        color: #fff;
    }
    .about-us-page .why-choose-us h2 {
        font-size: 24px;
    }
    .about-us-page .features {
        display: block;
        padding: 0px;
    }
    .about-us-page .feature-block {
        width: 100%;
    }
    .about-us-page .feature-block h3 {
        font-size: 16px;
    }
    .about-us-page .feature-block ul li {
        font-size: 14px;
    }
    .about-us-page .statistics {
        display: grid;
        grid-template-columns : repeat(2, 1fr);
    }
    .about-us-page .stat-block {
        width: unset;
    }
    .about-us-page .stat-block h3 {
        font-size: 30px;
    }
    .about-us-page .stat-block p {
        font-size: 14px;
    }
    .team-section {
        padding: 5px 0 75px;
    }
    .team-section .team-grid {
        flex-direction: column;
        gap: 15px;
        padding: 0 25px;
        margin-top: 15px !important;
    }
    .team-section .team-card {
        width: 100%;
        flex: unset;
        height: 420px;
    }
    .team-section .team-card {
        position: relative;
    }
    .team-section .card-front::after {
        content: 'more';
        position: absolute;
        right: 0px;
        bottom: 0;
        height: 28px;
        width: 100px;
        background-color: var(--orange-color);
        color: #fff;
        font-size: 18px;
        z-index: 9;
        font-weight: 600;
        padding-top: 5px;
    }
    .team-section .card-front {
        padding-bottom: 0px;
    }
    .team-section .card-front {
        justify-content: flex-start;
    }
    .team-section .card-back {
        padding: unset;
    }
    .team-section .card-back p {
        padding: 15px;
    }

    .contact-page .banner {
        margin: 0px;
        margin-top: 55px;
    }
    .contact-page .banner-section {
        height: unset;
    }
    .contact-page .banner-section .image-container {
        border-radius: 0px;
        height: 30vh;
    }
    .contact-page .banner-section h1 {
        top: 35%;
        font-size: 36px;
        white-space: nowrap;
    }
    .contact-page .locations {
        all: unset;
    }
    .branch-accordion-container {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        height: unset;
        padding: 30px 0;
    }
    .branch-accordion-container .menu-button {
        width: 100%;
        padding: 10px 20px;
        margin-top: 2px;
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        background-color: #fff;
        cursor: pointer;
        color: var(--blue-color);
        font-weight: 500;
    }
    .branch-accordion-container .menu-button:hover {
        background-color: #ffffff;
    }
    .branch-accordion-container .icon {
        font-size: 20px;
        transition: 0.4s;
    }
    .branch-accordion-container .menu-button.open .icon {
        transform: rotate(45deg);
    }
    .branch-accordion-container .card {
        padding: 2;
        background-color: #f2f2f2;
        transition: 0.4s;
        height: 0;
        overflow: hidden;
    }
    .contact-page .locations .card {
        padding: 2px;
    }
    .contact-page .branches {
        padding: 30px 10px;
    }
    .contact-page .branches h1 {
        font-size: 30px;
    }
    .contact-page .contact-container {
        display: block;
    }
    .contact-page .company-details {
        display: block;
        width: unset;
        margin: 40px 0;
    }
    .contact-page .c-detail {
        width: 100%;
    }
    .contact-page .c-detail ul {
        padding-left: 15px;
    }

    .services-page .banner {
        margin: unset;
    }
    .services-page .banner-section .image-container {
        position: relative;
        top: 0px;
        transform: unset;
        width: 100%;
        height: 37vh;
        border-radius: 0px;
    }
    .services-page .banner-title {
        top: 50%;
        font-size: 35px;
        color: var(--blue-color);
    }
    .services-page .banner-section {
        margin-bottom: 0px;
    }
    .services-page .our-expertise .title {
        font-size: 18px;
        width: 300px;
        padding: unset;
        color: var(--orange-color);
        background-color: #fff;
        margin:  30px 0;
    }
    .services-page .our-expertise .img {
        height: 185px;
    }
    .services-page .service-section {
        padding: 50px 0;
    }
    .services-page .service-section .tab-links {
        padding-left: 0px;
    }
    .services-page .service-section .tab-links li {
        width: 86px;
        font-size: 12px;
    }
    .services-page .service-section .tab {
        padding: 10px 15px 0;
    }
    .services-page .service-section .road-services ul {
        padding-left: 25px;
    }
    .services-page .coastal-fwd-service {
        padding: 5px 15px;
    }
    .services-page .consolidation {
        padding: 30px 15px;
    }
    .services-page .consolidation img {
        width: 100%;
    }
    .services-page .custom-clearance-section {
        padding: 35px 15px;
    }
    .services-page .service-section .sea-tab, 
    .services-page .service-section .air-tab {
        display: block;
    }
    .services-page .service-section .tab img {
        height: 250px;
    }
    .services-page .service-section .sea-tab .content, 
    .services-page .service-section .air-tab .content {
        width: 100%;
        padding-top: 0px;
    }
    .services-page .two-col {
        display: block;
    }

    .article-page .banner {
        margin: 0px;
        margin-top: 55px;
    }
    .article-page .banner-section {
        height: unset;
    }
    .article-page .banner-section .image-container {
        border-radius: 0px;
        height: 30vh;
    }
    .article-page .banner h1 {
        top: 30%;
        font-size: 40px;
    }
    .article-page .articles-section {
        padding: 10px 15px;
    }

    .banner-section {
        flex-direction: column;
    }
    .banner-text { 
        font-size: 28px;
    }
    .banner-text .label {
        font-size: 20px;
    }
    .video-container {
        height: 300px; 
    }
    .text-item {
        position: absolute;
        top: 50%;
        left: 0;
        opacity: 0;
        text-align: center;
        padding: 0 15px;
    }
    .text-item.active {
        opacity: 1;
    }
    .about-us-section {
        padding: 15px 15px 40px;
        justify-content: space-evenly;
    }
    .about-us-section .content-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .about-us-content {
        padding-right: 0px;
    }
    .about-us-content h1 {
        font-size: 2rem;
        margin: 0px;
        text-align: center;
    }
    .about-us-section .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
        margin: 30px 0;
    }
    .about-us-section video {
        margin-top: 15px;
        width: 100%;
    }
    .stat .number {
        font-size: 36px;
    }
    .services-section {
        flex-direction: column;
        padding: 15px;
        align-items: center;
        justify-content: space-between;
        height: 90vh;
    }
    .services-section .left-section h1 {
        font-size: 2rem;
        text-align: center;
        position: relative;
        z-index: 9;
        color: #fff;
    }
    .services-section .left-section p {
        position: relative;
        z-index: 9;
        text-align: center;
        color: #fff;
    }
    .services-section .left-section {
        padding: 0px;
        width: 100%;
    }
    .services-section .right-section {
        width: 100%;
        z-index: 9;
    }
    .services-section .tabs {
        width: 100%;
    }
    .services-section .right-section .tab-content {
        display: none;
    }
    .services-section {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 9;
    }
    .services-section.s-bg-R {
        background-image: url('../images/road-freight.jpg');
    }
    .services-section.s-bg-S {
        background-image: url('../images/sea-freight.png');
    }
    .services-section.s-bg-A {
        background-image: url('../images/air-freight.png');
    }
    .services-section.s-bg-Rl {
        background-image: url('../images/rail-freight.png');
    }
    .services-section.s-bg-R::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(13, 71, 89, 0.8);
        color: #fff;
        z-index: 0;
    }
    .testimonials-section {
        height: 80vh;
    }
    .services-section .learn-more {
        z-index: 9;
        position: relative;
        top: -15px;
    }
    .testimonials-section .container {
        flex-direction: column;
    }
    .testimonials-section .left-content {
        width: 75%;
    }
    .testimonials-section .left-content h2 {
        font-size: 2.2rem;
    }
    .testimonials-section .quote-icon {
        font-size: 180px;
        top: 30px;
    }
    .testimonials-section .container {
        top: 45%;
    }
    .testimonial-slider {
        margin-top: 35px;
        width: 80%;
    }
    .testimonial-slider .item img {
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .home-page .articles-section {
        height: unset;
    }
    .home-page .articles-section .news-container {
        padding-bottom: 0px;
        overflow-y: unset;
    }
    .home-page .articles-section .news-item {
        padding: 0px;
    }
    .home-page .articles-section .news-header {
        padding-left: 0px;
        font-size: 2rem;
    }
    .home-page .articles-section .learn-more {
        margin-top: 30px;
    }
    .home-page .banner-section {
        height: 100vh;
    }
    .loader-wrap .loader-wrap-heading .load-text {
        font-size: 18px;
        width: 320px;
    }
    .home-page .menu-bar {
        position: fixed;
    }
    .article-details-page .article-content h1 {
        font-size: 1.7rem;
    }
    #grievancesModal .contact-container {
        flex-wrap: wrap;
    }
    .investor-page .accordion {
        padding: 100px 20px 50px;
    }
    .accordion .documents {
        grid-template-columns: repeat(1, 1fr);
    }
}