* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 95%;
    margin: auto;
}
.menu ul li.active > a {
    color: #ff6a06 !important;
    font-weight: 600;
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevents horizontal scroll on mobile */
}

/* --- HEADER STYLES --- */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky; /* Keeps header at top while scrolling */
    top: 0;
    width: 100%;
    z-index: 10000; /* Stays above everything */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

/* --- DESKTOP MENU --- */
.menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: #ff6600;
}

/* --- HAMBURGER BUTTON --- */
.hamburger {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 11000; /* Higher than the menu overlay */
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- 1. HEADER & LOGO --- */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10000; /* Keeps header on top of page content */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

/* --- 2. THE HAMBURGER (Visible on Mobile) --- */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 12000 !important; /* MUST BE HIGHER THAN .MENU */
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333; /* Dark color so it's visible on white */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- 3. THE MENU (Desktop & Mobile Logic) --- */
.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

/* --- FORCE VISIBLE HAMBURGER --- */
@media (max-width: 992px) {
    .hamburger {
        display: flex !important;
        z-index: 12000 !important;
        position: relative; /* Keeps it inside the white header bar */
    }

    .menu {
        position: absolute !important; /* Change from fixed to absolute */
        top: 100%; /* Starts exactly at the bottom of the header */
        left: 0;
        width: 100%;
        height: auto !important; /* Only take up space needed by links */
        background: #ffffff !important;
        padding: 20px 0; /* Add small padding top/bottom */
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); /* Adds a nice shadow to separate from banner */
        
        /* Hidden state */
        display: none !important; 
        opacity: 0;
        z-index: 11000 !important;
    }

    /* Shown state */
    .menu.active {
        display: block !important;
        opacity: 1;
    }

    .menu ul {
        flex-direction: column !important;
        align-items: center;
        gap: 15px !important; /* Reduces space between links */
        padding: 0;
        margin: 0;
    }

    .menu ul li a {
        font-size: 14px !important; /* Slightly smaller, cleaner font */
        padding: 1px;
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Fix for the Banner Responsiveness */
.hero {
    height: auto !important;
    max-height: none !important;
}

.hero img, .slide img {
    width: 100% !important;
    height: auto !important;
    display: block;
}
    /* Animation for the Hamburger 'X' */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


/* --- BANNER RESPONSIVE FIX --- */
.hero {
    width: 100%;
    height: auto !important; 
    min-height: 200px;
}

.hero img, .slide img {
    width: 100% !important;
    height: 100% !important;
 
}

/* --- RESPONSIVE BANNER / HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    /* Fix: Use Viewport Height so it shrinks on smaller screens */
    height: 90vh; 
    min-height: 500px; 
    max-height: 800px;
    overflow: hidden;
    z-index: 1;
}

.slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Fix: cover ensures image fits without stretching */
    background-size: cover; 
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE FIX */
/* ========================= */

@media (max-width: 768px) {

.hero {
    height: 45vh;          /* smaller banner */
    min-height: 250px;
}

/* IMPORTANT FIX */
.slide {
    background-size: cover;

}

/* LOGO */
.logo img {
    height: 50px;
}
}
/* --- DOTS & OVERLAYS --- */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.4), transparent);
    pointer-events: none; /* Allows clicks to pass through to buttons */
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    height: 10px;
    width: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #ff6600;
    transform: scale(1.2);
}
/* DROPDOWN BOX */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 300px !important;
    
    padding: 10px 0;
    margin: 0;

    /* 🔥 CRITICAL FIX */
    display: block !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 3px solid #3B5998;
    z-index: 9999;
}

/* 🔥 FORCE COLUMN LAYOUT */
.dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
}

/* EACH ITEM FULL WIDTH */
.dropdown-menu li {
    display: block;
    width: 100%;
  
}

.dropdown-menu li {
    border-bottom: 1px solid #e5e5e5;
}

/* LINK STYLE */
.dropdown-menu li a {
    display: block;
    padding: 5px 20px;
    font-size: 13px !important;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
}

/* HOVER */
.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #ff6600;
}

/* SHOW DROPDOWN */
.menu ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* FLOATING ICONS */
.floating-icons {
    position: fixed;
    left: 15px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.whatsapp {
    background: #25D366;
}

.call {
    background: #ff6600;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .menu {
        display: none;
    }
}

/* FEATURES SECTION */
.features {
    background: #f5f5f5;

}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    position: relative;
    text-align: center;
}

