@font-face {
    font-family: 'Playfair Display';
    src: url('../lib/playfair-display/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} 
@font-face {
    font-family: 'Roboto';
    src: url('../lib/roboto/Roboto-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Regular';
    src: url('../lib/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Light';
    src: url('../lib/roboto/Roboto-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply font */
body {
    font-family: 'Roboto Regular' !important;
}
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

p { font-size: 17px;}
/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
   
}

/*** Button ***/
.btn {
    font-family: 'Roboto Light';
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Roboto Light';
    position: relative;
    margin-left: 35px;
    padding: 30px 0;
    font-size: 17px;
    font-weight: 700 !important;
    outline: none;
    transition: .5s;
    text-transform: uppercase;
}
.bg-yellow {
    background-color: #feca34 !important;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


.navbar.scrolled {
    background-color: #ffffff !important;
    transition: 0.3s;
}

.partners img{display:block;width:100%; height:75px;}

./* SECTION */
.about-section {
    background: #f8fafc;
}

/* HEADER */
.section-header h2 {
    font-size: 32px;
    line-height: 1.3;
}

.section-header .badge {
    font-size: 12px;
    letter-spacing: 1px;
}

/* FEATURE ITEMS (clean, not bulky) */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    font-weight: 500;
    color: #333;
}

.feature-item i {
    width: 38px;
    height: 38px;
    background: #e9f2ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
}

/* CONTACT */
.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 17px 18px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-box .icon {
    width: 45px;
    height: 45px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* IMAGE */
.image-wrapper {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    border-radius: 17px;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* SUBTLE DECORATIVE SHAPE */
.image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    z-index: -1;
}

.service-list li {
    font-size: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-list i {
    color: #0d6efd;
    margin-right: 10px;
    font-size: 30px;
}

.contact-box {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.image-box img {
    object-fit: cover;
    height: 100%;
}

.services-section {
    background: #f8fafc;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box img {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
}

.service-card h5 {
    font-size: 18px;
}

.service-card p {
    font-size: 17px;
}

.btn-outline-primary:hover {
    background: #0d6efd;
    color: #fff;
}

.why-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Title */
.section-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Icon */
.icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Image */
.image-wrapper {
    position: relative;
    padding: 10px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Optional floating effect */
.image-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(13,110,253,0.08);
    z-index: -1;
}

/* Section */
.contact-section {
    background: #f8fafc;
}

/* Titles */
.section-label {
    font-size: 12px;
    color: #0d6efd;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

/* Left content */
.contact-content {
    padding: 10px 10px;
}

/* Highlights */
.contact-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #444;
}

.highlight-item i {
    color: #0d6efd;
}

/* Info boxes */
.contact-info {
    margin-top: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-box .icon {
    width: 45px;
    height: 45px;
    background: #0d6efd;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form */
.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 17px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Inputs */
.custom-input {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #d8d1d1;
    padding: 10px 15px;
}

textarea.custom-input {
    height: auto;
}

/* Focus effect */
.custom-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13,110,253,0.1);
}

/* Button */
.submit-btn {
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    color: #fff;
    border-radius: 30px;
    padding: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Section */
.aim-section {
    background: #f8fafc;
}

/* Header */
.section-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
}

/* Card */
.aim-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.aim-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Top accent line */
.aim-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #4dabf7);
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

/* Different colors */
.icon-box.aim {
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
}

.icon-box.objective {
    background: linear-gradient(135deg, #28a745, #5cd65c);
}

.icon-box.mission {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

/* Text */
.aim-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.aim-card p {
    font-size: 16px;
    color: #555;
}

/* Background */
.rr-section {
    background: linear-gradient(135deg, #f8fafc, #eef3f8);
}

/* Partner Card */
.partner-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Image */
.partner-item img {
    max-height: 45px;
    width: auto;
    transition: transform 0.3s ease;
    opacity: 0.85;
}

/* Hover Effect */
.partner-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.partner-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Owl spacing fix */
.vendor-carousel .owl-stage {
    display: flex;
    align-items: center;
}
/* ===== SECTION BACKGROUND ===== */
.rr-section {
    background: #f8fafc;
}

/* ===== SLIDE ===== */
.slide-item {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 17px;
}

/* ===== IMAGE ===== */
.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* ===== GLOBAL DARK OVERLAY (soft) ===== */
.slide-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 20%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
}

/* ===== TEXT CONTAINER ===== */
.slide-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    color: #fff;
}

/* ===== TITLE (MAIN FIX ??) ===== */
.slide-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;

    /* STRONG readability */
    color: #fff;

    /* DARK GLASS BACKGROUND */
    background: rgba(0, 0, 0, 0.65);

    /* modern blur effect */
    backdrop-filter: blur(6px);

    padding: 8px 14px;
    border-radius: 8px;

    display: inline-block;

    /* subtle glow */
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* ===== DESCRIPTION ===== */
.slide-content p {
    font-size: 17px;
    line-height: 1.6;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);

    padding: 10px 14px;
    border-radius: 8px;

    margin: 0;
    max-width: 90%;
}

/* ===== HOVER EFFECT ===== */
.slide-item:hover img {
    transform: scale(1.08);
}

/* ===== SPACING ===== */
.testimonial-carousel .owl-item {
    padding: 12px;
}

/* ===== DOTS ===== */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 0px;
    height: 0px;
    background: #ccc;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    transition: 0.3s;
}

.owl-dot.active span {
    background: #0d6efd;
    transform: scale(1.2);
}

/* ===== SECTION ===== */
.aim-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

/* ===== HEADER ===== */
.section-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #faca08;
    font-weight: 600;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 10px;
}

/* ===== CARD ===== */
.aim-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 17px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eef2f7;
}

/* subtle top gradient line */
.aim-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #4f46e5);
    opacity: 0;
    transition: 0.3s;
}

/* hover effect */
.aim-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.aim-card:hover::before {
    opacity: 1;
}

/* ===== ICON BOX ===== */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #fff;

    position: relative;
    z-index: 1;
}

/* soft glow effect */
.icon-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

/* different colors */
.icon-box.aim {
    background: linear-gradient(135deg, #0d6efd, #3b82f6);
}
.icon-box.aim::after {
    background: #0d6efd;
}

.icon-box.objective {
    background: linear-gradient(135deg, #10b981, #22c55e);
}
.icon-box.objective::after {
    background: #10b981;
}

.icon-box.mission {
    background: linear-gradient(135deg, #ef4444, #f97316);
}
.icon-box.mission::after {
    background: #ef4444;
}

/* ===== TEXT ===== */
.aim-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.aim-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .aim-card {
        padding: 25px 20px;
    }
}
.sm-text, .sm-text p {
    font-size: 14px !important;
    font-family: 'Roboto Light';
}