/* =====================================================
   BASE & RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: 1740px;
    max-width: 95%;
    margin: auto;
}

.container-nav {
    width: 1740px;
    max-width: 95%;
    margin: auto;
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
    background: #082753;
    color: #fff;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 550;
}

.top-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact span {
    display: flex;
    font-family: 'Roboto';
    align-items: center;
    gap: 8px;
}

.top-social-links {
    display: flex;
    gap: 10px;
}

.top-social-links a {
    width: 34px;
    height: 34px;
    background: white;
    color: #082753;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.top-social-links a:hover {
    background: #9BC400;
    color: #fff;
}

/* =====================================================
   NAVIGATION
===================================================== */
nav {
    background: #f3f3f3;
    position: relative;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 75px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu li {
    width: 150px;
    flex: 0 0 119px;
    text-align: center;
}

.nav-menu a {
    display: block;
    width: 100%;
    padding: 35px 5px;
    text-align: center;
    font-size: 18px;
    color: #444;
    text-decoration: none;
}

.nav-menu a:hover {
    background: #9acd00;
    color: white;
}

.nav-menu li.active {
    background: #9acd00;
}

.nav-menu li.active a {
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #082753;
    border-radius: 2px;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    background: url("../images/hero-bg.jpg") no-repeat center/cover;
    max-height: 652px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero.is-fading .hero-tag,
.hero.is-fading #heroTitle,
.hero.is-fading #heroDesc,
.hero.is-fading .hero-right img {
    opacity: 0;
    transition: opacity 0.18s ease;
}

.hero-tag,
#heroTitle,
#heroDesc,
.hero-right img {
    opacity: 1;
    transition: opacity 0.25s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 39, 83, 0.3);
    z-index: -1;
}

.hero-container {
    position: relative;
    height: 100%;
}

.hero-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 720px;
}

.hero-content .swing {
    position: absolute;
    right: 1100px;
    top: 90px;
    transform: translate(50%, -50%);
}

.hero-left {
    width: 39%;
    padding-left: 20px;
    padding-bottom: auto;
}

.hero-right {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-right img {
    display: block;
    width: auto;
    max-width: 97%;
    height: 720px;
    object-fit: contain;
    vertical-align: bottom;
}

.hero-tag {
    display: inline-block;
    background: #9BC400;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 75px;
    line-height: 1;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h1 span {
    color: #9BC400;
}

.hero p {
    color: #fff;
    font-size: 23px;
    line-height: 1.5;
    max-width: 700px;
    margin-bottom: 45px;
}

.btn-primary {
    display: inline-block;
    background: #9BC400;
    color: #fff;
    padding: 7px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);

}

.hero-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: 0.25s;
}

.hero-arrow:hover {
    background: #9BC400;
    border-color: #9BC400;
}

.hero-arrow svg {
    width: 22px;
    height: 22px;
}

.hero-arrow-left {
    left: -40px;
}

.hero-arrow-right {
    right: -45px;
}