/* IMAGE */
.feature-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* CONTENT BOX */
.feature-content {
    background: #fff;
    padding: 40px 25px;
    width: 85%;
    margin: -60px auto 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-content i {
    font-size: 28px;
    color: #ff6600;
    margin-bottom: 15px;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ARROW BUTTON */
.arrow {
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.arrow:hover {
    background: #333;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-content {
        width: 90%;
    }
}

/* PROMO BANNER */
.promo-banner {
    padding: 40px 0;
    background: #fff;
}

.promo-banner img {
    width: 100%;
 
    border-radius: 8px;
    display: block;
}

/* WELCOME SECTION WITH HALF OVERLAY */
.welcome-section {
    position: relative;
    background: url('assets/images/blog-5.png') center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}


/* BANNER SLIDER SECTION */
.banner-slider {
    padding: 50px 0;
    background: #f4f4f4;
}

/* CONTAINER */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

/* SLIDES */
.banner-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    position: relative;
    opacity: 1;
}

/* IMAGE */
.banner-slide img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* ARROWS */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background: #ff6600;
}

/* DOTS */
.banner-dots {
    text-align: center;
    margin-top: 15px;
}

.banner-dot {
    height: 8px;
    width: 8px;
    background: #ccc;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.banner-dot.active {
    background: #333;
}

/* HALF SHADE (LEFT SIDE ONLY) */
.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* controls how much shade */
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(20, 60, 120, 0.95),
        rgba(20, 60, 120, 0.8),
        rgba(20, 60, 120, 0.4),
        transparent
    );
    z-index: 1;
}

/* CONTENT */
.welcome-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.welcome-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.welcome-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.welcome-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #e0e0e0;
}

/* BUTTONS */
.welcome-buttons {
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.3s;
}

.btn.primary {
    background: #fff;
    color: #000;
    font-weight: 600;
}

.btn.primary:hover {
    background: #ff6600;
    color: #fff;
}

.btn.outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: #fff;
    color: #000;
}

/* COURSES IMAGE SECTION */
.courses {
    background: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* GRID */
.course-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* IMAGE BOX */
.course-item {
    overflow: hidden;
    cursor: pointer;
}

.course-item img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.course-item:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .course-images {
        grid-template-columns: 1fr;
    }
}

/* BANNER SLIDER FIX */
.banner-slide {
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-dots {
    text-align: center;
    margin-top: 15px;
}

.banner-dot {
    height: 8px;
    width: 8px;
    background: #ccc;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.banner-dot.active {
    background: #333;
}

/* INFO SECTION */
.info-section {
    background: #f4f4f4;
    padding: 80px 0;
}

/* GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.info-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.info-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.info-content {
    padding: 25px;
}

.info-content h3 {
    font-size: 18px;
    color: #1f4e8c;
    margin-bottom: 20px;
    font-weight: 600;
}

/* BUTTON */
.info-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #ff6600;
    color: #ff6600;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s;
}

.info-btn:hover {
    background: #ff6600;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ISAT SECTION */
.isat-section {
    background: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

/* IMAGE */
.isat-img {
    margin-bottom: 20px;
}

.isat-img img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* TITLE */
.isat-section h2 {
    font-size: 30px;
    color: #2d5c9c;
    margin-bottom: 20px;
    font-weight: 700;
}

/* TEXT */
.isat-section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

/* BUTTON */
.isat-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.isat-btn:hover {
    background: #ff6600;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    background: #39b3ad;
    padding: 80px 0;
}

/* BOX */
.testimonial-box {
    background: #fff;
    max-width: 900px;
    margin: auto;
    padding: 60px 40px;
    border-radius: 30px;
    border: 3px solid #ff6600;
    text-align: center;
    position: relative;
}

/* TITLE */
.testimonial-box h2 {
    color: #2d5c9c;
    margin-bottom: 10px;
}

.testimonial-box .sub {
    color: #2d5c9c;
    margin-bottom: 30px;
}

/* TEXT */
.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* NAME */
.testimonial-slide h4 {
    color: #ff6600;
}

/* SLIDES */
.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

/* ARROWS */
.t-prev, .t-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 28px;
    color: #ff6600;
    cursor: pointer;
}

.t-prev {
    left: 20px;
}

.t-next {
    right: 20px;
}

/* DOTS */
.t-dots {
    margin-top: 20px;
}

.t-dot {
    height: 8px;
    width: 8px;
    background: #ccc;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.t-dot.active {
    background: #ff6600;
}

/* FINAL CTA SECTION */
.final-cta {
    background: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

/* IMAGE */
.cta-img {
    margin-bottom: 25px;
}

.cta-img img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
}

/* HEADING */
.final-cta h2 {
    font-size: 36px;
    color: #2d5c9c;
    margin-bottom: 25px;
    font-weight: 700;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #f58220;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #d96b10;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    padding: 70px 0 20px;
    position: relative;
}

/* DIAMOND BACKGROUND EFFECT */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/images/footer-bg.png'); /* optional pattern */
    opacity: 0.1;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

/* HEADINGS */
.footer-col h3 {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #ff6600;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a {
color: #fff;
text-decoration: none;
}

/* SOCIAL */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff6600;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.footer-bottom a {
text-decoration: none;
color: #ff6600;
}
.footer-bottom {
    position: relative;
    z-index: 9999;
}
/* RESPONSIVE */
@media(max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* ABOUT SECTION */
.about-section {
    background: #f8f9fb;
    padding: 80px 0;
}

/* ROW */
.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

/* LEFT */
.about-left h1 {
    font-size: 64px;
    color: #2f4a8a;
    font-weight: 700;
}

/* RIGHT IMAGE */
.about-right img {
    width: 100%;
    max-width: 420px;
    border-radius: 6px;
    object-fit: cover;
}

/* CONTENT BOX */
.about-content {
    background: #fff;
    padding: 40px 60px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

/* LINE DESIGN */
.about-content::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #ccc,
        #ccc 2px,
        transparent 2px,
        transparent 6px
    );
}

/* TEXT */
.about-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 900px;
    margin: auto;
}
@media (max-width: 768px) {

    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .about-left h1 {
        font-size: 40px;
    }

    .about-right img {
        max-width: 100%;
    }

    .about-content {
        padding: 25px;
    }

    .about-content p {
        font-size: 15px;
    }
}

