/* ================= BANNER SECTION ================= */
.banner-section {
    padding: 50px 20px;
    background-image: url("https://images.unsplash.com/photo-1669049700424-2ee27c54341d?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHx2aXN1YWwtc2VhcmNofDF8fHxlbnwwfHx8fHw%3D");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: scroll;  
    position: relative;
    display: flex;
    align-items: center;
    z-index: 0;
}

/* Black overlay */
.banner-section::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    background-color: rgba(0, 0, 0, 0.5); /* adjust opacity as needed */
    z-index: 1;
}

/* Content container stays above overlay */
.banner-section .banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.banner-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    animation: slideFadeLeft 1.2s ease forwards;
}

.banner-content h1 span {
    color:#0ce5ecf8;
}

.banner-content p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    max-width: 500px;
    animation: slideFadeLeft 1.6s ease forwards;
}

/* BUTTONS */
.banner-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
}

.btn {
    width: 250px;
    padding: 12px 50px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: 0.4s;
    background: linear-gradient(135deg, #1a5280, #15a3a3) !important;
}

/* Primary Button */
.primary-btn {
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    color: #fff;
    box-shadow: 0 12px 25px rgba(25, 133, 127, 0.45);
}

.primary-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #1e79c4, #01ffff);
    box-shadow: 0 18px 35px rgba(25, 133, 127, 0.45);
}

/* Secondary Button */
.secondary-btn {
    border: 3px solid #15a3a3;
    color: #ffffff;
    background: transparent;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* RIGHT IMAGE */
.banner-image {
    position: relative;
    animation: slideFadeRight 1.4s ease forwards;
}

.banner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transition: 0.5s;
}

.banner-image img:hover {
    transform: scale(1.06);
}

/* ================= ANIMATIONS ================= */
@keyframes slideFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}


.container.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

/* LEFT CONTENT */
.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #6a4cff;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* STATS */
.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.story-stats .stat h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.story-stats .stat span {
    font-size: 14px;
    color: #777;
}

