:root {
    --primary-color: #1a4b8c;
    --accent-color: #eb1f25;
    --text-color: #333;
    --light-bg: #f8f9fa;
        --navbar-height: 90px;
}



/* ================= BOOTSTRAP CAROUSEL FIX ================= */

/* ================= NAVBAR HEIGHT ================= */
/* ================= NAVBAR HEIGHT ================= */

/* ================= HERO CAROUSEL ================= */


/* Desktop */
/* #mainCarousel,
#mainCarousel .carousel-inner,
#mainCarousel .carousel-item {
    height: calc(100vh - var(--navbar-height));
} */

#mainCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* desktop */
    object-position: center;
    padding-top: 60px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    #mainCarousel,
    #mainCarousel .carousel-item {
        height: auto;
    }
section
{
    padding: 10px 0 !important;
}
    #mainCarousel .carousel-item img {
        height: auto;
        max-height: 70vh;
        object-fit: contain;   /* 🔥 FIX */
        background: #ffffff;  
        padding-top: 0px;    /* optional – looks premium */
    }
}

/* Small devices */
@media (max-width: 480px) {
    #mainCarousel .carousel-item img {
        max-height: 60vh;
        padding-top: 36px;
    }
}




.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.about-header {
    margin-bottom: 4rem;
    text-align: center;
}

.headtext {
    color: #1a4b8c;
}

.about-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.about-content {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;

}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0.8;
}

.about-text {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 300px;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.mission-card:hover .icon-box {
    background: var(--accent-color);
    transform: rotateY(180deg);
}

.key-points {
    margin-top: 3rem;
}

.key-point {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.key-point:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.key-point i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .about-image {
        margin-bottom: 2rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .mission-card {
        margin-bottom: 1.5rem;
    }

    .about-text {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-header h2 {
        font-size: 1.8rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ECDIS Section Styles */
.ecdis-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5282 0%, #3182ce 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Slider Wrapper */
.slider-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slider-container {
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: #2c5282;
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.slider-nav:hover svg {
    stroke: white;
}

.slider-nav svg {
    stroke: #2c5282;
    transition: stroke 0.3s ease;
}

.slider-nav-prev {
    left: -25px;
}

.slider-nav-next {
    right: -25px;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    background: white;
}

.slider-nav:disabled:hover svg {
    stroke: #2c5282;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2c5282;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(44, 82, 130, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #2c5282;
    width: 32px;
    border-radius: 6px;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Course Image */
.course-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 82, 130, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Course Content */
.course-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Course Footer */
.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.course-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-duration svg {
    color: #3182ce;
}

/* CTA Button */
.course-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2c5282;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.course-cta:hover {
    background: #edf2f7;
    color: #1a365d;
    gap: 10px;
}

.course-cta svg {
    transition: transform 0.3s ease;
}

.course-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-nav-prev {
        left: 10px;
    }

    .slider-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .ecdis-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .course-card {
        min-width: 300px;
        max-width: 300px;
    }

    .course-title {
        font-size: 1.2rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
     .slider-wrapper {
        padding: 0 10px;
    }
    
    .slider-container {
        overflow: hidden;
        padding: 20px 5px;
    }
    
    .slider-track {
        gap: 20px;
    }
    
    .course-card {
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .course-card {
        min-width: 280px;
        max-width: 280px;
    }

    .course-content {
        padding: 20px;
    }

    .course-image-wrapper {
        height: 180px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }

    .slider-nav-prev {
        left: 5px;
    }

    .slider-nav-next {
        right: 5px;
    }
}

/* why */
.why-choose-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-title {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    /* display: inline-block; */
    text-align: center;
    padding: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0066cc;
    border-radius: 2px;
}

.section-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #DC2B43;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-container {
    background: #DC2B43;
    transform: rotateY(180deg);
}

.feature-icon {
    font-size: 2rem;
    color: #0066cc;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: white;
    transform: rotateY(-180deg);
}

.feature-title {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.feature-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* training  */
.training-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.section-titleee {
    text-align: center;
    color: #124375;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #dc3545;
    border-radius: 2px;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: #fff;
    border: none;
    border-radius: 30px;
    color: #1a365d;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eb1f25;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: 0;
}

.tab-button:hover::before,
.tab-button.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.tab-button span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.tab-button:hover span,
.tab-button.active span {
    color: white;
}

.tab-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    min-height: 400px;
}

.tab-content.active {
    display: block;
    margin-bottom: 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.content-text h3 {
    color: #124375;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.content-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #124375;
    background: #e6eff9;
    padding: 11px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(20px);
}

.feature-item i {
    color: #124375;
    margin-right: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .training-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 2rem;
    }

    .content-text h3 {
        font-size: 1.5rem;
    }

    .section-titleee {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        flex-direction: column;
        width: 100%;
    }

    .tab-button {
        width: 100%;
        text-align: center;
    }
}

/* ##### */
.stats-section {
    background-color: #eb1f25;
    color: white;
    padding: 40px 0;
    border-radius: 10px;
    text-align: center;
}

.stats-section .stat-box {
    padding: 20px;
}

.stats-section .icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.stats-section .count {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

.stats-section p {
    font-size: 18px;
    margin-top: 5px;
}

/* Responsive styling */
@media (max-width: 767px) {
    .stats-section .count {
        font-size: 30px;
    }

    .stats-section p {
        font-size: 16px;
    }
}

/* feedback */
:root {
    --primary-color: #1a4b8c;
    --accent-color: #ff0000;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.testimonials-header p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author-info p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-content {
        font-size: 1rem;
    }

    .testimonial-author-image {
        width: 40px;
        height: 40px;
    }

    .testimonial-author-info h5 {
        font-size: 1rem;
    }

    .testimonial-author-info p {
        font-size: 0.8rem;
    }
}


/* blog section  page */
.blog-banner {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circle elements */
.blog-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.blog-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

/* Banner content */
.banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner-title {
    color: white;
    font-size: 3.5rem;
    font-family: 'Arial', sans-serif;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-family: 'Arial', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banner-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: #4f46e5;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-button:hover {
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .blog-banner {
        padding: 3rem 1.5rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-button {
        padding: 0.875rem 1.75rem;
    }
}








/* ==================================================about page========================== */

/* ===== GLOBAL ===== */
body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
  color: #333;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #1a4b8c, #0f2f57);
  color: #fff;
  padding: 100px 0;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.breadcrumb-list a {
  color: #fff;
  text-decoration: none;
}

/* ===== HEADINGS ===== */
.section-heading h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a4b8c;
}

.subheading {
  color: #eb1f25;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

/* ===== ABOUT ===== */
.about-image img {
  border-radius: 12px;
}

/* ===== VIDEO ===== */
.video-section {
  background: #f8f9fa;
}

.video-btn {
  width: 70px;
  height: 70px;
  background: #eb1f25;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

/* ===== FEATURES ===== */
.light-bg {
  background: #f9fafc;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.btn-main {
  display: inline-block;
  background: #1a4b8c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

/* ===== TEAM ===== */
.team-section {
  background: #f4f6f9;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.team-card img {
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h4 {
  margin-bottom: 5px;
  color: #1a4b8c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }

  section {
    padding: 50px 0;
  }
}

/* Fix banner CSS Add */