body{
    margin:0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, 
                 "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.fixed-header{
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white; /* prevents transparency when scrolling */
}


/* CONTAINER */
.container{
    width:90%;
    margin:auto;
}

/* 🔴 TOP RED BAR */
/* Top Bar Base */
.top-bar {
    background: #2C1280;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

/* Full-width flex container without internal padding */
.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0; /* remove padding here */
}

/* Left Contact Info */
.top-left {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-left: 15px; /* small space from left edge */
    padding: 0;
}

.top-left li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-left li i {
    color: white;
}

/* Right Social Icons */
.top-right {
    display: flex;
    gap: 10px;
    margin-right: 15px; /* small space from right edge */
}

.top-right .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff;
    color: #CF3E13;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.top-right .social-icon:hover {
    background: #E31E24;
    color: white;
}

/* Responsive */
@media (max-width: 767px) {
    .top-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left {
        flex-direction: column;
        gap: 5px;
        margin-left: 0; /* center on mobile */
    }

    .top-right {
        justify-content: center;
        margin-right: 0; /* center on mobile */
    }
}



/* ⚪ HEADER */
.header {
    background: #f2f2f2;
    padding: 15px 0;
    position: relative;
    z-index: 1000; /* ensures header and dropdown are above hero/banner */
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px; /* small left-right spacing */
}

/* Logo */
.logo {
    height: 120px;  /* updated size */
    width: auto;
}

/* Company Name (if needed next to logo) */
.company-name {
    font-weight: bold;
    color: #E31E24;
    font-size: 18px;
    margin-top: 5px;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #E31E24;
}

.active a {
    border-bottom: 3px solid #E31E24;
}

/* DROPDOWN */
/* Remove bullets from dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 140%; /* a little lower than the parent button */
    left: 0;
    background: white;
    min-width: 220px; /* adjust as needed */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 2000;
    padding: 10px 0;
    list-style: none; /* remove bullets */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown items */
.dropdown-menu li {
    margin: 0; /* remove spacing between li */
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #E31E24;
    color: white;
}



/* 🟨 QUOTE BUTTON */
.quote-btn {
    background: #F5A623;
    color: black !important;
    font-weight: bold;
    padding: 10px 18px;
    margin-left: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #E31E24;
    color: white !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .menu {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
    }

    .menu li {
        width: 100%;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
    }
}


/* 🎥 HERO */
.hero{
    position:relative;
    height:500px;
    overflow:hidden;
}


.hero img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    font-family: "Agency FB", "Arial Black", Arial, sans-serif; /* Added font */
}


.hero-overlay h1{
    font-size:80px;
    font-weight:bold;
    line-height:1.1;
}

.hero-overlay p{
    font-size:45px;
}
/* TRACKING SECTION */
.tracking-section{
    background:#f4f4f4;
    padding:40px 0;
}

.tracking-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

/* FLAGS */
/* FLAGS */
.flags img{
    width:110px; /* increased from 80px */
    margin-right:25px; /* slightly more spacing */
    border-radius:4px;
}


/* TRACKING BOX */
.tracking-box{
    background:#2C1280;
    color:white;
    padding:30px;
    width:450px;
}

.tracking-box h2{
    margin-top:0;
    font-size:28px;
}

.tracking-input{
    display:flex;
    margin:20px 0;
}

.tracking-input input{
    flex:1;
    padding:12px;
    border:none;
    font-size:14px;
}

.tracking-input button{
    background:#002b5c;
    color:white;
    border:none;
    padding:12px 20px;
    cursor:pointer;
}

/* ABOUT SECTION */
.about-section{
    padding:60px 0;
    background:#f9f9f9;
}

/* ABOUT CONTAINER */
.about-container{
    display:flex;
    gap:80px;
    justify-content: center;
    align-items:flex-start;
    max-width:1200px;
    margin:auto;
}

/* LEFT IMAGE CONTAINER */
.about-image-container{
    position: relative;
    width:500px; /* fixed width */
    height:400px; /* fixed height */
}