/* Colors */
.green { color: #15a3a3; }
.blue { color: #15a3a3; }
.purple { color: #15a3a3; }
.orange { color: #15a3a3; }

/* RIGHT IMAGE */
.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.story-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container.grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .story-image img {
        max-width: 100%;
        margin: auto;
    }
}

@media (max-width: 480px) {
    .story-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================
   GLOBAL RESET & BODY
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f9f9ff;
    color: #1e293b;
}

/* =========================
   OUR STORY SECTION
========================= */
.our-story {
    padding-top: 80px; 
    background: #f9f9ff;
}

.container.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   STORY CONTENT
========================= */
.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
}

.story-content h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #000000);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.story-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =========================
   STORY STATS
========================= */
.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.story-stats .stat {
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(-45deg, #0b1c4d, #10296c, #1a2a75, #0b1c4d);
    border: 3px solid #77b377;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    cursor: default;
}

/* Glow animation on hover */
.story-stats .stat::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    top: 0;
    left: -100%;
    transition: 0.6s;
}

.story-stats .stat:hover::before {
    left: 100%;
}

.story-stats .stat:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Stat numbers */
.story-stats .stat h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Stat labels */
.story-stats .stat span {
    font-size: 14px;
    color: #ffffff;
}

/* Stat colors */
.green { color:  #ffffff; }
.blue { color:  #ffffff; }
.purple { color:  #ffffff; }
.orange { color:  #ffffff; }

/* =========================
   STORY IMAGE
========================= */
.story-image img {
    width: 100%;
    border-radius: 16px;
    border: 4px solid #ffffff;

    /* Enhanced layered shadow */
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25),
        0 25px 60px rgba(28, 124, 124, 0.35);

    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.story-image img:hover {
    transform: scale(1.05);

    /* Stronger shadow on hover */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35),
        0 35px 80px rgba(28, 124, 124, 0.45);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .container.grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .story-image img {
        max-width: 100%;
        margin: auto;
    }
}

@media (max-width: 480px) {
    .story-stats {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b1c4d;
    overflow-x: hidden;
}

/* ===============================
   COMMON BLUE SECTION STYLE
================================ */
.mission-section,
.vision-section {
    width: 100%;
    padding: 0;
    background: linear-gradient(180deg, #0b1c4d 0%, #10296c 100%);
    overflow: hidden;
}

/* ===============================
   COMMON HEADER STYLE
================================ */
.mission-header,
.vision-header {
    text-align: center;
    max-width: 750px;
    margin: 60px auto 40px;
    animation: fadeUp 1.2s ease forwards;
}

.mission-header h2,
.vision-header h2 {
    padding: 40px 20px 20px;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.mission-header p,
.vision-header p {
    margin-top: 12px;
    font-size: 16px;
    color: #cbd5f5;
    line-height: 1.7;
}

/* underline */
.underline,
.vision-underline {
    display: block;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ffb400, #22c55e);
    margin: 14px auto 0;
    border-radius: 20px;
    animation: underlineGrow 1.4s ease forwards;
}

/* ===============================
   GRIDS
================================ */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 6em;
    background: linear-gradient(90deg, #0dc7cef8, #291b6d);
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 4em 90px;
}

/* ===============================
   CARD STYLE (UNCHANGED)
================================ */
.mission-card,
.vision-card {
    position: relative;
    padding: 25px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    text-align: center;
    overflow: hidden;
    animation: cardFade 1.2s ease forwards;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-16px) scale(1.04);
    box-shadow: 0 50px 90px rgba(0,0,0,0.25);
}

/* stagger */
.mission-card:nth-child(1),
.vision-card:nth-child(1) { animation-delay: 0.2s; }
.mission-card:nth-child(2),
.vision-card:nth-child(2) { animation-delay: 0.4s; }
.mission-card:nth-child(3),
.vision-card:nth-child(3) { animation-delay: 0.6s; }
.mission-card:nth-child(4) { animation-delay: 0.8s; }

/* glow border */
.mission-card::before,
.vision-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(120deg, transparent, #15a3a3);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 0.55;
}

/* ===============================
   ICONS
================================ */
.icon-wrap,
.vision-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    background: #0b1c4d;
    animation: floatIcon 4s ease-in-out infinite;
}

/* ===============================
   TEXT
================================ */
.mission-card h3,
.vision-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cardFade {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes underlineGrow {
    from { width: 0; }
    to { width: 90px; }
}

@keyframes floatIcon {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .vision-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mission-cards,
    .vision-cards {
        grid-template-columns: 1fr;
        padding: 0 1.5em 70px;
    }

    .mission-header h2,
    .vision-header h2 {
        font-size: 34px;
        padding: 30px 15px;
    }
}



/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* SECTION */
.team-section {
    padding: 60px 3em;
    background: #ffb300a9;
    text-align: center;
    animation: sectionEnter 1.2s ease forwards;
}

/* HEADER */
.team-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.team-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
}

.team-header p {
    margin-top: 10px;
    font-size: 15px;
    color: #6b7280;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding-bottom: 4em;
    padding-top: 5em;
    padding-left: 5em;
    padding-right: 5em;
    background: linear-gradient(135deg, #e6eef7, #e0e7ff);
}

/* CARD */
.team-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    animation: cardFade 1s ease forwards, floatCard 6s ease-in-out infinite;
    transition: transform .5s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-12px);
}

/* CARD GLOW */
.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(37,99,235,0.15), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.team-card:hover::after {
    opacity: 1;
}

/* IMAGE */
.team-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 3px solid #000000;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08) rotate(1.5deg);
}

/* TEXT */
.team-card h3 {
    font-size: 18px;
    margin-top: 6px;
    animation: textReveal 4s infinite;
    
}

.team-card span {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 4px;
    animation: textReveal 4s infinite;
    animation-delay: .3s;
}

/* SOCIAL */
.team-social {
    margin: 14px 0;
    padding-top: 15px;
}

.team-social a {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    font-size: 14px;
    animation: waveIcon 3s infinite;
}

.team-social a:nth-child(2){animation-delay:.2s;}
.team-social a:nth-child(3){animation-delay:.4s;}


/* ANIMATIONS */
@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes waveIcon {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes pulseBtn {
    0% { opacity:0; transform:scale(.8); }
    50% { opacity:1; }
    100% { opacity:0; transform:scale(1.2); }
}

@keyframes cardFade {
    from { opacity:0; transform:translateY(50px); }
    to { opacity:1; transform:translateY(0); }
}

@keyframes sectionEnter {
    from { opacity:0; transform:translateY(60px); }
    to { opacity:1; transform:translateY(0); }
}

@keyframes textReveal {
    0% { opacity:0; transform:translateY(10px); }
    20%,80% { opacity:1; transform:translateY(0); }
    100% { opacity:0; transform:translateY(-10px); }
}

/* RESPONSIVE */
@media(max-width:992px){
    .team-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
    .team-grid{grid-template-columns:1fr;}
    .team-section{padding:50px 1.5em;}
}

/* Courses Page */

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8fafc;
    color: #1e293b;
}

/* ===== HEADER ===== */
.courses-header {
    text-align: center;
    padding: 70px 20px 40px;
}

.courses-header h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.courses-header p {
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
}

/* ===== CONTAINER ===== */
.courses-container {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.course-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ===== IMAGE ===== */
.course-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ===== CONTENT ===== */
.course-content {
    padding: 22px 22px 26px;
}

.course-meta {
    display: block;
    font-size: 12px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.course-meta b {
    color: #0f172a;
    margin-left: 6px;
    font-weight: 500;
}

.course-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ===== BUTTON ===== */
.apply-btn {
    display: inline-block;
    padding: 9px 22px;
    background: #f59e0b;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #d97706;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .courses-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .courses-container {
        grid-template-columns: 1fr;
        padding: 30px 1.5em;
    }

    .courses-header h1 {
        font-size: 30px;
    }
}

/* FAQ SECTION  */

/* ===== FAQ SECTION ===== */
.faq-section {
    width: 100%;
    padding: 50px 3em;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* ===== HEADER ===== */
.faq-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
}

.faq-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* ===== CONTAINER ===== */
.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== FAQ ITEM ===== */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient bar effect */
.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #1a5280, #15a3a3);
    opacity: 0;
    transition: 0.3s;
}

.faq-item:hover::before,
.faq-item[open]::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.faq-item[open] {
    background: #ffffff;
}

/* ===== SUMMARY ===== */
.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* ===== ICON ===== */
.faq-item .icon {
    font-size: 22px;
    color:linear-gradient(135deg, #1a5280, #15a3a3);
    transition: transform 0.4s ease;
}

.faq-item[open] .icon {
    transform: rotate(45deg) scale(1.1);
}

/* ===== ANSWER ===== */
.faq-item p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    animation: fadeSlide 0.5s ease;
}

/* ===== ANIMATION ===== */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 1.5em;
    }

    .faq-header h2 {
        font-size: 30px;
    }
}


/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0f4f8, #e0e7ff);
    font-family: 'Poppins', sans-serif;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 30px;
}

/* ===== CARD STYLING ===== */
.service-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-box i {
    font-size: 36px;
    color: #10296c;
    margin-bottom: 15px;
}

.service-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #10296c;
}

.service-box p {
    font-size: 14px;
    color: #10296c;
    line-height: 1.5;
}

/* ===== HOVER EFFECT ===== */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(16, 41, 108, 0.3);
    border-color: #10296c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet */
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobile */
        gap: 20px;
    }
}