/* SECTION */
.excellence-section {
    background: #f5f6fa;
}

/* ROW */
.excellence-row {
    display: flex;
    align-items: center;
}

/* LEFT IMAGE */
.excellence-left {
    position: relative;
    width: 50%;
}

.excellence-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* STRIPES EFFECT (IMPROVED) */
.stripe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;

    background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.7) 6px,
        transparent 6px,
        transparent 14px
    );
}

/* RIGHT CONTENT */
.excellence-right {
    width: 50%;
    padding: 80px;
}

.excellence-right h2 {
    font-size: 38px;
    color: #2f4a8a;
    font-weight: 700;
    margin-bottom: 20px;
}

.excellence-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 500px;
}

/* SECTION */
.vision-mission-section {
    background: #f7f7f7;
    padding: 80px 0;
}

/* ROW */
.vm-row {
    display: flex;
    gap: 40px;
}

/* BOX */
.vm-box {
    flex: 1;
}

/* TITLE */
.vm-box h3 {
    font-size: 30px;
    color: #2f4a8a;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */
.vm-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    max-width: 500px;
}

/* IMAGE */
.vm-img img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    height: 320px;
}

/* SECTION */
.testimonial-section {
    padding: 80px 0;
    background: #f9fafc;
    text-align: center;
}

/* TITLE */
.section-title h2 {
    font-size: 36px;
    color: #2f4a8a;
    font-weight: 700;
}

.section-title p {
    color: #777;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* ROW */
.testimonial-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* QUOTE */
.quote {
    font-size: 40px;
    color: #ff6600;
    position: absolute;
    top: 10px;
    left: 15px;
}

/* IMAGE */
.testimonial-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px auto;
    object-fit: cover;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* NAME */
.testimonial-card h4 {
    margin: 0;
    color: #2f4a8a;
    font-weight: 600;
}

/* ROLE */
.testimonial-card span {
    font-size: 13px;
    color: #888;
}

/* SECTION */
.contact-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* ROW */
.contact-row {
    display: flex;
    gap: 40px;
}

/* LEFT FORM */
.contact-form {
    flex: 2;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 2px solid #666;
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #2f4a8a;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6600;
}

/* BUTTON */
.contact-form button {
    background: #ff6600;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e65c00;
}

/* RIGHT INFO */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* BOX */
.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 2px solid #1f4e8c;
}

.info-box i {
    font-size: 24px;
    color: #ff6600;
    margin-bottom: 10px;
}

.info-box a {
  text-decoration: none;
}

.info-box h4 {
    margin-bottom: 5px;
    color: #2f4a8a;
}

.info-box p {
    color: #555;
}

/* MAP */
.map-section {
    margin-top: 40px;
}

@media (max-width: 768px) {

    .contact-row {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}

/* MAIN BANNER */
.page-banner {
    position: relative;
    padding: 120px 20px;
    background: url('assets/images/blog-5.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* OVERLAY */
.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.15)
    );

    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;

    background: rgba(0,0,0,0.45);
    padding: 15px 25px;
    border-radius: 12px;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    max-width: 400px;   /* 🔥 controls width */
    margin: auto;       /* center align */
}

/* HEADING */
.page-banner h1 {
    font-size: 25;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 8px;

    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

/* SUBTEXT */
.page-banner p {
    font-size: 15px;
    color: #f1f1f1;
}

/* LINK */
.page-banner p a {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 600;
}

.page-banner p a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .page-banner {
        padding: 80px 15px;
        background-position: center;
    }

    .page-banner .container {
        padding: 20px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 13px;
    }
}