html,
body {
    overflow-x: hidden;
    margin: 0;
    font-family: Montserrat, sans-serif;
    background: white;
    scroll-behavior: smooth;
}

body {
    padding-top: 70px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 45px;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 1px 7px 0px rgb(0 0 0 / 22%);
}

.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: #222222;
    font-weight: 600;
}

.navbar a:hover {
    color: #147FC3;
}

.logo img {
    width: 160px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.nav-links a:hover {
    color: #147FC3;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .navbar {
        padding: 12px 20px;
    }

    .logo img {
        width: 130px;
    }

    .menu-toggle {
        display: block;
        color: #222;
        z-index: 1001;
        padding: 10px;
    }

    .nav-links {
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;
        display: none;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        position: fixed;
        top: 60px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }
}

/* ------------- HERO SECTION -----------------*/
.hero-section {
    position: relative;
    padding: 140px 30px;
    overflow: hidden;
    text-align: center;
}

/* CENTER CONTENT */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-heading {
    font-size: 60px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-button {
    background-color: #0066ae;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    color: #fff;
    cursor: pointer;
    padding: 14px 36px;
    font-size: 16px;
    text-decoration: none;
}

.hero-button:hover {
    background-color: #106BAD;
}

/* IMAGE HOVER */
.hero-section img {
    transition: transform .3s ease-in-out;
}

.hero-section img:hover {
    transform: scale(1.03);
}

/* FLOAT ANIMATIONS */
@keyframes floatX {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-54%);
    }
}

/* SMALL TOP IMAGES */
.hero-img-top-left {
    position: absolute;
    top: 60px;
    left: 26%;
    width: 95px;
    animation: floatX 3s ease-in-out infinite;
}

.hero-img-top-right {
    position: absolute;
    top: 18px;
    right: 28%;
    width: 115px;
    animation: floatX 3s ease-in-out infinite;
}

/* MAIN SIDE IMAGES */
.hero-img-left {
    position: absolute;
    left: 20px;
    top: 50%;
    height: 440px;
    transform: translateY(-50%);
    animation: floatY 3s ease-in-out infinite;
}

.hero-img-right {
    position: absolute;
    right: 80px;
    top: 46%;
    height: 450px;
    transform: translateY(-50%);
    animation: floatY 3s ease-in-out infinite;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 42px;
    }

    .hero-img-left,
    .hero-img-right {
        height: 340px;
    }

    .hero-img-top-left,
    .hero-img-top-right {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 34px;
    }

    .hero-img-left,
    .hero-img-right {
        height: 240px;
    }

    .hero-img-top-left,
    .hero-img-top-right {
        width: 60px;
    }
}

@media (max-width: 618px) {
    .hero-heading {
        font-size: 30px;
    }

    .hero-img-left {
        left: 5px;
        height: 140px;
    }

    .hero-img-right {
        right: 20px;
        height: 140px;
    }

    .hero-button {
        padding: 12px 22px;
        font-size: 14px;
    }
}

@media (max-width: 468px) {
    .hero-img-top-left {
        top: 19px;
        left: 13%;
    }

    .hero-img-left {
        left: 5px;
        height: 86px;
    }

    .hero-img-right {
        right: 10px;
        height: 96px;
    }
}

/* ---------- TICKER SECTION ------------ */
.ticker-section.creative {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    padding: 26px 0;
    overflow: hidden;
    position: relative;
}

.ticker-section.creative::before,
.ticker-section.creative::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .6), transparent);
}

.ticker-section.creative::before {
    top: 0;
}

.ticker-section.creative::after {
    bottom: 0;
}

/* WRAPPER */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

