/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* ================= GLOBAL ================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    direction: rtl;
    background: #ffffff;
}


/* ================= NAVBAR ================= */

.custom-navbar {
    padding: 18px 0;
    transition: 0.4s;
    background: linear-gradient( to left, rgba(4, 18, 44, 0.95), rgba(8, 32, 72, 0.88));
    backdrop-filter: blur(12px);
}

.custom-navbar.scrolled {
    background: #07152b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
}


/* ================= LOGO ================= */

.logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text h5 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.logo-text span {
    color: #b7c6e0;
    font-size: 13px;
}


/* ================= NAV LINKS ================= */

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: #4da6ff;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0%;
    height: 2px;
    background: #4da6ff;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #4da6ff;
}


/* ================= BUTTONS ================= */

.nav-buttons {
    margin-right: 20px;
}


/* WhatsApp */

.whatsapp-btn {
    width: 42px;
    height: 42px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    color: #fff;
}


/* Apply Button */

.apply-btn {
    background: #1f8fff;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.apply-btn:hover {
    background: #0b74df;
    transform: translateY(-2px);
    color: #fff;
}


/* ================= TOGGLER ================= */

.navbar-toggler i {
    color: #fff;
    font-size: 28px;
}


/* ================= MOBILE ================= */

@media(max-width:991px) {
    .navbar-collapse {
        background: #07152b;
        padding: 25px;
        border-radius: 20px;
        margin-top: 15px;
    }
    .navbar-nav {
        text-align: center;
        gap: 15px;
    }
    .nav-buttons {
        justify-content: center;
        margin-top: 20px;
        margin-right: 0;
    }
}


/* ================= HERO BASE ================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    /* عشان النافبار */
    padding-bottom: 60px;
    overflow: hidden;
}


/* BACKGROUND VIDEO */

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 12, 32, 0.75);
}


/* CONTENT WRAPPER */

.hero-content {
    padding-top: 80px;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    /* 🔥 يخلي النص يمين */
}


/* BOX */

.hero-box {
    max-width: 750px;
    color: #fff;
    text-align: center;
}


/* BADGE */

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}


/* TITLE */

.hero-box h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.4;
}

.hero-box h1 span {
    color: #4da6ff;
}


/* PARAGRAPH */

.hero-box p {
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 2;
    color: #d6ddeb;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn-primary {
    background: #1f8fff;
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}


/* STATS */

.hero-stats {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stats h3 {
    color: #4da6ff;
    margin: 0;
    font-size: 28px;
}

.hero-stats span {
    color: #c9d5ea;
    font-size: 14px;
}


/* ================= MOBILE ================= */

@media(max-width:991px) {
    .hero-content {
        justify-content: center;
    }
    .hero-box {
        text-align: center;
    }
    .hero-box h1 {
        font-size: 36px;
    }
    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }
}


/*============================================================================================*/


/* OVERLAY */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


/* BOX */

.modal-box {
    background: #0b1a33;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 420px;
    color: #fff;
    position: relative;
}


/* INPUTS */

.modal-box input,
.modal-box select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
}


/* BUTTON */

.modal-box button {
    width: 100%;
    padding: 12px;
    background: #1f8fff;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
}


/* CLOSE */

.close-modal {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}


/*==================================================================================


/* SECTION */

.courses-section {
    padding: 90px 0;
    background: #f5f8ff;
}


/* TITLE */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0b1a33;
}

.section-title p {
    color: #555;
    margin-top: 10px;
}


/* GRID */

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* CARD */

.course-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
}


/* IMAGE */

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


/* TEXT */

.course-card h3 {
    font-size: 22px;
    margin: 15px 20px 10px;
    color: #0b1a33;
}

.course-card p {
    margin: 0 20px 20px;
    color: #555;
    line-height: 1.8;
}


/* BUTTON */

.course-card a {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 10px 18px;
    background: #1f8fff;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}


/* BADGE */

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffb703;
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
}


/* ANIMATION (entry) */

.course-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.course-card:nth-child(1) {
    animation-delay: 0.2s;
}

.course-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* RESPONSIVE */

@media(max-width:768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}


/*================================================================================

/* SECTION */

.why-section {
    padding: 90px 0;
    background: #0b1a33;
    color: #fff;
}


/* TITLE */

.why-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.why-section .section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

.why-section .section-title p {
    color: #cfd8e3;
    margin-top: 10px;
}


/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* CARD */

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}


/* ICON */

.why-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}


/* TITLE */

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}


/* TEXT */

.why-card p {
    font-size: 14px;
    color: #cfd8e3;
    line-height: 1.7;
}


/* RESPONSIVE */

