﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* font-family: "Montserrat", sans-serif; */
}

/* Desktop Navbar - White Background */
@media (min-width: 992px) {
    .navbar {
        background-color: #ffffff !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        position: relative;
        z-index: 9;
    }

    .navbar-brand {
        font-weight: 600;
        font-size: 1.5rem;
        color: #001f3f !important;
        margin-right: 25px
    }

        .navbar-brand img {
            width: 120px;
        }

    .nav-link {
        color: #333 !important;
        margin: 0 0.5rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-link:hover {
            color: #ff9800 !important;
        }

    .search-container {
        display: flex;
        align-items: center;
        /* margin: 0 1rem; */
    }

        .search-container input {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 0.5rem 1rem;
            width: 200px;
            font-size: 0.9rem;
        }

    .btn-track {
        background-color: #ff9800;
        color: white;
        border: none;
        padding: 0.5rem 1.5rem;
        border-radius: 4px;
        font-weight: 600;
        margin-left: 1rem;
        transition: background-color 0.3s ease;
    }

        .btn-track:hover {
            background-color: #e68900;
            color: white;
        }
}

/* Style for child dropdown */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: .1rem;
        margin-right: .1rem;
    }

/* .dropdown-submenu > a:after {
    content: "›";
    float: right;
} */

.service-title.active {
    color: #ffa500;
}
/* Hero Section */
.hero-section {
    background-color: #141d4b;
    display: flex;
    align-items: center;
    height: 500px;
}

.hero-box {
    align-items: stretch !important;
}

.hero-content {
    background-color: #141d4b;
    display: flex;
    align-items: center;
    justify-content: start;
    height: unset;
}

    .hero-content::after {
        content: "";
        position: absolute;
        top: 0;
        right: -120px;
        width: 120px;
        height: 100%;
        background: #0c1d4d;
        clip-path: polygon(0 0, 55% 0, 0 100%);
        z-index: 2;
    }

    @media screen and (max-width:900px) {
        .hero-content::after {
            display:none;
        }
    }
.hero-text {
    max-width: 500px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: none;
}

.hero-subtitle {
    font-size: 18px;
    color: #c6c6c6;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-request {
    background-color: #ffa500;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-request:hover {
        background-color: #ff8c00;
        color: #ffffff;
        text-decoration: none;
    }

.hero-image {
    background-color: #141d4b;
}

    .hero-image img {
        height: 100%;
        object-fit: cover;
    }


/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-label {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}


.service-heading {
    font-size: 38px;
    font-weight: 600;
    color: #ffa500;
    line-height: 1.3;
    margin-bottom: 5px;
}

.service-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 63%;
}

.service-item {
    padding-bottom: 25px;
    padding-left: 24px;
    padding-top: 10px;
}

    .service-item:hover .service-header .service-title {
        color: #ffa500;
    }

    .service-header {
        margin-bottom: 12px;
    }

.service-scroller {
    height: 488px;
    overflow-y: auto;
    direction: rtl;
}

    .service-scroller::-webkit-scrollbar-track {
        /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
        background-color: #dbdbdb;
    }
    .service-scroller::-webkit-scrollbar {
        width: 4px;
        background-color: #dbdbdb;
    }
    .service-scroller::-webkit-scrollbar-thumb {
        background-color: #ffa500;
    }

    .service-scroller > * {
        direction: ltr;
    }

    .service-title {
        font-size: 22px;
        font-weight: 600;
        color: #000000;
        margin: 0;
    }

.service-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .service-link:hover {
        color: #ffa500;
    }

.service-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us section styles */
.why-choose-us {
    padding: 40px 0;
    background-color: #ffffff;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 36px;
    font-weight: 600;
    color: #ffa500;
    line-height: 1.3;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 19px;
    color: #4b5467;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 59px 32px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 35px;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    top: -35px;
}

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px 0;
}