/* =====================================================
   AUDIENCE CARDS
===================================================== */
.audience {
    background-color: white;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.audience-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.audience-card:hover {
    background: #b7ef00;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.audience-card.is-active {
    background: #9BC400;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.audience-icon {
    width: 376px;
    padding: 15px;
    height: 149px;
    margin-bottom: 15px;
    display: block;
    transition: filter 0.3s ease;
}

.audience-card h3 {
    font-size: 25px;
    color: #0a2a57;
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Roboto Condensed';
    min-height: 80px;
    /* margin-bottom: 25px; */
}

.audience-arrow {
    width: 32px;
    height: 32px;
}

/* =====================================================
   ABOUT
===================================================== */
.about {
    padding: 90px 0;
    background: linear-gradient(180deg, #041b42 0%, #07295c 55%, #16488e 100%);
    position: relative;
    z-index: 1;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37%;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    max-width: 86%;
    height: auto;
    padding-bottom: 49px;
    display: block;
}

.about-divider {
    width: 3px;
    height: 550px;
    background: repeating-linear-gradient(to bottom,
            #1f5fb5 0 8px,
            transparent 10px 12px);
}

.about-content {
    flex: 1.3;
    color: #fff;
    padding-left: 30px;
}

.section-tag {
    display: inline-block;
    background: #9BC400;
    color: #fff;
    padding: 6px 29px;
    border-radius: 40px;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 1px;
}

.about-content h2 {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-experience {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 35px;
    word-spacing: 11px;
}

.about-list {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 22px;
}

.about-list li i {
    color: #f5f5f5;
    margin-top: 4px;
    font-size: 20px;
}



/* =====================================================
   SERVICES
===================================================== */
.services {
    padding: 90px 0;
    background: #f8f8f8;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 45px;
    margin-left: 42px;
    color: #0a2958;
    font-weight: 400;
    margin-bottom: 40px;
}

.services-wrapper {
    position: relative;
}

.Services-Offered-wrapper {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-left: 40px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 95%;
    margin: 0 auto;
}

.service-card {
    background: #f4f5f6;
    border: 1px solid #e3e5e7;
    border-radius: 45px;
    padding: 45px 40px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    background: #FFB5C0;
    border-color: #FFB5C0;
    transform: translateY(-5px);
    box-shadow: 0 19px 30px rgba(0, 0, 0, 0.18);
}

.service-card:hover .btn-primary {
    background: #f5f6f7;
    color: #062247;
    border-color: #082753;
}

.service-card:hover .service-icon {
    background: #f5f6f7;
    color: #062247;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #9BC400;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 35px;
    height: 35px;
    padding: 2px;
}

.service-header h3 {
    font-size: 25px;
    line-height: 1.3;
    color: #082753;
    font-weight: 700;
}

.service-card p {
    font-size: 18px;
    font-family: 'Roboto';
    line-height: 1.8;
    color: #082753;
    font-weight: 700;
    margin-bottom: 30px;
    flex: 1;
}

.service-card .btn-primary {
    align-self: flex-end;
}

.service-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #9BC400;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.service-slider-btn:hover {
    background: #7ea100;
    transform: translateY(-50%) scale(1.05);
}

.service-prev {
    left: -26px;
}

.service-next {
    right: -26px;
    background: #ececec;
    color: #082753;
}

.service-next:hover {
    background: #d4d4d4;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials {
    padding: 80px 0 12px;
    background: #f8f8f8;
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    margin-bottom: 17px;
}

.testimonialSwiper {
    padding-bottom: 20px;
}



.swiper-wrapper {
    padding-bottom: 20px;
}


.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);

    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 580px;
}

