/*====================== Top Bar ======================*/
.top-bar {
    background-color: #1e3a8a;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.top-bar i {
    margin-right: 6px;
    font-size: 1rem;
}

.top-bar .ms-3 {
    margin-left: 1.5rem !important;
}

/*====================== Navbar Base ======================*/
.navbar {
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    background-color: #ffffff;
}

/* Brand Section */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 95px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.logo-img:hover {
    transform: scale(1.05);
}

.brand-text h6 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    color: #1e3a8a;
}

.brand-text small {
    font-size: 0.75rem;
    font-weight: 500;
    color: #4b5563;
}

/* Desktop Text Sizing */
@media (min-width: 768px) {
    .brand-text h6 {
        font-size: 2rem;
    }

    .brand-text small {
        font-size: 0.9rem;
    }
}

/* Navigation Links - Common */
.navbar-nav .nav-link {
    color: #1f2937;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

/* Hover and Active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: #e0e7ff;
    color: #1e3a8a;
}

.navbar-nav .nav-link.active {
    background-color: #1e3a8a;
    color: white;
}

/* Dropdowns */
.navbar-nav .dropdown-menu {
    animation: fadeIn 0.2s ease;
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
    font-weight: 500;
    color: #1f2937;
    padding: 0.6rem 1.2rem;
    transition: 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #1e3a8a;
}

/* WhatsApp Button */
.get-quote-btn {
    background-color: #25D366;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
    text-align: center;
    display: inline-block;
}

.get-quote-btn:hover {
    background-color: #1ebe5b;
    color: #fff;
    text-decoration: none;
}

/* Toggler Icon */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28100, 116, 139, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/*====================== Mobile Responsive Styling ======================*/
@media (max-width: 991.98px) {
    .navbar-nav {
        background: #f8f9ff;
        padding: 1rem;
        border-radius: 0.75rem;
        margin-top: 0.75rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .navbar-nav .nav-link {
        width: 100%;
        background: #ffffff;
        font-weight: 700;
        color: #1e3a8a;
        padding: 1rem;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link:hover {
        background: #c7d2fe;
    }

    .get-quote-btn {
        width: 100%;
        margin-top: 10px;
        font-size: 1.1rem;
        padding: 12px;
    }

    .brand-wrapper {
        gap: 0.75rem;
        align-items: center;
    }

    .brand-text {
        display: block;
    }

    .logo-img {
        width: 80px;
        height: 48px;
    }

    .top-bar .text-end {
        text-align: left !important;
        margin-top: 6px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 13px;
        padding: 6px 0;
    }

    .top-bar .container {
        gap: 4px;
    }

    .brand-text h6 {
        font-size: 1.1rem;
    }

    .brand-text small {
        font-size: 0.7rem;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-size: contain;
    }
}

/* Smooth Dropdown Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Smooth Dropdown Animation */
.navbar-nav .dropdown-menu {
    animation: fadeInDown 0.3s ease;
    transform-origin: top center;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

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

/*========================== Hero Section Improvements ====================================*/

.hero {
    position: relative;
    padding: 80px 0 70px 0;
    background: linear-gradient(120deg, #0deb87 0%, #9b1785 100%);
    box-shadow: 0 2px 24px 0 #2563eb0a;
    overflow: hidden;
}

.hero-bg-bubble {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 900px;
    height: 600px;
    pointer-events: none;
    opacity: 0.45;
}

@media (max-width: 991px) {
    .hero-bg-bubble {
        width: 600px;
        height: 400px;
        top: -80px;
    }
}

@media (max-width: 575px) {
    .hero-bg-bubble {
        width: 350px;
        height: 220px;
        top: -40px;
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.ccl-highlight {
    color: #2563eb;
    background: linear-gradient(#e10987 0%, #e3dc06 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.22rem;
    color: #3b3b3b;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-text .buttons {
    display: flex;
    gap: 22px;
    margin-bottom: 28px;
}

.ccl-btn-primary,
.ccl-btn-outline {
    display font-weight: 600;
    border-radius: 30px;
    padding: 12px 32px;
    border: none;
    outline: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px #2563eb22;
    text-decoration: none !important;
}

.ccl-btn-primary {
    background: linear-gradient(90deg, #ebe125 0%, #ca17be 100%);
    color: #fff;
    border: none;
}

.ccl-btn-primary:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #6d28d9 100%);
    color: #fff;
    box-shadow: 0 4px 18px #2563eb33;
}

.ccl-btn-outline {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.ccl-btn-outline:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 4px 18px #2563eb33;
}

.hero-text .buttons a {
    text-decoration: none !important;
}

.hero-text .features {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.ccl-pill {
    background: #f1f5f9;
    color: #4c071e;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.98rem;
    font-weight: 500;
    box-shadow: 0 1px 4px #2563eb11;
}

/* Stats Card Improvements */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 32px #2563eb0d;
    padding: 32px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 0;
    justify-content: space-between;
    min-width: 320px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    min-width: 210px;
}

.stat-icon {
    background: linear-gradient(135deg, #2563eb 0%, #7e22ce 100%);
    color: #ece513f6;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px #2563eb22;
}

.cclcolour-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2563eb;
}

@media (max-width: 991px) {
    .hero-grid {
        flex-direction: column;
        min-height: unset;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .hero-stats {
        margin-top: 24px;
    }

    .stat-card {
        padding: 24px 10px;
        min-width: unset;
    }

    .stat-item {
        min-width: 160px;
    }
}

@media (max-width: 575px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .stat-card {
        flex-direction: column;
        gap: 18px 0;
        padding: 18px 4px;
    }

    .stat-item {
        min-width: unset;
    }
}




/*====================================== Serviecs page ======================================*/

/* Typography and spacing */
body {
    font-family: 'Inter', sans-serif;
}

.letter-spacing {
    letter-spacing: 1.5px;
}

/* Image Zoom Effect */
.card-img-hover {
    overflow: hidden;
}

.card-img-hover img {
    transition: transform 0.5s ease;
}

.card-img-hover:hover img {
    transform: scale(1.1);
}

/* Card Hover Smoothness */
.service-card {
    transition: all 0.3s ease-in-out;
}

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

/* Gradient Icon Circle */
.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-gradient-air {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.bg-gradient-ocean {
    background: linear-gradient(135deg, #00b4db, #0083b0);
}

.bg-gradient-surface {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
}

.bg-gradient-warehouse {
    background: linear-gradient(135deg, #654ea3, #eaafc8);
}

.bg-gradient-supply {
    background: linear-gradient(135deg, #1d976c, #93f9b9);
}

.bg-gradient-customs {
    background: linear-gradient(135deg, #c33764, #1d2671);
}

/* Learn More Button Style */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
    border: 2px solid transparent;
    border-bottom: 2px solid #007bff;
    padding: 4px 2px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    color: #0056b3;
    border-color: #0056b3;
    transform: translateX(3px);
}

/*========================== Why Choose Us Section ==========================*/
.feature-box {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(30, 58, 138, 0.10), 0 1.5px 6px rgba(250, 204, 21, 0.08);
    transition:
        box-shadow 0.35s cubic-bezier(.4, 0, .2, 1),
        transform 0.25s cubic-bezier(.4, 0, .2, 1),
        background 0.35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.18), 0 0 0 4px rgba(250, 204, 21, 0.13);
    transform: translateY(-6px) scale(1.025);
    background: linear-gradient(120deg, rgba(250, 204, 21, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
}

.feature-box .icon-circle {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(#fafaf6af 0%, #dfdfde 100%);
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 2px 12px rgba(8, 8, 8, 0.13), 0 1.5px 6px rgba(250, 204, 21, 0.10);
    transition: background 0.3s, transform 0.3s;
}

.feature-box:hover .icon-circle {
    background: linear-gradient(#080608 0%, #836b23 100%);
    color: #fff;
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.18), 0 2px 8px rgba(250, 204, 21, 0.13);
}

.feature-box h5 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.7rem;
    font-size: 1.18rem;
    letter-spacing: 0.01em;
}

.feature-box p {
    color: #64748b !important;
    font-size: 1.04rem;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .feature-box {
        padding: 1.5rem 1rem;
    }

    .feature-box .icon-circle {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .feature-box {
        margin-bottom: 1.2rem;
    }

    .feature-box .icon-circle {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* CTA Gradient Box */
.cta-gradient {
    background: linear-gradient(90deg, #facc15 0%, #2563eb 100%);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.10);
    border-radius: 1.5rem;
    color: #fff;
    margin-top: 2.5rem;
}

.cta-gradient .btn,
.cta-gradient .btn:focus {
    box-shadow: none !important;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s;
}

.cta-gradient .btn-light {
    background: #fff;
    color: #2563eb !important;
    border: none;
}

.cta-gradient .btn-light:hover {
    background: #facc15;
    color: #fff !important;
}

.cta-gradient .btn-outline-light {
    border: 2px solid #fff;
    color: #fff !important;
    background: transparent;
}

.cta-gradient .btn-outline-light:hover {
    background: #2563eb;
    color: #fff !important;
    border-color: #2563eb;
}


/*================== Blog Section ==================*/
.blog-section {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #f5f8ff, #e6f0ff);
}

.blog-section .text-center h6 {
    color: #1e3a8a;
    font-size: 1rem;
    letter-spacing: 1px;
}

.blog-section .text-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1f44;
}

.blog-section .text-center p {
    max-width: 700px;
    margin: 0 auto;
    color: #4a4a4a;
}

/* Blog Cards */
.blog-card {
    background: linear-gradient(145deg, #ffffff, #f0f5ff);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.2);
}

/* Card Image */
.blog-card img {
    height: 230px;
    object-fit: cover;
    border-bottom: 4px solid #0d6efd;
}

/* Badge */
.blog-card .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 8px;
    background: linear-gradient(to right, #4f46e5, #3b82f6);
    box-shadow: 0 3px 6px rgba(59, 130, 246, 0.4);
}

/* Blog Meta */
.blog-card .card-body .d-flex span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
}

/* Blog Title */
.blog-card .blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

/* Blog Text */
.blog-card .card-text {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Read More */
.blog-card a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

/* CTA Button */
.blog-section .btn {
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 50px;
    background: linear-gradient(to right, #be901c, #d81d84);
    color: #fff;
    border: none;
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.blog-section .btn:hover {
    background: linear-gradient(to right, #a84886, #1e3a8a);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.5);
}

/* Read More Link Styled Like a Button */
.blog-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: linear-gradient(to right, #a389a0, #25eb3c);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.blog-card a:hover {
    background: linear-gradient(to right, #8a1e6b, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.4);
}

/* Read More Icon */
.blog-card a i {
    transition: transform 0.3s ease;
}

.blog-card a:hover i {
    transform: translateX(4px);
}

/* Author & Date Styling */
.blog-card .card-body .d-flex span {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Blog Description Text */
.blog-card .card-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}


/* Responsive Improvements */
@media (max-width: 767px) {
    .blog-section {
        padding: 50px 20px;
    }

    .blog-section .text-center h2 {
        font-size: 2rem;
    }

    .blog-section .text-center p {
        font-size: 0.95rem;
    }

    .blog-card img {
        height: 200px;
    }
}



/*====================================== Footer ======================================*/


/* Gradient background and base styling */
.footer-bg {
    background: linear-gradient(135deg, #4bbbc9, #c82148, #49e2e7);
    color: #f1f5f9;
    padding-top: 60px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-title i {
    color: #ffd166;
}

.footer-link {
    color: #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-link i {
    color: #ffd166;
    width: 18px;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-desc {
    color: #e0f2fe;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}



.footer-social a:hover {
    background: #ffd166;
    color: #1d3557;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #e2e8f0;
}

.footer-contact-icon {
    font-size: 1.1rem;
    background: #ffd166;
    color: #1d3557;
    padding: 8px;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    color: #e2e8f0;
    font-size: 0.95rem;
}



.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    color: #ffc107;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
/* ============================Statistics Section Background============================== */
.stats-section-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 80px 0;
}

/* Stat Cards */
.stat-box {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    z-index: 0;
    border-radius: 22px;
    opacity: 0.15;
    transition: opacity 0.4s;
}

.stat-box:hover::before {
    opacity: 0.3;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Stat Numbers */
.stat-number {
    font-size: 40px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #1e293b;
    animation: fadeIn 1s ease-in-out;
}

/* Optional: Specific stat colors */
.stat-number.text-primary {
    color: #4f46e5;
}

.stat-number.text-success {
    color: #10b981;
}

.stat-number.text-warning {
    color: #f59e0b;
}

.stat-number.text-purple {
    color: #8b5cf6;
}

.stat-box h5 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    position: relative;
    z-index: 1;
}

.stat-box p {
    color: #64748b;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