/* STRIP */
.ticker {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

/* TEXT STYLE */
.ticker span {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    padding-right: 90px;
    white-space: nowrap;
    letter-spacing: 2.5px;
}

/* ANIMATION */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ticker span {
        font-size: 30px;
        padding-right: 60px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .ticker span {
        font-size: 22px;
        padding-right: 40px;
    }
}


/* ---------------- BENEFITS SECTION --------------------- */
.benefits-section {
    background-color: #8fc6e9;
    border-radius: 100px;
    margin-top: 80px;
    padding: 80px 20px;
    text-align: center;
}

/* SECTION TITLE */
.benefits-title {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* GRID */
.benefits-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* COLUMNS */
.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CENTER IMAGE */
.center-img {
    height: 500px !important;
    width: auto !important;
    object-fit: contain;
    transition: transform .3s ease-in-out;
}

.center-column:hover img {
    transform: scale(1.05);
}

/* CENTER TEXT */
.center-text {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-top: 15px;
}

/* ITEMS */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item img {
    height: 180px;
    width: 300px;
    object-fit: contain;
    transition: transform .3s ease-in-out;
}

.benefit-item:hover img {
    transform: scale(1.05);
}

.benefit-item h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-top: 8px;
}

/* RESPONSIVE */
@media(max-width:1025px) {
    .benefits-grid {
        gap: 0px;
    }

    .benefit-item h2 {
        font-size: 18px;
    }
}

@media(max-width:900px) {
    .center-img {
        height: 300px !important;
    }
}

@media(max-width:768px) {
    .benefit-item img {
        height: 135px;
    }

    .left-column,
    .right-column {
        gap: 12px;
    }
}

@media(max-width:600px) {
    .benefits-grid {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        gap: 0px;
    }
}

@media(max-width:498px) {
    .benefit-item img {
        height: 90px;
    }

    .center-img {
        height: 190px !important;
    }
}

/* ----------------- SERVICES SECTION ------------------- */
.course-slider {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

.service-card {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    display: flex;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.service-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-section {
    padding: 100px 20px;
    text-align: center
}

.service-card,
.service-grid {
    align-items: center;
    display: flex;
}

.service-card {
    flex-direction: column;
    gap: 20px;
}

.service-card.reverse {
    flex-direction: column-reverse;
}

.service-image {
    border-radius: 24px;
    box-shadow: 0 5px 4px 1px rgba(0, 0, 0, .774);
    height: 450px;
    margin: 10px 0;
    object-fit: cover;
    object-position: center;
    width: 300px;
}

.service-image:hover {
    transform: translateY(-10px);
    transition: all .3s ease-in-out;
}

.service-content {
    max-width: 500px;
    text-align: center;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Base Arrow Styling */
.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.9);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: bold;
    color: #333;
}

/* Hover Effects */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #333;
    transform: scale(1.1);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #fff;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

@media (max-width: 768px) {
    .course-slider {
        padding: 20px 10px;
    }
}

/* ------------------- WHY JOIN SECTION ------------------*/
.why-section {
    background: #f9fafb;
    padding: 20px 20px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 60px;
}

/* GRID */
.whychoose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */
.whychoose-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0px 0 9px 1px rgb(0 0 0 / 19%);
    transition: transform .35s ease, box-shadow .35s ease;
}

.whychoose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* ICON */
.whychoose-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* TITLE */
.whychoose-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/* DESCRIPTION */
.whychoose-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 5px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .whychoose-card {
        padding: 24px 18px;
    }

    .whychoose-icon {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .whychoose-grid {
        gap: 20px;
    }

    .whychoose-card {
        padding: 20px 16px;
    }

    .whychoose-title {
        font-size: 17px;
    }
}


/* ------------- GALLERY SECTION --------------- */
.gallery-section {
    padding: 80px 20px;
    text-align: center;
}

.gallery-section .section-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
}