@media(max-width:992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/*=======================================================================

/* SECTION */

.students-section {
    padding: 90px 0;
    background: #f5f8ff;
}


/* TITLE */

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    color: #0b1a33;
}


/* FILTER */

.filter-buttons {
    text-align: center;
    margin-bottom: 25px;
}

.filter-btn {
    padding: 8px 14px;
    margin: 5px;
    border: none;
    border-radius: 20px;
    background: #e9eef7;
    cursor: pointer;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1f8fff;
    color: #fff;
}


/* GRID */

.students-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* CARD */

.student-card {
    text-align: center;
    cursor: pointer;
}

.student-card img {
    width: 100%;
    height: 350px;
    /* 🔥 طولية */
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.student-card img:hover {
    transform: scale(1.05);
}

.student-card h3 {
    margin-top: 10px;
}


/* POPUP */

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    width: 500px;
    /* 🔥 أكبر */
    max-width: 90%;
    text-align: center;
    animation: pop 0.3s ease;
}


/* الصورة */

.popup-box img {
    width: 100%;
    height: 400px;
    /* 🔥 كبيرة وطولية */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}


/* الاسم */

.popup-box h2 {
    font-size: 28px;
    /* 🔥 أكبر */
    margin-bottom: 10px;
}


/* البيانات */

.popup-info p {
    font-size: 16px;
    /* 🔥 أوضح */
    margin: 8px 0;
}

.close {
    float: left;
    cursor: pointer;
}


/* RESPONSIVE */

@media(max-width:768px) {
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .students-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 992px) {
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .students-grid {
        grid-template-columns: 1fr;
    }
}


/*==========================================================================

/* SECTION */

.testimonials-section {
    padding: 90px 0;
    background: #0b1a33;
}


/* TITLE */

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-title h2 {
    color: #fff;
    font-size: 38px;
}

.testimonials-section .section-title p {
    color: #cfd8e3;
    margin-top: 10px;
}


/* GRID */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* CARD */

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}


/* IMAGE */

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #1f8fff;
}


/* NAME */

.testimonial-card h3 {
    color: #fff;
    margin-bottom: 5px;
}


/* DEPARTMENT */

.testimonial-card span {
    color: #4da6ff;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}


/* TEXT */

.testimonial-card p {
    color: #d8e2f0;
    line-height: 1.9;
    font-size: 15px;
}


/* RESPONSIVE */

@media(max-width:992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================================

/* SECTION */

.gallery-section {
    padding: 90px 0;
    background: #ffffff;
}


/* GRID */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}


/* ITEMS */

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
}


/* LARGE ITEM */

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}


/* WIDE ITEM */

.gallery-item.wide {
    grid-column: span 2;
}


/* IMAGE */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}


/* HOVER */

.gallery-item:hover img {
    transform: scale(1.08);
}


/* LIGHTBOX */

.gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gallery-popup img {
    width: 80%;
    max-width: 900px;
    border-radius: 15px;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}


/* RESPONSIVE */

@media(max-width:992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media(max-width:576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/*================================================================

/* SECTION */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(11, 26, 51, 0.9), rgba(11, 26, 51, 0.9)), url("images/cta-bg.jpg") center/cover;
}


/* BOX */

.cta-box {
    text-align: center;
    color: #fff;
    max-width: 750px;
    margin: auto;
}


/* TITLE */

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}


/* TEXT */

.cta-box p {
    font-size: 18px;
    line-height: 1.9;
    color: #d8e2f0;
    margin-bottom: 35px;
}


/* BUTTONS */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* BTN */

.cta-btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}


/* PRIMARY */

.primary-btn {
    background: #1f8fff;
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(31, 143, 255, 0.4);
}


/* SECONDARY */

.secondary-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #0b1a33;
}


/* RESPONSIVE */

@media(max-width:768px) {
    .cta-box h2 {
        font-size: 34px;
    }
    .cta-box p {
        font-size: 16px;
    }
}


/*====================================================================

/* FOOTER */

.footer {
    background: #071224;
    color: #fff;
    padding-top: 70px;
}


/* GRID */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* LOGO */

.footer-logo {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1f8fff;
}


/* TEXT */

.footer-col p {
    color: #cfd8e3;
    line-height: 1.9;
}


/* TITLES */

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
}


/* LIST */

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #cfd8e3;
}


/* LINKS */

.footer-col ul li a {
    color: #cfd8e3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #1f8fff;
}


/* SOCIAL */

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 20px;
}

.social-links a:hover {
    background: #1f8fff;
    transform: translateY(-5px);
}


/* BOTTOM */

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #cfd8e3;
    font-size: 14px;
}


/* RESPONSIVE */

@media(max-width:992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
}

@media(max-width:768px) {
    .hero-content h1 {
        font-size: 34px;
        line-height: 1.5;
    }
}