/* Large image at bottom */
.about-image-large img{
    width:400px;
    height:350px;
    object-fit:cover;
    border-radius:8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Small overlapping image on top */
/* Small overlapping image on top */
.about-image-small{
    position:absolute;
    bottom:0;
    right:0;
    width:350px;
    height:250px;
    overflow:hidden;
    border-radius:8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    transform: translate(15%, -25%); /* shift slightly left inside */
}


.about-image-small img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* RIGHT TEXT CONTAINER */
.about-text-container{
    width:600px; /* fixed width */
}

.about-text-container h2{
    color:#E31E24;
    margin-bottom:20px;
    font-size:32px;
}

.about-text-container p {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    text-align: justify; /* added for full justification */
}


/* CARDS BELOW */
.about-cards-container{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-top:50px;
    flex-wrap:wrap;
}

.about-card{
    background:white;
    flex:1 1 300px; /* responsive sizing */
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    text-align:center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.about-card h3{
    color:#002b5c;
    margin-bottom:15px;
    font-size:22px;
}

.about-card p{
    color:#555;
    font-size:15px;
    line-height:1.6;
}


.about-text p{
    line-height:1.6;
    margin-bottom:10px;
}
/* SERVICES SECTION */
.services-section{
    padding:70px 0;
    background:#f5f7fa;
}

/* TITLE */
.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:#E31E24;
    font-weight:bold;
    font-size:13px;
    letter-spacing:1px;
}

.section-title h2{
    margin-top:10px;
    font-size:32px;
    color:#222;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}


/* CARD */
.service-card{
    background:white;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.service-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

/* CONTENT */
.service-content{
    padding:20px;
}

.service-content h3{
    margin-bottom:10px;
    color:#002b5c;
}

.service-content p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* READ MORE */
.read-more{
    display:inline-block;
    margin-top:15px;
    color:#E31E24;
    font-weight:bold;
    text-decoration:none;
    transition:0.3s;
}

.read-more:hover{
    letter-spacing:1px;
}
@media (max-width:1024px){
    .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }
}

.partners-section {
    padding: 70px 0;
    background: #f7f9fc;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    width: calc(200px * 10);
    animation: scrollPartners 25s linear infinite;
}

.partner-box {
    width: 25%; /* 4 per row look */
    min-width: 200px;
    padding: 20px;
    text-align: center;
}

.partner-box img {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partner-box img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Animation */
@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Footer Base */
/* Footer Base */
.ft-footer-section-3 {
    background: #2C1280; /* red background */
    color: #fff;
    font-family: 'Arial', sans-serif;
    padding: 60px 0 20px;
    position: relative;
}

/* Top Row: Quick Links + Contact Info */
.ft-footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

/* Quick Links / Contact Info */
.ft-footer-left,
.ft-footer-right {
    width: 45%;
}

/* Widget Titles */
.ft-footer-widget h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

/* Lists */
.ft-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-footer-widget ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.ft-footer-widget ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ft-footer-widget ul li a:hover {
    color: #ffe;
    transform: translateX(5px);
}

/* Social Icons */
.ft-footer-social {
    margin-top: 15px;
}

.ft-footer-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ft-footer-social a:hover {
    color: #E31E24;
    background: #fff;
    transform: scale(1.2);
}

/* Bottom Row: Copyright */
.ft-footer-bottom-row {
    text-align: center;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .ft-footer-left,
    .ft-footer-right {
        width: 100%;
        text-align: center;
    }

    .ft-footer-top-row {
        gap: 30px;
    }

    .ft-footer-social {
        justify-content: center;
        display: flex;
    }
}
/* ============================= */
/* CONTACT PAGE SECTION */
/* ============================= */

.ft-contact-page-section{
    padding:30px 0;
    background:#f9f9f9;
}

.ft-contact-page-content{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

/* LEFT SIDE */
.ft-contact-left{
    flex:1;
}

.ft-contact-left .sub-title{
    color:#E31E24;
    font-weight:bold;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
}

.ft-contact-left h2{
    font-size:36px;
    margin:15px 0 40px;
    color:#002b5c;
}

/* Contact Info Items */
.ft-contact-cta-items{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.ft-contact-cta-icon{
    width:60px;
    height:60px;
    background:#E31E24;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:20px;
}

.ft-contact-cta-text h3{
    margin:0 0 5px;
    color:#002b5c;
}

.ft-contact-cta-text p{
    margin:0;
    color:#555;
    font-size:14px;
}

/* RIGHT FORM */
.ft-contact-right{
    flex:1;
    background:white;
    padding:40px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.ft-contact-right h3{
    text-align:center;
    margin-bottom:30px;
    color:#002b5c;
}

/* Form */
.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-row input{
    flex:1;
}

.ft-contact-right input,
.ft-contact-right textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:14px;
    transition:0.3s;
}

.ft-contact-right input:focus,
.ft-contact-right textarea:focus{
    border-color:#E31E24;
    outline:none;
    box-shadow:0 0 0 2px rgba(227,30,36,0.1);
}

.ft-contact-right textarea{
    height:130px;
    resize:none;
    margin-bottom:20px;
}

/* Button */
.ft-contact-right button{
    width:100%;
    padding:15px;
    border:none;
    background:#E31E24;
    color:white;
    font-weight:bold;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

.ft-contact-right button:hover{
    background:#CF3E13;
}

/* RESPONSIVE */
@media (max-width:992px){
    .ft-contact-page-content{
        flex-direction:column;
    }

    .form-row{
        flex-direction:column;
    }
}
/* SERVICE PAGE */
.service-page{
    padding:10px 0;
    background:#fff;
}

.service-wrapper{
    display:flex;
    gap:50px;
}

/* SIDEBAR */
.service-sidebar{
    width:280px;
}

.service-sidebar h3{
    margin-bottom:20px;
    font-size:26px;
}

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

.service-menu li{
    margin-bottom:10px;
}

.service-menu li a{
    display:block;
    padding:14px 18px;
    background:#f3f3f3;
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s;
}

.service-menu li.active a,
.service-menu li a:hover{
    background:#e31e24;
    color:#fff;
}

/* CONTENT */
.service-content{
    flex:1;
}

.service-content h1{
    font-size:42px;
    color:#e31e24;
    margin-bottom:20px;
}

.service-content p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:30px;
}

/* IMAGES */
.service-images{
    display:flex;
    gap:20px;
}

.service-images img{
    width:50%;
    border-radius:4px;
}

/* MOBILE */
@media(max-width:900px){
    .service-wrapper{
        flex-direction:column;
    }

    .service-sidebar{
        width:100%;
    }

    .service-images{
        flex-direction:column;
    }

    .service-images img{
        width:100%;
    }
}
/* ===================================== */
/* GLOBAL MOBILE OPTIMIZATION */
/* ===================================== */

@media (max-width: 768px) {

    /* Container padding */
    .container {
        width: 92%;
    }

    /* Logo smaller */
    .logo {
        height: 70px;
    }

    /* HEADER */
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
    }

    .menu li {
        width: 100%;
        text-align: center;
    }

    .quote-btn {
        margin: 10px 0 0 0;
        display: inline-block;
    }

    /* HERO */
    .hero {
        height: 350px;
    }

    .hero img {
        height: 350px;
    }

    .hero-overlay {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 40px;
    }

    .hero-overlay p {
        font-size: 22px;
    }

    /* TRACKING */
    .tracking-container {
        flex-direction: column;
        text-align: center;
    }

    .tracking-box {
        width: 100%;
    }

    .flags img {
        width: 70px;
        margin: 10px;
    }

    /* ABOUT SECTION */
    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-container {
        width: 100%;
        height: auto;
        position: relative;
    }

    .about-image-large img {
        width: 100%;
        height: auto;
    }

    .about-image-small {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        margin-top: 15px;
    }

    .about-image-small img {
        height: auto;
    }

    .about-text-container {
        width: 100%;
        text-align: center;
    }

    /* SERVICES GRID */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* SERVICE PAGE */
    .service-wrapper {
        flex-direction: column;
    }

    .service-sidebar {
        width: 100%;
    }

    .service-sidebar h3 {
        text-align: center;
    }

    .service-menu li a {
        text-align: center;
    }

    .service-content h1 {
        font-size: 28px;
        text-align: center;
    }

    .service-content p {
        text-align: center;
    }

    .service-images {
        flex-direction: column;
    }

    .service-images img {
        width: 100%;
    }

    /* CONTACT PAGE */
    .ft-contact-page-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .ft-contact-left h2 {
        font-size: 26px;
        text-align: center;
    }

    .ft-contact-right {
        padding: 25px;
    }

    /* FOOTER */
    .ft-footer-top-row {
        flex-direction: column;
        text-align: center;
    }

    .ft-footer-left,
    .ft-footer-right {
        width: 100%;
    }

}
/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #222;
    display: block;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    /* Keep container row layout */
    .header-container {
        flex-direction: row; /* row instead of column */
        justify-content: space-between; /* logo left, toggle right */
        align-items: center;
        width: 100%;
        padding: 0 15px;
        text-align: left;
        gap: 0;
    }

    /* Logo size smaller */
    .logo {
        height: 70px;
    }

    /* Show hamburger menu */
    .menu-toggle {
        display: flex;
    }

    /* Hide menu by default */
    .menu {
        display: none;
        flex-direction: column;
        background: #f2f2f2;
        width: 100%;
        margin-top: 10px;
        border-radius: 6px;
    }

    .menu.show {
        display: flex;
    }

    .menu li {
        border-bottom: 1px solid #ddd;
    }

    .menu li a {
        padding: 14px;
        display: block;
    }

    /* Quote button below menu toggle if exists */
    .quote-btn {
        margin: 10px 0 0 0;
    }
}