/* MASONRY */
.masonry-gallery {
    column-count: 4;
    column-gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

/* IMAGES */
.masonry-gallery img {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 16px;
    display: block;
    break-inside: avoid;
    object-fit: cover;
    transition: transform .3s ease, box-shadow .3s ease;
}

.masonry-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-item iframe,
.video-item video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .masonry-gallery {
        column-count: 3;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        column-count: 2;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-item {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* --------- VIDEO SECTION ----------- */
.video-wrapper {
    padding: 80px 0 40px;
    border-radius: 40px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    border-radius: 40px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .video-wrapper {
        border-radius: 24px;
    }
}

/* --------- PRICING SECTION ----------- */
.pricing-section.dark-bg {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1f2937, #111827);
    text-align: center;
}

.pricing-title.light {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 70px;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* CARD BASE */
.pricing-card {
    position: relative;
    border-radius: 26px;
    padding: 45px 30px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* GLASS CARDS */
.pricing-card.glass {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

/* FEATURED CARD */
.pricing-card.featured {
    background-color: #208BCC;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}

.pricing-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

/* TEXT */
.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    margin: 25px 0;
}

.price span {
    font-size: 14px;
    font-weight: 500;
    opacity: .8;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
}

.features li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.features li.ok::before {
    content: "✔";
    color: #22c55e;
    position: absolute;
    left: 0;
}

.features li.no {
    opacity: .8;
}

.features li.no::before {
    content: "✖";
    color: #ff6868;
    position: absolute;
    left: 0;
}

/* BUTTONS */
.primary-btn {
    background: #fff;
    color: #208BCC;
    border: none;
    border-radius: 999px;
    padding: 14px 40px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.primary-btn:hover {
    background-color: #208BCC;
    color: #fff;
    border: 2px solid #ffffff;
}

.outline-btn {
    background: transparent;
    border: 2px solid #208BCC;
    color: #208BCC;
    border-radius: 999px;
    padding: 14px 40px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.outline-btn:hover {
    background-color: #208BCC;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 26px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* --------- FOOTER -----------*/

.footer {
    color: #000;
    font-family: sans-serif;
    overflow: hidden;
    margin-top: 60px;
}

.footer,
.footerarea {
    background-color: #fff;
    position: relative;
    z-index: 99
}

.footerarea {
    padding: 30px 30px 30px 30px
}

.footer-decor {
    background-color: #90caf9;
    height: 160px;
    position: absolute;
    width: 230px;
    z-index: 1
}

.bottom-left {
    bottom: 90px;
    left: 0
}

.top-right {
    right: 0;
    top: 0
}

.footer-container {
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
    /* max-width: 1200px; */
    position: relative;
    z-index: 2
}

.footer-links {
    padding: 0 30px
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-links li {
    margin-bottom: .5rem;
    transition: all .3s ease-in-out
}

.footer-links li:hover {
    transform: translateX(-5px)
}

.footer-links a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s ease-in-out
}

.footer-links a:hover {
    color: #106BAD;
    font-weight: 700
}

.footer-socials {
    font-size: 1.2rem;
}

.footer-socials a {
    color: inherit;
    margin-right: 6px;
}

.footer-socials i {
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.footer-socials i:hover {
    transform: scale(1.1);
    color: #0066ae;
}


.footer-bottom {
    color: #141414;
    font-size: .9rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

@media (min-width:768px) {
    .footer-bottom {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 0 65px
    }

    .footer-container {
        align-items: flex-start;
        flex-direction: row;

    }
}

@media(max-width:768px) {
    .footer-container {
        max-width: 637px
    }

    .footer-links {
        text-align: center;
        padding: 0;
    }

    .footer-socials {
        text-align: center;
    }

    .bottom-left {
        bottom: 135px
    }
}

@media(max-width:468px) {
    .footer-container {
        max-width: 310px
    }

    .footerarea {
        padding: 30px 0
    }

    .footer-bottom p {
        text-align: center
    }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.whatsapp-float img {
    width: 45px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float img {
        width: 36px;
    }
}

/* ========================================
                ABOUT PAGE
========================================== */
/* BANNER */
.page-banner {
    position: relative;
    padding: 110px 20px;
    background: linear-gradient(135deg, #b9ddf5, #e3f2fd);
    overflow: hidden;
}

.page-banner::before,
.page-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.page-banner::before {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -60px;
}

.page-banner::after {
    width: 160px;
    height: 160px;
    bottom: -50px;
    left: -50px;
}

/* INNER CONTENT */
.page-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.page-banner h1 {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 18px;
    color: #333;
    max-width: 500px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-banner {
        padding: 80px 20px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 16px;
    }
}

/* MAIN SECTION */
.about-detail-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

/* ROWS */
.about-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* TEXT */
.about-text,
.about-info {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #121212;
}

.about-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.about-info .vision {
    margin-top: 20px;
}

.about-info p {
    margin: 4px;
}

/* IMAGES */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

/* STATS BAR */
.about-stats-bar {
    background: #208BCC;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
}

.stat-item img {
    width: 80px;
}

.stat-item h2 {
    font-size: 30px;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
    }

    .about-image img {
        width: 100%;
        max-width: 320px;
    }

    .about-stats-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ABOUT – SIMPLE FOCUS SECTION */
.about-focus {
    padding: 20px 20px;
    background: #ffffff;
}

.about-focus-container {
    margin: 0 auto;
}

.about-focus-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-focus-box {
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 10px;
    background: #f9fafb;
}

.about-focus-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0066ae;
}

.about-focus-box p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .about-focus-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT – WHAT WE OFFER */
.about-offer-v2 {
    padding: 70px 20px;
    background: #ffffff;
}

.about-offer-v2-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.about-offer-v2-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.offer-points {
    list-style: none;
    padding: 0;
}

.offer-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15.5px;
    color: #444;
    line-height: 1.6;
}

.offer-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #147FC3;
    font-weight: 700;
}

/* RIGHT */
.about-offer-v2-right {
    background: #f9fafb;
    padding: 30px;
    border-radius: 14px;
}

.offer-message {
    font-size: 15.5px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #147FC3;
    line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-offer-v2-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-offer-v2-right {
        text-align: left;
    }
}

/* =====================================
               Gallery
======================================== */
/* PAGE */
.gallery-page {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.gallery-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gallery-header p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* TABS */
.gallery-tabs {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.tab-btn {
    border: 1px solid #208BCC;
    background: transparent;
    padding: 10px 28px;
    border-radius: 20px;
    cursor: pointer;
    margin: 0 5px;
    font-weight: 700;
    color: #208BCC;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.tab-btn.active {
    background: #208BCC;
    color: #fff;
}

.tab-btn:hover {
    background: #208BCC;
    color: #fff;
}

/* CONTENT */
.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .masonry-gallery {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .masonry-gallery img {
        height: 400px;
        object-fit: contain;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        column-count: 2;
    }

    .masonry-gallery img {
        height: 300px;
    }
}

@media (max-width: 486px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* ========================================
               Blogs
=========================================== */
.blog-list-modern {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

/* CARD */
.blog-card-modern {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

/* IMAGE */
.blog-image-modern {
    position: relative;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
}

.blog-image-modern img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    transition: all 0.3s ease-in-out;
}

.blog-image-modern img:hover {
    transform: scale(1.03);
}

/* DATE */
.blog-date-modern {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #106BAD;
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.blog-tag-modern {
    background: #e8efff;
    color: #106BAD;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.blog-content-modern h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}

.blog-content-modern p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* FOOTER */
.blog-footer-modern {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

/* READ MORE */
.read-more-modern {
    background: #106BAD;
    color: #fff;
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.read-more-modern:hover {
    background-color: #fff;
    color: #106BAD;
    border: 1px solid #106BAD;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-card-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-image-modern img {
        width: 100%;
        height: auto;
    }

    .blog-content-modern h3 {
        font-size: 22px;
    }
}

/* BLOG DETAIL SECTION */
.blog-detail-section {
    max-width: 850px;
    margin: 80px auto;
    padding: 0 20px;
}

/* HEADER */
.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-header h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin: 12px 0;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #555;
}

.blog-meta i {
    margin-right: 6px;
}

/* IMAGE */
.blog-detail-image {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.blog-detail-image img {
    width: auto;
    height: auto;
    max-height: 500px;
    border-radius: 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    margin: 30px 0 50px;
}

/* CONTENT */
.blog-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
}

.blog-detail-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 16px;
}

/* QUOTE */
.blog-detail-content blockquote {
    background: #f3f7ff;
    border-left: 5px solid #106BAD;
    padding: 20px 26px;
    margin: 40px 0;
    font-style: italic;
    color: #333;
    border-radius: 12px;
}

.blog-detail-content blockquote span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #106BAD;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-detail-header h2 {
        font-size: 28px;
    }

    .blog-detail-image img {
        max-height: 300px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .blog-detail-content p img {
        max-height: 400px;
        max-width: 250px;
    }
}

/* =====================================
                FAQ
======================================== */
/* FAQ SECTION */
.faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* FAQ CONTAINER */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ ITEM */
.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.faq-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform .3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #fafafa;
}

.faq-answer p {
    margin: 0;
    padding: 0px 22px;
    font-size: 15px;
    color: #222;
    line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
    }
}

/* =========================================
                Privacy Policy
============================================ */
/* POLICY PAGE */
.policy-page {
    padding: 80px 20px;
    background: #f5f7fb;
    min-height: 100vh;
}

/* CARD */
.policy-card {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 40px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* TITLE */
.policy-card h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

/* HEADINGS */
.policy-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
}

/* TEXT */
.policy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* LIST */
.policy-card ul {
    padding-left: 18px;
    margin-top: 10px;
}

.policy-card ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #444;
}

/* INTRO */
.policy-intro {
    margin-bottom: 24px;
}

/* CONTACT */
.policy-contact {
    font-size: 15px;
}

.policy-contact a {
    color: #106BAD;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .policy-card {
        padding: 35px 25px;
    }

    .policy-card h1 {
        font-size: 24px;
    }
}