.feature-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section Styles */
.testimonials-section {
    background: #141d4b;
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.testimonial-carousel {
    width: 100%;
    position: relative;
}

.carousel-inner {
    background: transparent;
}

.carousel-item {
    padding: 60px 40px;
}

.testimonial-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-text {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #ffa500;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.author-title {
    font-size: 15px;
    color: #8f8f8f;
    margin: 4px 0 0 0;
}

.testimonial-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
}

    .testimonial-rating .star {
        font-size: 20px;
        color: #ffa500;
    }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    border: none;
    background: none;
}

    .carousel-indicators li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .carousel-indicators li.active {
            background-color: #ffa500;
        }

/* CTA Section with Image Grid */
.cta-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.cta-content {
    padding: 40px 15px;
}

.cta-heading {
    font-size: 42px;
    font-weight: 600;
    color: #ffa500;
    line-height: 1.3;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-contact {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #cccccc;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-contact:hover {
        background-color: #f5f5f5;
        border-color: #999999;
        text-decoration: none;
        color: #333333;
    }

.btn-quote {
    background-color: #ffa500;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-quote:hover {
        background-color: #ff8c00;
        text-decoration: none;
        color: #ffffff;
    }

.cta-images {
    padding: 40px 0;
}

/* ========== NEWS SECTION ========== */
.news-section {
    background: linear-gradient(135deg, #0f1b3c 0%, #1a2f5a 100%);
    padding: 80px 0;
    position: relative;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.news-title-group {
    flex: 1;
}

.news-label {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.news-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.news-subtitle {
    color: #8892a8;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

.view-all-btn {
    background-color: #ff9d3d;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 0;
}

    .view-all-btn:hover {
        background-color: #ff8c1a;
        text-decoration: none;
        color: #ffffff;
    }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background-color: transparent;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-card:hover {
        transform: translateY(-8px);
    }

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 24px;
    height: 220px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-image {
    transform: scale(1.05);
}

.card-category {
    color: #a8b2c1;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-card .card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-title-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #ff9d3d;
}

.news-card:hover .card-title-arrow {
    transform: translateX(4px);
}

.card-description {
    color: #a8b2c1;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    background-color: #ffffff;
    padding:  0;
    border-bottom: 0px solid #e8e8e8;
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #e8e8e8;
}

.newsletter-text {
    flex: 1;
    min-width: 250px;
}

.newsletter-title {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.newsletter-subtitle {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom:0px;
}

.newsletter-form {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

    .newsletter-input:focus {
        outline: none;
        border-color: #ff9d3d;
        box-shadow: 0 0 0 3px rgba(255, 157, 61, 0.1);
    }

.subscribe-btn {
    background-color: #ff9d3d;
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

    .subscribe-btn:hover {
        background-color: #ff8c1a;
    }

/* ========== FOOTER ========== */
.footer {
    background-color: #ffffff;
    padding: 60px 0 40px;
    border-top: 0px solid #e8e8e8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h5 {
    color: #bebebe;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 12px;
    }

.footer-column a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 500;
}

    .footer-column a:hover {
        color: #ff9d3d;
    }

.footer-column .new-badge {
    display: inline-block;
    background-color: white;
    color: #666666;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 6px;
    font-weight: 600;
    border: 1px solid #e8e8e8;
}

.location-select {
    position: relative;
}

    .location-select select {
        appearance: none;
        background-color: #ffffff;
        border: 0px solid #e0e0e0;
        padding: 10px 32px 10px 12px;
        border-radius: 4px;
        font-size: 14px;
        color: #1a1a1a;
        cursor: pointer;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 20px;
        padding-right: 32px;
    }

        .location-select select:focus {
            outline: none;
            border-color: #ff9d3d;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    color: #0f1b3c;
}

    .footer-logo img {
        width: 100px;
    }

.footer-copyright {
    color: #999999;
    font-size: 13px;
}

.desktop-logo {
    display: block;
}

.m-logo {
    display: none;
}


/* Mobile Responsive */
@media (max-width: 991px) {
   
        .hero-section {
            min-height: auto;
        }

    .hero-content {
        min-height: auto;
        padding: 80px 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        min-height: auto;
        padding: 40px 20px;
    }

    .service-description {
        max-width:100%;

    }

    .hero-section {
        height:auto;
    }

    .service-areas {
        padding: 60px 0;
    }

    .service-heading {
        font-size: 36px;
    }

    .service-image {
        margin-top: 40px;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 36px;
    }

    .feature-card {
        padding: 45px 15px 15px;
    }

    .testimonial-carousel {
        padding: 40px 20px;
    }

    .testimonial-text {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .cta-content {
        padding: 40px 15px 60px 15px;
    }

    .cta-heading {
        font-size: 32px;
    }

    .cta-images {
        padding: 40px 0 0 0;
    }

    .news-section {
        padding: 60px 0;
    }

    .news-header {
        flex-direction: column;
        gap: 20px;
    }

    .view-all-btn {
        margin-top: 20px;
    }

    .news-title {
        font-size: 32px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .card-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .btn-request {
        padding: 10px 24px;
        font-size: 14px;
    }

    .hero-image {
        padding: 20px;
    }

    .service-heading {
        font-size: 28px;
    }

    .service-title {
        font-size: 20px;
    }

    /* .service-item {
        margin-bottom: 40px;
    } */

    .service-image {
        margin-top: 30px;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .feature-card {
        padding: 45px 15px 15px;
        margin-bottom: 24px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-text {
        font-size: 14px;
    }

    .testimonials-section {
        padding: 60px 0;
        min-height: auto;
    }

    .carousel-item {
        padding: 40px 20px;
    }

    .testimonial-text {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .cta-content {
        padding: 40px 15px 40px 15px;
    }

    .cta-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .cta-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-contact,
    .btn-quote {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }

    .cta-images {
        padding: 30px 0 0 0;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .news-title {
        font-size: 24px;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .footer-column h5 {
        font-size: 12px;
    }

    .footer-column a {
        font-size: 13px;
    }
}

/* Mobile Navbar - Blue Background Opening from Top */
@media (max-width: 991px) {

    .desktop-logo {
        display: none;
    }

    .m-logo {
        display: block;
    }

    .navbar {
        background-color: #141d4b !important;
        padding: 1rem 0;
        position: relative;
    }

    .navbar-brand img {
        width: 120px;
    }

    .navbar-brand {
        font-weight: 600;
        font-size: 1.25rem;
        color: #ffffff !important;
        margin-left: 10px;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        outline: none !important;
    }

    .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%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Collapse Menu - Slides down from top */
    .navbar-collapse {
        background-color: #141d4b;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        animation: slideDown 0.3s ease-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 9;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        color: #ffffff !important;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
    }

        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ff9800 !important;
        }

    .search-container {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }

        .search-container input {
            border: none;
            border-radius: 4px;
            padding: 0.75rem;
            width: 100%;
            font-size: 0.9rem;
        }

    .btn-track {
        background-color: #ff9800;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        font-weight: 600;
        width: 100%;
        transition: background-color 0.3s ease;
    }

        .btn-track:hover {
            background-color: #e68900;
            color: white;
        }
}


.news-hero-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

    .news-hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 149, 0, 0.03);
        border-radius: 50%;
        pointer-events: none;
    }

.news-label {
    color: #f1f1f1;
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.news-hero-title {
    font-family: 'Playfair Display', serif;
    color: var(--news-text-dark);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

    .news-hero-title .news-highlight {
        color: var(--news-primary);
    }

.news-hero-subtitle {
    color: var(--news-text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.news-search-container {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

.news-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.news-search-icon {
    position: absolute;
    left: 16px;
    color: var(--news-text-muted);
    font-size: 18px;
    pointer-events: none;
}

.news-search-input {
    width: 100%;
    border: 2px solid #E2E8F0;
    padding: 14px 16px 14px 42px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--news-text-dark);
    background: white;
    transition: all 0.3s ease;
}

    .news-search-input::placeholder {
        color: #94A3B8;
    }

    .news-search-input:focus {
        border-color: var(--news-primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
    }

/* Filter Bar */
.news-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 20px;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.news-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-filter-btn {
    border: 1px solid #E2E8F0;
    background: white;
    color: var(--news-text-muted);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

    .news-filter-btn:hover {
        border-color: var(--news-primary);
        color: var(--news-primary);
        background: rgba(255, 149, 0, 0.05);
    }

    .news-filter-btn.active {
        background: var(--news-primary);
        color: white;
        border-color: var(--news-primary);
        box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
    }

.news-sort-dropdown {
    border: 1px solid #E2E8F0;
    padding: 10px 14px;
    border-radius: 6px;
    background: white;
    color: var(--news-text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 18px;
    padding-right: 32px;
}

    .news-sort-dropdown:hover {
        border-color: var(--news-primary);
        color: var(--news-primary);
    }

    .news-sort-dropdown:focus {
        outline: none;
        border-color: var(--news-primary);
        box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
    }

/* Cards Grid */
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .news-card-item:hover {
        transform: translateY(-8px);
        border-color: var(--news-primary);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

.news-card-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #E0E7FF 0%, #F3E8FF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.news-card-item:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-category {
    color: var(--news-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: inline-block;
}

.news-card-title {
    color: var(--news-text-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    min-height: 56px;
    align-items: center;
}

.news-card-title-text {
    flex: 1;
    line-height: 1.4;
}

.news-arrow-icon {
    color: var(--news-primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -4px;
}

.news-card-item:hover .news-arrow-icon {
    transform: translateX(4px) translateY(-4px);
}

.news-card-description {
    color: var(--news-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-top: auto;
}


/* News Page Hero Section */
.news-page-hero-section {
    padding: 60px 20px 20px;
    text-align: center;
    background: white;
}

.news-page-label {
    color: #2D3748;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.news-page-hero-title {
    color: #FF9500;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.news-page-hero-subtitle {
    color: #646e7c;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-page-search-container {
    max-width: 600px;
    margin: 0 auto 60px;
}

.news-page-search-input {
    border: 1px solid #E2E8F0;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
    color: #718096;
}

    .news-page-search-input::placeholder {
        color: #A0AEC0;
    }

    .news-page-search-input:focus {
        border-color: #E2E8F0;
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
    }

/* Filter Bar */
.news-page-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.news-page-filter-buttons {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    padding: 2px;
    border-radius: 8px;
    background: #f7f7f7;
}

.news-page-filter-btn {
    border: 0px solid #E2E8F0;
    background: transparent;
    color: #718096;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .news-page-filter-btn:hover {
        border-color: #E2E8F0;
        color: black;
    }

    .news-page-filter-btn.active {
        background: #ffffff;
        color: black;
        border-color: #E2E8F0;
        box-shadow: 1px 1px 3px #ddd;
    }

.news-page-sort-dropdown {
    border: 1px solid #E2E8F0;
    padding: 8px 14px;
    border-radius: 6px;
    background: white;
    color: #718096;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .news-page-sort-dropdown:hover {
        border-color: #E2E8F0;
        color: #E2E8F0;
    }

/* Cards Grid */
.news-page-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px 60px;
}

.news-page-card-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .news-page-card-item:hover {
        transform: translateY(-4px);
    }

.news-page-card-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #E0E7FF 0%, #F3E8FF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

    .news-page-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-page-card-content {
    padding: 20px 0px;
}

.news-page-card-category {
    color: #FF9500;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.news-page-card-title {
    color: #2D3748;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.news-page-card-title-text {
    flex: 1;
}

.news-page-arrow-icon {
    color: #FF9500;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.news-page-card-item:hover .arrow-icon {
    transform: translateX(4px) translateY(-4px);
}

.news-page-card-description {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .news-page-hero-title {
        font-size: 36px;
    }

    .news-page-hero-subtitle {
        font-size: 16px;
    }

    .news-page-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-page-cards-grid {
        grid-template-columns: 1fr;
    }
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0px 40px 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 0 auto;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: #999 !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #333 !important;
    }

.pagination .page-link {
    color: #999;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    background-color: transparent;
    transition: all 0.3s ease;
}

    .pagination .page-link:hover {
        color: #333;
        background-color: transparent;
    }

.pagination .page-item.active .page-link {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 4px;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
}

.ellipsis {
    color: #999;
    padding: 0 4px;
}


.news-details-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.news-details-section {
    margin-bottom: 50px;
}

.news-details-heading {
    color: #FF9500;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-details-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.news-details-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

.news-details-image-caption {
    color: #999;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

.news-details-blockquote {
    border-left: 4px solid #FF9500;
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.news-details-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.news-details-copy-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

    .news-details-copy-link:hover {
        color: #666;
    }

.news-details-social-icons {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.news-details-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .news-details-social-icon:hover {
        border-color: #FF9500;
        color: #FF9500;
    }


    /*Contact CSS*/

.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 00px 0;
}

.contact-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

    .contact-image-col img {
        max-width: 100%;
        height: 100%;
        border-radius: 0px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        object-fit: cover;
    }

.contact-form-col {
    padding: 60px 40px;
    background-color: #ffffff;
}

.contact-title {
    font-size: 42px;
    font-weight: 500;
    color: #f39c12;
    margin-bottom: 20px;
    text-align: left;
}

.contact-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

    .form-group label .required {
        color: #dc3545;
    }

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    color: #666;
    transition: border-color 0.3s;
    height: auto;
}

    .form-control:focus {
        border-color: #f39c12;
        box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
        color: #333;
    }

    .form-control::placeholder {
        color: #bbb;
    }

textarea.form-control {
    resize: none;
    min-height: 120px;
}
/*
.form-row {
    margin-bottom: 20px;
}*/

.about-details p {
    color: #55575b;
    font-size: 19px;
    text-align: left;
}

.purpose-direction {
    background: #141d4b;
    text-align:center;
    padding:50px 50px 150px;
}

.services-group {
    margin-bottom: 30px;
}

    .services-group label {
        display: block;
        font-weight: 600;
        color: #333;
        font-size: 14px;
        margin-bottom: 12px;
    }

.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
}

    .custom-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        cursor: pointer;
        accent-color: #f39c12;
    }

    .custom-checkbox label {
        margin: 0;
        cursor: pointer;
        font-weight: 400;
        color: #666;
    }

.btn-get-started {
    background-color: #f39c12;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 30px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
}

    .btn-get-started:hover {
        background-color: #e67e22;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    }

    .btn-get-started:active {
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-image-col {
        min-height: auto;
        padding: 40px 20px;
    }

    .contact-form-col {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 32px;
    }

    .services-checkboxes {
        grid-template-columns: 1fr;
    }

    .contact-image-col img {
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    .form-control {
        font-size: 13px;
    }
}


/*About Us*/

.about-page-purpose {
    color: white;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}


.core-value-section {
    padding: 60px 20px 20px;
    text-align: center;
    background: white;
}


.mission-image {
    position:relative;
    margin-top:-200px;
}



.carousel-section {
    padding: 80px 20px;
    background-color: white;
}

.carousel-container {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: white;
    border: 2px solid #bababa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

    .icon-badge svg {
        width: 40px;
        height: 40px;
        stroke: #f39c12;
        fill: none;
        stroke-width: 1.5;
    }

.carousel-slide h2 {
    font-size: 36px;
    font-weight: 500;
    color: #131b48;
    margin-bottom: 20px;
    margin-top: 10px;
}

.carousel-slide p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .carousel-indicators li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
        transform: scale(0.8);
    }

        .carousel-indicators li.active {
            background-color: #ececec;
            transform: scale(0.8);
        }

.carousel-control-prev,
.carousel-control-next {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

.carousel-inner {
    position: relative;
}

@media (max-width: 768px) {
    .carousel-slide {
        padding: 40px 20px;
        min-height: 300px;
    }

        .carousel-slide h2 {
            font-size: 28px;
        }

        .carousel-slide p {
            font-size: 14px;
        }

    .icon-badge {
        width: 60px;
        height: 60px;
    }

        .icon-badge svg {
            width: 35px;
            height: 35px;
        }
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

    .team-header h2 {
        font-size: 3rem;
        font-weight:500;
        color: #f39c12;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .team-header p {
        font-size: 1rem;
        color: #666666;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        font-size: 20px;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22%, 1fr));
    gap: 30px;
}

@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-member-card {
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-member-card:hover {
        transform: translateY(-5px);
    }

.team-member-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
}

.team-member-title {
    font-size: 1.02rem;
    color: #5c5b5b;
    font-weight: 500;
}


.map-section {
    background: linear-gradient(135deg, #1a2551 0%, #243366 100%);
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-left {
    color: white;
}

.map-label {
    font-size: 15px;
    color: #a0aec0;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-title {
    font-size: 42px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.map-description {
    color: #959595;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.location-card {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.location-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}
    .location-icon img {
        width:100%;
    }
.location-info h3 {
    font-size: 19px;
    font-weight: 500;
    color: #e5e5e5;
    margin-bottom: 5px;
}

.location-info p {
    font-size: 15px;
    color: #959595;
    line-height: 1.6;
    margin: 0;
}

.map-right {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .map-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-title {
        font-size: 36px;
    }

    .map-iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .map-section {
        padding: 40px 15px;
    }

    .map-title {
        font-size: 28px;
    }

    .map-description {
        font-size: 14px;
    }

    .map-iframe {
        height: 300px;
    }
}


/*AirFreight CSS*/

.af-hero {
    background: #141d4b; /* deep navy */
    color: #e6eef8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .af-hero .af-hero-inner {
        max-width: 820px;
        margin: 0 auto;
        padding: 30px 20px;
    }

    .af-hero .af-hero-title {
        font-weight: 500;
        font-size: 48px;
        line-height: 1.05;
        margin-bottom: 24px;
        color: #ffffff;
    }

    .af-hero .af-hero-desc {
        color: rgb(135 135 135 / 98%);
        font-size: 20px;
        line-height: 1.8;
        margin: 0 auto 30px auto;
        max-width: 820px;
    }

    .af-hero .af-btn-group {
        display: inline-flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
        margin-top: 18px;
    }

    .af-hero .af-btn {
        border-radius: 8px;
        padding: 10px 22px;
        font-weight: 600;
        letter-spacing: 0.2px;
        box-shadow: 0 4px 10px rgba(3,8,23,0.35);
        transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
    }

        .af-hero .af-btn:hover {
            transform: translateY(-2px);
        }

.af-btn-primary {
    background: #ff9f2f;
    border: none;
    color: #16203a;
}

.af-btn-secondary {
    background: #ffffff;
    border: none;
    color: #16203a;
}

/* subtle decorative image on the left/right for large screens */
.af-hero::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 10px;
    width: 420px;
    height: 420px;
    background-image: url('/mnt/data/4ad3c120-31cc-4bfc-9b27-8319a47dbe9f.png');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    transform: rotate(8deg);
    pointer-events: none;
    display: none;
}

@media (min-width: 992px) {
    .af-hero {
        padding: 110px 0;
    }

        .af-hero .af-hero-title {
            font-size: 50px;
        }

        .af-hero::before {
            display: block;
        }
}

@media (max-width: 576px) {
    .af-hero {
        padding: 60px 12px;
    }

        .af-hero .af-hero-title {
            font-size: 32px;
        }

        .af-hero .af-hero-desc {
            font-size: 15px;
        }

        .af-hero .af-btn {
            padding: 8px 14px;
            font-size: 14px;
        }
}

.service-page-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-page-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-page-text h2 {
    font-size: 36px;
    font-weight: 500;
    color: #f39c12;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-page-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-page-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-page-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        font-size: 16px;
        color: #333333;
    }

        .service-page-features li:last-child {
            margin-bottom: 0;
        }

.checkmark-icon {
    width: 28px;
    height: 28px;
    background-color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

    .checkmark-icon svg {
        width: 16px;
        height: 16px;
        stroke: #ffffff;
        stroke-width: 3;
        fill: none;
    }

.service-page-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

    .service-page-image img {
        width: 100%;
        height: auto;
        display: block;
    }

@media (max-width: 768px) {
    .service-page-section {
        padding: 60px 0;
    }

    .service-page-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-page-text h2 {
        font-size: 32px;
    }

    .service-page-text p {
        font-size: 14px;
    }

    .service-page-features li {
        font-size: 14px;
    }
}

.dropdown-item:active {
    background-color: #141d4b;
}


/*Consolidation Accordian section Css*/

.consolidation-section {
    padding: 60px 0;
}

.consolidation-section-title {
    color: #ff9900;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.consolidation-section-subtitle {
    color: #6b7280;
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

    .accordion-item:last-child {
        border-bottom: none;
    }

.accordion-content {
    flex: 1;
    cursor: pointer;
}

.accordion-title {
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.accordion-description {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.accordion-icon {
    color: #d1d5db;
    font-size: 24px;
    flex-shrink: 0;
    margin-left: 20px;
    cursor: pointer;
    user-select: none;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.accordion-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.accordion-content {
    flex: 1;
}

.accordion-icon .icon-minus {
    display: none;
}

.accordion-icon:not(.collapsed) .icon-minus {
    display: inline-block;
}

.accordion-icon:not(.collapsed) .icon-plus {
    display: none;
}

/*Privacy Policy Page CSS*/

.privacy-container {
    background-color: #ffffff;
    padding: 60px 40px;
    min-height: 100vh;
}

.sidebar-section {
    margin-bottom: 60px;
}

.privacy-title {
    color: #FFA500;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.search-box {
    width: 100%;
    max-width: 310px;
    padding: 12px 16px;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    font-size: 16px;
    color: #999;
    background-color: #ffffff;
}

    .search-box::placeholder {
        color: #bbb;
    }

.cookie-notice {
    color: #7c7cdc;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 500px;
}

.term-date {
    color: #131b48;
}

.privacy-section-title {
    color: #FFA500;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 40px;
}

.privacy-section-text {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.term-data {
    color: #131b48;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 40px 20px;
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-section-title {
        font-size: 22px;
    }

    .privacy-cookie-notice {
        margin-bottom: 30px;
    }
}

.custom-container {
    padding:0px 10%;
}


/*Page not Found CSS*/

.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.error-content-left {
    padding: 60px 00px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.error-code-label {
    font-size: 14px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.error-heading {
    font-size: 56px;
    font-weight: 700;
    color: #FFA500;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.error-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.error-button-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.error-btn-back {
    border: 2px solid #dddddd;
    color: #333333;
    background-color: white;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .error-btn-back:hover {
        border-color: #999999;
        color: #000000;
        text-decoration: none;
    }

.error-btn-back-arrow {
    font-size: 16px;
}

.error-btn-base {
    background-color: #FFA500;
    color: white;
    padding: 10px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .error-btn-base:hover {
        background-color: #FF9500;
        color: white;
        text-decoration: none;
    }

.error-image-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 00px;
}

    .error-image-right img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

.card-title-arrow .fa {
    rotate: 45deg;
}

.news-page-card-title .fa {
    rotate: 45deg;
}

.country-dropdown select {
    border: 0px;
    font-weight: 600;
    color: #999999;
    padding: 0px;
    width: 119px;
}

.country-dropdown {
    display: flex;
    align-items: center;
}

.custom-dropdown {
    background: #ff9800;
    height: 40px;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

.math-captcha-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* border-radius: 10px; */
    flex-wrap: wrap;
}
.country-dropdown .fa-map-marker {
    font-size: 20px;
    color: #131b48;
}
@media (max-width: 991px) {
    .country-dropdown {
        justify-content: center;
        margin-bottom: 15px;
    }

        .country-dropdown select {
            background: #141d4b;
            color: white;
        }

        .country-dropdown .fa-map-marker {
            color: white;
        }
    .error-container {
        flex-direction: column;
    }

    .error-content-left {
        padding: 40px 20px;
        text-align: center;
    }

    .error-heading {
        font-size: 42px;
    }

    .error-button-group {
        justify-content: center;
    }

    .error-image-right {
        padding: 20px;
        order: -1;
    }
}


    .math-captcha-block br {
        display: none
    }

    .math-captcha-block a {
        background: #d8d8d8;
        color: black;
        padding: 8px;
        margin: 0px 10px;
        border-radius: 4px;
    }

    .math-captcha-block img {
        margin-bottom: 10px;
    }

#CaptchaInputText {
    margin: 0px 10px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding-left: 10px;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    display: none; /* IMPORTANT: Hidden by default */
    z-index: 9999; /* Ensure it is on top of all other content */
    justify-content: center;
    align-items: center;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey border */
    border-top: 8px solid #3498db; /* Blue top border to create spin effect */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite; /* Apply the spin animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.form-check-input {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.form-check-label {
    margin-bottom: 0px !important
}