@media(max-width:576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================= */


/* ================= MOBILE FIX ==================== */


/* ================================================= */

@media screen and (max-width:768px) {
    /* ================= GLOBAL ================= */
    body {
        overflow-x: hidden;
    }
    .container {
        width: 94% !important;
    }
    section {
        padding: 70px 0 !important;
    }
    /* ================= NAVBAR ================= */
    .custom-navbar {
        padding: 14px 0 !important;
    }
    .logo {
        width: 60px !important;
        height: 60px !important;
    }
    .logo-text h5 {
        font-size: 22px !important;
    }
    .logo-text span {
        font-size: 14px !important;
    }
    .navbar-toggler i {
        font-size: 32px !important;
    }
    .navbar-collapse {
        background: #071224 !important;
        padding: 25px !important;
        border-radius: 20px !important;
        margin-top: 15px !important;
    }
    .navbar-nav {
        gap: 18px !important;
    }
    .nav-link {
        font-size: 22px !important;
        display: block;
    }
    .apply-btn {
        font-size: 18px !important;
        padding: 14px 26px !important;
    }
    .whatsapp-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    /* ================= HERO ================= */
    .hero-section {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 30px !important;
    }
    .hero-content {
        padding-top: 30px !important;
    }
    .hero-box {
        max-width: 100% !important;
    }
    .hero-box h1 {
        font-size: 32px !important;
        line-height: 1.6 !important;
    }
    .hero-box p {
        font-size: 16px !important;
        line-height: 1.9 !important;
        margin-top: 20px !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        gap: 18px !important;
        margin-top: 30px !important;
    }
    .hero-buttons a {
        width: 100% !important;
        text-align: center !important;
        font-size: 18px !important;
        padding: 16px !important;
    }
    .hero-stats {
        gap: 25px !important;
        margin-top: 35px !important;
    }
    .hero-stats h3 {
        font-size: 34px !important;
    }
    .hero-stats span {
        font-size: 16px !important;
    }
    /* ================= TITLES ================= */
    .section-title {
        margin-bottom: 40px !important;
    }
    .section-title h2 {
        font-size: 36px !important;
    }
    .section-title p {
        font-size: 18px !important;
        line-height: 2 !important;
    }
    /* ================= COURSES ================= */
    .courses-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .course-card img {
        height: 260px !important;
    }
    .course-card h3 {
        font-size: 28px !important;
        margin-top: 20px !important;
    }
    .course-card p {
        font-size: 17px !important;
        line-height: 2 !important;
    }
    .course-card a {
        width: calc(100% - 40px);
        text-align: center;
        padding: 14px !important;
        font-size: 17px !important;
    }
    /* ================= WHY US ================= */
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .why-card {
        padding: 40px 30px !important;
    }
    .why-card .icon {
        font-size: 52px !important;
    }
    .why-card h3 {
        font-size: 28px !important;
    }
    .why-card p {
        font-size: 17px !important;
        line-height: 2 !important;
    }
    /* ================= STUDENTS ================= */
    .students-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .student-card img {
        height: 520px !important;
    }
    .student-card h3 {
        font-size: 26px !important;
        margin-top: 18px !important;
    }
    /* ================= POPUP ================= */
    .popup-box {
        width: 94% !important;
        padding: 25px !important;
    }
    .popup-box img {
        height: 400px !important;
    }
    .popup-box h2 {
        font-size: 30px !important;
    }
    .popup-info p {
        font-size: 18px !important;
    }
    /* ================= TESTIMONIALS ================= */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .testimonial-card {
        padding: 40px 28px !important;
    }
    .testimonial-card img {
        width: 110px !important;
        height: 110px !important;
    }
    .testimonial-card h3 {
        font-size: 26px !important;
    }
    .testimonial-card span {
        font-size: 17px !important;
    }
    .testimonial-card p {
        font-size: 17px !important;
        line-height: 2 !important;
    }
    /* ================= GALLERY ================= */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide {
        height: 200px !important;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        border-radius: 16px !important;
        overflow: hidden;
    }

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
    /* ================= CTA ================= */
    .cta-box h2 {
        font-size: 38px !important;
        line-height: 1.7 !important;
    }
    .cta-box p {
        font-size: 18px !important;
        line-height: 2 !important;
    }
    .cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    .cta-btn {
        width: 100% !important;
        text-align: center;
        padding: 16px !important;
        font-size: 18px !important;
    }
    /* ================= FOOTER ================= */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 45px !important;
    }
    .footer-col h3 {
        font-size: 28px !important;
    }
    .footer-col p,
    .footer-col li,
    .footer-col a {
        font-size: 17px !important;
        line-height: 2 !important;
    }
    .social-links {
        justify-content: center !important;
    }
}