.testimonial-quote-top {
    width: 28px;
    height: 28px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.testimonial-quote-bottom {
    width: 28px;
    height: 28px;
    margin-left: auto;
    margin-top: 15px;
    flex-shrink: 0;
}

.testimonial-card p {
    flex: 1;
    color: #12315f;
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 600;
    line-height: 1.8;
    text-align: justify;
    margin: 20px 0;
    padding: 0 30px;
    word-break: break-word;
}


/* Testimonial Read More Link Styles */
.testimonial-read-more {
    color: #f37d8f !important;
    font-size: 0.85em !important;
    text-transform: lowercase !important;
    /* text-decoration: none !important; */
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
    display: inline !important;
    margin-left: 2px !important;
}


/* Optional: Remove default link styling if needed */
.testimonial-card p a {
    text-decoration: none !important;
}

.testimonial-footer {
    margin-top: auto;
}

.testimonial-card h3,
.testimonial-card span {
    text-align: center;
}

.testimonial-card p::-webkit-scrollbar {
    width: 3px;
}

.testimonial-card p::-webkit-scrollbar-thumb {
    background: #9BC400;
    border-radius: 10px;
}

.testimonial-card p::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-card h3 {
    text-align: center;
    color: #12315f;
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.testimonial-card span {
    display: block;
    text-align: center;
    color: #111;
    font-size: 17px;
    font-weight: 400;
    flex-shrink: 0;
    margin-bottom: 5px;
}

.testimonial-nav {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: none;
}

.testimonial-prev {
    background: #fff;
}

.testimonial-prev:hover {
    background: #e8e8e8;
}

.testimonial-next {
    background: #9BC400;
}

.testimonial-next:hover {
    background: #7ea100;
}

.testimonial-prev img,
.testimonial-next img {
    width: 18px;
}



/* =====================================================
   TESTIMONIALS - RESPONSIVE FIXES
===================================================== */

/* --- 768px (tablet) --- */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0 20px;
    }



    .testimonialSwiper .swiper-slide {
        width: 100% !important;
        /* Force single slide */
    }

    .testimonial-card {
        min-height: 420px;
        max-height: none;
        padding: 20px 18px;
    }

    .testimonial-quote-top,
    .testimonial-quote-bottom {
        width: 20px;
        height: 20px;
    }

    .testimonial-quote-top {
        margin-bottom: 10px;
    }

    .testimonial-quote-bottom {
        margin-top: 10px;
    }

    .testimonial-card p {
        flex: 1;
        padding: 0;
        text-align: justify;
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonial-card h3 {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .testimonial-footer {
        margin-top: auto;
        padding-top: 15px;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial-card span {
        font-size: 14px;
        line-height: 1.5;
    }



    .testimonial-card span {
        font-size: 15px;
    }

    .testimonial-nav {
        margin-top: 20px;
        gap: 12px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 38px;
        height: 38px;
    }

    .testimonial-prev img,
    .testimonial-next img {
        width: 14px;
    }
}

/* --- 576px (small mobile) --- */
@media (max-width: 576px) {
    .testimonials {
        padding: 30px 0 15px;
    }

    .testimonials .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .testimonial-card {
        min-height: 380px;
        padding: 18px 15px;
    }

    .testimonial-quote-top,
    .testimonial-quote-bottom {
        width: 16px;
        height: 16px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .testimonial-card h3 {
        font-size: 16px;
    }

    .testimonial-card span {
        font-size: 13px;
    }

    .testimonial-nav {
        margin-top: 15px;
        gap: 10px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 34px;
        height: 34px;
    }

    .testimonial-prev img,
    .testimonial-next img {
        width: 12px;
    }
}

/* =====================================================
   ACHIEVEMENTS
===================================================== */
.achievements {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #051d46 0%, #1b4d97 100%);
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.achievements .section-tag {
    margin-bottom: 20px;
}

.achievements h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
}

.achievements h2 span {
    color: #b8e100;
}

.achievement-desc {
    color: #fff;
    font-size: 25px;
    line-height: 1.5;
    max-width: 1100px;
    margin: 0 auto 8px;
}

.achievement-desc:last-of-type {
    margin-bottom: 0;
}

.achievementSwiper {
    margin-top: 50px;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.achievementSwiper .swiper-slide {
    height: auto;
}

.achievementSwiper .swiper-slide img {
    width: 100%;
    max-height: 422px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.achievementSwiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.achievementSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background: #fff;
}

.achievementSwiper .swiper-pagination-bullet-active {
    background: #9bc400;
}

/* =====================================================
   SVC SECTION
===================================================== */
.svc-section {
    background: #eceeef;
    padding: 80px 0 50px;
}

.svc-heading {
    text-align: center;
    margin-bottom: 55px;
}

.svc-heading h2 {
    color: #082753;
    font-size: 50px;
    font-weight: 500;
    margin: 18px 0 0;
    line-height: 1.3;
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.svc-illustration {
    height: 100%;
    position: relative;
}

.svc-illustration img {
    width: 100%;
    height: 80%;
    border-radius: 12px;
    object-fit: cover;
}

.svc-dots {
    position: absolute;
    left: -10px;
    bottom: -18px;
    width: 60px;
    height: 40px;
    background-image: radial-gradient(#c9a02c 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: -1;
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.svc-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.svc-icon {
    width: 61px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: #9BC400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-icon svg {
    width: 40px;
    height: 35px;
}

.svc-item h3 {
    color: #082753;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-item p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.svc-cards {
    display: flex;
    flex-direction: column;
}

.svc-card {
    padding: 30px 33px;
    display: flex;
    gap: 16px;
    background: #b9d94f;
    border-radius: 14px;
    margin-top: 10px;
    align-items: flex-start;
}

.svc-card-icon {
    width: 61px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card-icon svg {
    width: 40px;
    height: 40px;
}

.svc-card h3 {
    color: #082753;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-card p {
    color: #17331f;
    font-size: 16px;
    line-height: 1.6;
}

/* =====================================================
   CLIENT CATEGORIES SECTION
===================================================== */
.cat-section {
    background: linear-gradient(180deg, #042045 0%, #042147 49%, #0C4EA6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cat-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cat-text h2 {
    color: #c7cdd7;
    font-size: 45px;
    font-weight: 400;
    margin: 18px 0 40px;
}

.cat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cat-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cat-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: #fcfcfd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.cat-check svg {
    width: 11px;
    height: 11px;
}

.cat-item h3 {
    color: #f2f4f7;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.cat-item p {
    color: #a8b1c0;
    font-size: 16px;
    line-height: 1.5;
}

.cat-image {
    position: relative;
    height: 380px;
}

.cat-image .cat-accent {
    position: absolute;
    right: -14px;
    bottom: -20px;
    width: 88%;
    height: 82%;
    background: #9BC400;
    border-radius: 8px;
    z-index: 0;
}

.cat-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

/* =====================================================
   WHY CHOOSE ME SECTION
===================================================== */
.wc-section1 {
    /* background: #eceeef; */
    padding: 80px 10px;
}

.wc-heading1 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 51px;
}

.wc-heading1 h2 {
    color: #062246;
    font-size: 50px;
    font-weight: 400;
    margin: 18px 0 0;
}

.wc-content1 {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    margin-bottom: 50px;
}

.wc-text1 p {
    color: #070707;
    font-size: 16px;
    line-height: 2.7;
    margin-bottom: 18px;
}

.wc-text1 strong {
    color: #082753;
}

.wc-image1 img {
    width: 90%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.wc-benefits1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: linear-gradient(180deg, #042045 0%, #042147 49%, #0C4EA6 100%);
    border-radius: 16px;
    padding: 35px 45px;
}

.wc-benefit-right {
    flex: 1;
}

.wc-benefit-right h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
}

.wc-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.wc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
}

.wc-benefit-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    padding: 2px;
    background: #f9f9f8;
    color: #070707;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.wc-benefits-icon {
    flex-shrink: 0;
    width: 320px;
}

.wc-benefits-icon img {
    width: auto;
    height: 90%;
    display: block;
    border-radius: 12px;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    color: #fff;
    position: relative;
    z-index: 1;
}

.footer-cta {
    background: url("../images/footer-bg.jpg") center/cover no-repeat;
    position: relative;
}

.footer-cta .overlay {
    text-align: center;
    padding: 70px 20px;
}

.badge {
    display: inline-block;
    background: #b8d400;
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-cta h2 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #fff;
}

.footer-cta p {
    font-size: 25px;
    margin-bottom: 35px;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    background: #b8d400;
    color: #fff;
    font-size: 19px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #9ab800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-main {
    width: 100%;
    background: linear-gradient(180deg, #042045 0%, #042147 49%, #0C4EA6 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 91px;
    padding: 60px 64px;
    align-items: stretch;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 40px;
}

.footer-logo {
    width: 398px;
    margin-bottom: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
}

.footer-logo img {
    width: 100%;
    display: block;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-info:last-child {
    margin-bottom: 0;
}

.footer-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.footer-info-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-info p {
    margin: 0;
    line-height: 1.6;
    font-size: 21px;
    color: #fff;
    padding-top: 8px;
}

.footer-col h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-line {
    width: 45px;
    height: 4px;
    background: #b8d400;
    display: block;
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #b8d400;
    padding-left: 5px;
}

.footer-social p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    max-width: 380px;
    margin: 0 0 35px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #b8d400;
    transform: translateY(-3px);
}

.footer-social-icons a i {
    color: #082753;
    font-size: 18px;
}

.footer-social-icons a:hover i {
    color: #fff;
}

.copyright {
    text-align: center;
    background: #08264f;
    padding: 18px 0;
    font-size: 18px;
    color: #fff;
}

.copyright p {
    margin: 0;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */
@media (max-width: 1600px) {



    .hero {
        max-height: 631px;
    }


}

@media (max-width: 1500px) {

    .hero h1 {
        font-size: 60px;
    }


    .hero {
        max-height: 605px;
    }

    .hero-tag {
        font-size: 22px;
    }


    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 1400px) {

    .hero h1 {
        font-size: 70px;
    }

    .hero {
        max-height: 590px;
    }

    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 1300px) {

    .hero h1 {
        font-size: 62px;
    }

    .hero {
        max-height: 576px;
    }

    .hero p {
        font-size: 14px;
    }
}


/* --- 1200px (laptop) --- */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 72px;
    }

    .hero {
        max-height: 550px;
    }

    .hero-tag {
        font-size: 17px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .service-header h3 {
        font-size: 18px;
        line-height: 1.3;
        color: #082753;
        font-weight: 700;
    }

    .about-experience {
        font-size: 17px;
    }


    .about-list li {
        font-size: 17px;
    }



    .about-content h2 {
        font-size: 39px;
    }

    .about-content h3 {
        font-size: 27px;
    }

    .svc-heading h2,
    .wc-heading1 h2,
    .cat-text h2 {
        font-size: 40px;
    }

    .section-title {
        font-size: 35px;
    }

    .service-card p {
        font-size: 14px;
    }


    .footer-cta h2 {
        font-size: 48px;
    }

    .footer-main {
        gap: 50px;
        padding: 50px 40px;
    }

    .footer-col h3 {
        font-size: 28px;
    }

    .footer-info p,
    .footer-links a {
        font-size: 18px;
    }

    .audience-icon {
        width: 82px;
        height: 82px;
        margin: 0 auto 20px;
    }

    .audience-card h3 {
        font-size: 16px;
    }
}

/* --- 1100px --- */
@media (max-width: 1100px) {
    .hero-content {
        flex-wrap: wrap;
        min-height: auto;
        padding: 60px 0;
    }

    .container {
        width: 1740px;
        max-width: 67%;
        padding-left: 30px;
        padding-right: 30px;
    }




    .hero {
        max-height: 576px;
    }

    .top-contact span {
        font-size: 10px;
        flex-wrap: wrap;
    }

    .audience-icon {
        width: 82px;
        height: 82px;
        margin: 0 auto 20px;
    }

    .audience-card h3 {
        font-size: 16px;
    }

    .nav-menu {
        gap: 10px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-right img {
        height: 314px;
        max-width: 100%;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-slider-btn {
        display: none;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-illustration {
        max-width: 380px;
        margin: 0 auto;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .cat-list {
        grid-template-columns: 1fr;
    }

    .cat-image {
        height: 300px;
        margin-top: 10px;
    }

    .wc-content1 {
        grid-template-columns: 1fr;
    }

    .wc-benefits1 {
        flex-direction: column;
        gap: 40px;
    }

    .wc-benefits-icon {
        margin: 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .footer-col:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }

    .footer-col:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 40px;
    }

    .footer-cta h2 {
        font-size: 38px;
    }

    .footer-cta p {
        font-size: 20px;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-divider {
        display: none;
    }

    .about-image {
        width: 60%;
    }

    .about-content {
        text-align: center;
        padding-left: 0;
    }

    .about-list li {
        justify-content: center;
    }

    .testimonial-card {
        min-height: 520px;
        max-height: 580px;
        padding: 30px 25px 30px;
    }

    .testimonial-card p {
        font-size: 17px;
        padding: 0 20px;
    }

    .achievementSwiper .swiper-slide img {
        max-height: 350px;
    }
}

/* --- 992px (tablet) --- */
@media (max-width: 992px) {
    .nav-menu {
        /* gap: 20px; */
    }


    .hero h1 {
        font-size: 39px;
    }

    .btn-primary {
        font-size: 17px;
    }

    .hero {
        max-height: 716px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .Services-Offered-wrapper {
        margin-left: -12px;
    }

    .nav-logo img {
        height: 50px;
    }

    .nav-menu a {
        padding: 25px 10px;
        font-size: 16px;
    }

    .top-bar {
        font-size: 15px;
    }

    .hero-right img {
        height: 387px;
        max-width: 100%;
    }

    .hero-tag {
        font-size: 17px;
        padding: 10px 20px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-experience {
        font-size: 20px;
    }

    .about-list li {
        font-size: 18px;
    }


    .hero-arrow-left {
        left: -20px;
    }

    .hero-arrow-right {
        right: -20px;
    }


    .section-title {
        font-size: 34px;
        margin-left: 20px;
    }

    .service-header h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 15px;
    }

    .svc-heading h2,
    .wc-heading1 h2 {
        font-size: 36px;
    }

    .cat-text h2 {
        font-size: 34px;
    }

    .audience-card h3 {
        font-size: 24px;
        min-height: 60px;
    }

    .audience-icon {
        width: 200px;
        height: 100px;
        padding: 10px;
    }

    .footer-cta h2 {
        font-size: 34px;
    }

    .footer-cta p {
        font-size: 18px;
    }

    .badge {
        font-size: 18px;
        padding: 8px 20px;
    }

    .footer-main {
        padding: 20px 30px;
        gap: 25px;
    }

    .footer-col h3 {
        font-size: 24px;
    }

    .footer-info p,
    .footer-links a {
        font-size: 16px;
    }

    .footer-logo {
        width: 250px;
    }

    .testimonial-card {
        min-height: 480px;
        max-height: 566px;
        padding: 25px 20px;
    }

    .testimonial-card p {
        font-size: 17px;
        padding: 0 15px;
    }

    .testimonial-card h3 {
        font-size: 24px;
    }

    .testimonial-card span {
        font-size: 17px;
    }

    .achievements h2 {
        font-size: 38px;
    }

    .achievement-desc {
        font-size: 20px;
    }

    .achievementSwiper .swiper-slide img {
        height: 280px;
    }
}

/* --- 768px (mobile) --- */
@media (max-width: 768px) {
    .top-contact {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }


    .container-nav {
        width: 1740px;
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

    .nav-menu li {
        width: 150px;
        flex: 0 0 58px;
        text-align: center;
    }

    .top-bar {
        font-size: 15px;
        display: none;
    }

    .about-wrapper {
        display: flex;
        align-items: center;
        gap: 0px;
    }

    .Services-Offered-wrapper {
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .Testimonials-wrapper {
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .top-contact span {
        font-size: 9px;
        flex-wrap: wrap;
    }

    .top-social-links {
        align-self: center;
    }

    .top-social-links a {
        width: 28px;
        height: 28px;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        position: relative;
        height: 71px;
    }

    .nav-logo img {
        height: 55px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: #f3f3f3;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 16px 20px;
        font-size: 18px;
        border-bottom: 1px solid #e0e0e0;
    }

    .hero {
        max-height: 632px;
        /* padding-top: 71px; */
    }

    .hero-content {
        min-height: auto;
        /* padding: 30px 0; */
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .hero-tag {
        font-size: 18px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }

    .hero-right img {
        height: 325px;
    }

    .hero-arrow {
        display: none;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audience-card {
        padding: 30px 20px;
    }

    .audience-card h3 {
        font-size: 22px;
        min-height: auto;
        margin-bottom: 15px;
    }

    .audience-icon {
        width: 180px;
        height: 90px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
        min-height: auto;
    }

    .service-header h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 28px;
        margin-left: 0;
        text-align: center;
    }

    .about {
        padding: 60px 0;
    }

    .about-image {
        width: 80%;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .about-experience {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .about-list li {
        font-size: 16px;
        margin-bottom: 15px;
        justify-content: center;
        text-align: left;
    }

    .svc-section {
        padding: 60px 0;
    }

    .svc-heading h2 {
        font-size: 28px;
        margin: 10px 0 0;
    }

    .svc-heading {
        margin-bottom: 35px;
    }

    .svc-item h3,
    .svc-card h3 {
        font-size: 16px;
    }

    .svc-item p,
    .svc-card p {
        font-size: 14px;
    }

    .svc-card {
        padding: 20px;
    }

    .cat-section {
        padding: 60px 0;
    }

    .cat-text h2 {
        font-size: 28px;
        margin: 10px 0 25px;
    }

    .cat-item h3 {
        font-size: 16px;
    }

    .cat-item p {
        font-size: 14px;
    }

    .cat-image {
        height: 250px;
    }

    .wc-section1 {
        padding: 60px 15px;
    }

    .wc-heading1 h2 {
        font-size: 28px;
        margin: 10px 0 0;
    }

    .wc-text1 p {
        font-size: 14px;
        line-height: 2;
    }

    .wc-benefits1 {
        padding: 25px 20px;
        flex-direction: column;
    }

    .wc-benefit-right h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .wc-benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wc-benefit-item {
        font-size: 15px;
    }

    .wc-benefits-icon {
        width: 100%;
    }

    .testimonials {
        padding: 50px 0 30px;
    }

    .testimonial-card {
        min-height: auto;
        max-height: none;
        padding: 20px;
    }

    .testimonial-quote-top,
    .testimonial-quote-bottom {
        width: 24px;
        height: 24px;
    }

    .testimonial-card p {
        font-size: 15px;
        padding: 0 10px;
        margin: 15px 0;
        line-height: 1.6;
    }

    .testimonial-card h3 {
        font-size: 20px;
        margin-top: 10px;
    }

    .testimonial-card span {
        font-size: 15px;
    }

    .testimonial-nav {
        margin-top: 25px;
        gap: 15px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }

    .achievements {
        padding: 50px 0;
    }

    .achievements h2 {
        font-size: 28px;
    }

    .achievement-desc {
        font-size: 16px;
        padding: 0 15px;
    }

    .achievementSwiper {
        margin-top: 30px;
    }

    .achievementSwiper .swiper-slide img {
        min-height: 535px;
    }

    .achievementSwiper .swiper-pagination {
        margin-top: 20px;
    }

    .footer-cta .overlay {
        padding: 40px 20px;
    }

    .footer-cta h2 {
        font-size: 28px;
    }

    .footer-cta p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .badge {
        font-size: 16px;
        padding: 6px 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 30px;
        width: 100%;
    }

    .footer-col:not(:last-child) {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 25px;
    }

    .footer-col:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }

    .footer-col h3 {
        font-size: 22px;
    }

    .footer-info p,
    .footer-links a,
    .footer-social p {
        font-size: 15px;
    }

    .footer-logo {
        width: 200px;
    }

    .footer-social p {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-social-icons {
        margin-top: 0;
    }

    .footer-social-icons a {
        width: 36px;
        height: 36px;
    }

    .footer-social-icons a i {
        font-size: 15px;
    }

    .copyright {
        font-size: 14px;
        padding: 12px 0;
    }
}

/* --- 576px (small mobile) --- */
@media (max-width: 576px) {
    .top-contact span {
        font-size: 9px;
        gap: 8px;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-tag {
        font-size: 15px;
        padding: 6px 14px;
    }

    .hero-right img {
        height: 311px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 10px 20px;
    }

    .section-tag {
        font-size: 14px;
        padding: 4px 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .about-content h3 {
        font-size: 18px;
    }

    .about-experience {
        font-size: 16px;
        word-spacing: 4px;
    }

    .about-list li {
        font-size: 14px;
    }

    .audience-card h3 {
        font-size: 20px;
    }

    .audience-icon {
        width: 150px;
        height: 75px;
    }

    .service-header h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-card {
        padding: 20px;
        border-radius: 30px;
    }

    .svc-heading h2 {
        font-size: 24px;
    }

    .svc-item {
        gap: 12px;
    }

    .svc-icon,
    .svc-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .svc-icon svg,
    .svc-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .svc-item h3,
    .svc-card h3 {
        font-size: 14px;
    }

    .svc-item p,
    .svc-card p {
        font-size: 13px;
    }

    .cat-text h2 {
        font-size: 24px;
    }

    .cat-item h3 {
        font-size: 14px;
    }

    .cat-item p {
        font-size: 13px;
    }

    .cat-image {
        height: 200px;
    }

    .wc-heading1 h2 {
        font-size: 24px;
    }

    .wc-benefit-right h3 {
        font-size: 20px;
    }

    .wc-benefit-item {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-card p {
        font-size: 14px;
        padding: 0 5px;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial-card span {
        font-size: 14px;
    }

    .testimonial-quote-top,
    .testimonial-quote-bottom {
        width: 20px;
        height: 20px;
    }

    .achievements h2 {
        font-size: 24px;
    }

    .achievement-desc {
        font-size: 14px;
    }

    .achievementSwiper .swiper-slide img {
        min-height: 180px;
        max-height: fit-content;
    }

    .footer-cta .overlay {
        padding: 30px 15px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

    .footer-cta p {
        font-size: 14px;
    }

    .badge {
        font-size: 14px;
        padding: 5px 14px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .footer-main {
        padding: 20px 25px;
        gap: 25px;
    }

    .footer-col h3 {
        font-size: 20px;
    }

    .footer-info p,
    .footer-links a,
    .footer-social p {
        font-size: 14px;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-info-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .footer-info-icon img {
        width: 14px;
        height: 14px;
    }

    .footer-links li {
        padding: 10px 0;
    }

    .footer-social-icons a {
        width: 32px;
        height: 32px;
    }

    .footer-social-icons a i {
        font-size: 13px;
    }

    .copyright {
        font-size: 12px;
        padding: 10px 0;
    }
}