* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto;
}

/* ===== HEADER ===== */
.site-header {
    background: #ffffff;
    padding: 0 30px;
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.site-header .container-fluid {
    padding: 20px 0;
}

.site-header .navbar {
    height: 100%;
    padding: 0;
}

.site-header .navbar-brand img {
    height: 80px;
    width: 200px;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #374151 !important;
    font-size: 20px;
    font-weight: 400;
    padding: 0 18px !important;
}

.navbar-nav .nav-link.active {
    font-weight: 700;
    color: #1e4fa3 !important;
}

.navbar-nav .nav-link:hover {
    color: #1e4fa3 !important;
}

/* Book Free Call button */
.btn-book {
    background-color: #1e4fa3;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    white-space: nowrap;
}

.btn-book:hover {
    background-color: #163d82;
    color: #fff;
}

/* ===== RESPONSIVE: HEADER ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .navbar-nav .nav-link {
        font-size: 17px;
        padding: 0 12px !important;
    }

    .btn-book {
        font-size: 14px;
        padding: 11px 18px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .site-header {
        padding: 0 20px;
        height: 70px;
    }

    .site-header .navbar-brand img {
        height: 60px;
        width: 150px;
    }

    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 20px 24px 20px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        z-index: 999;
    }

    .navbar-nav {
        margin-right: 0 !important;
        margin-bottom: 16px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 6px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 8px 0 !important;
    }

    .btn-book {
        display: inline-block;
        font-size: 14px;
        padding: 11px 18px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .site-header {
        padding: 0 16px;
        height: 64px;
    }

    .site-header .navbar-brand img {
        height: 48px;
        width: 120px;
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        padding: 18px 16px 22px 16px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        z-index: 999;
    }

    .navbar-nav {
        margin-right: 0 !important;
        margin-bottom: 14px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 4px;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
        padding: 8px 0 !important;
    }

    .btn-book {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 18px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .site-header {
        padding: 0 14px;
        height: 60px;
    }

    .site-header .navbar-brand img {
        height: 50px;
        width: 160px;
    }

    .navbar-toggler {
        padding: 3px 7px;
    }

    .navbar-toggler-icon {
        width: 1.3em;
        height: 1.3em;
    }

    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 16px 14px 20px 14px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .navbar-nav {
        margin-right: 0 !important;
        margin-bottom: 12px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 2px;
    }

    .navbar-nav .nav-link {
        font-size: 14.5px;
        padding: 8px 0 !important;
    }

    .btn-book {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 13.5px;
        padding: 11px 16px;
        border-radius: 8px;
    }
}

/* ===== HERO BANNER 2 ===== */
.hero2-banner {
    position: relative;
    overflow: hidden;
}

/* Background image */
.hero2-bg-img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Blue overlay — left dark to right lighter */
.hero2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(5, 18, 50, 0.95) 0%,
            rgba(5, 18, 50, 0.85) 30%,
            rgba(5, 18, 50, 0.45) 60%,
            rgba(5, 18, 50, 0.15) 100%);
    z-index: 1;
}

/* Content above overlay */
.hero2-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 50px;
}

/* Badge */
.hero2-badge {
    display: inline-block;
    border: 1.5px solid #f5a623;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    padding: 12px 22px;
    margin-bottom: 28px;
}

/* Title */
.hero2-title {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.hero2-title-gold {
    color: #f5a623;
}

/* Para */
.hero2-para {
    color: #d1d9e6;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 32px;
}

/* Buttons */
.hero2-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-gold {
    background-color: #f5a623;
    color: #0a1628;
    font-size: 20px;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
}

.btn-gold:hover {
    background-color: #e09410;
    color: #0a1628;
}

.btn-outline-hero {
    background-color: transparent;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 28px;
    border: 2px solid #ffffff;
    border-radius: 10px;
}

.btn-outline-hero:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Tick features row */
.hero2-ticks {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero2-ticks span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero2-ticks i {
    color: #f5a623;
    font-size: 20px;
}

/* Bottom dot indicators */
.hero2-dots {
  /* just above ticker */
  z-index: 4;
}

.hero2-dots button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.65) !important;
  opacity: 1 !important;
  transition: background .3s, transform .3s !important;
  margin: 0 5px !important;
}

.hero2-dots button.active {
  background-color: #ffffff !important;
  transform: scale(1.25) !important;
}

/* Right side social sidebar */
.hero2-social-sidebar {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.hero2-social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1a2e;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero2-social-circle:hover {
    background: #f5a623;
    color: #0b1a2e;
}

/* Carousel slide transition */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

/* ===== RESPONSIVE: HERO BANNER 2 ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .hero2-bg-img {
        height: 680px;
    }

    .hero2-content {
        padding: 0 30px;
    }

    .hero2-badge {
        font-size: 17px;
        padding: 10px 18px;
        margin-bottom: 22px;
    }

    .hero2-title {
        font-size: 46px;
    }

    .hero2-para {
        font-size: 16px;
        max-width: 550px;
    }

    .hero2-btns .btn-gold,
    .hero2-btns .btn-outline-hero {
        font-size: 16px;
        padding: 12px 22px;
    }

    .hero2-ticks span {
        font-size: 15px;
    }

    .hero2-ticks i {
        font-size: 17px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .hero2-bg-img {
        height: 600px;
    }

    .hero2-content {
        padding: 0 24px;
    }

    .hero2-badge {
        font-size: 14px;
        padding: 9px 16px;
        margin-bottom: 18px;
        border-radius: 6px;
    }

    .hero2-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .hero2-para {
        font-size: 14.5px;
        max-width: 100%;
        margin-bottom: 22px;
    }

    .hero2-btns {
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero2-btns .btn-gold,
    .hero2-btns .btn-outline-hero {
        font-size: 14.5px;
        padding: 11px 18px;
        border-radius: 8px;
    }

    .hero2-ticks {
        gap: 20px;
    }

    .hero2-ticks span {
        font-size: 13.5px;
    }

    .hero2-ticks i {
        font-size: 15px;
    }

    .hero2-social-sidebar {
        right: 14px;
        gap: 10px;
    }

    .hero2-social-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .hero2-bg-img {
        height: 720px;
        object-position: 75% center;   /* ← ADD THIS LINE */
    }

    .hero2-content {
        padding: 0 18px;
    }

    .hero2-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 16px;
        border-radius: 6px;
    }

    .hero2-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero2-para {
        font-size: 13.5px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero2-btns {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero2-btns .btn-gold,
    .hero2-btns .btn-outline-hero {
        font-size: 14px;
        padding: 12px 18px;
        border-radius: 8px;
        text-align: center;
        width: 100%;
    }

    .hero2-ticks {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero2-ticks span {
        font-size: 12.5px;
        gap: 6px;
    }

    .hero2-ticks i {
        font-size: 14px;
    }

    .hero2-social-sidebar {
        display: none;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .hero2-bg-img {
        height: 600px;
        object-position: 75% center;   /* ← ADD THIS LINE */
    }

    .hero2-content {
        padding: 0 14px;
    }

    .hero2-badge {
        font-size: 16px;
        padding: 7px 12px;
        margin-bottom: 14px;
        border-radius: 6px;
        border-width: 1px;
    }

    .hero2-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 12px;
        letter-spacing: 0.2px;
    }

    .hero2-para {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .hero2-btns {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero2-btns .btn-gold,
    .hero2-btns .btn-outline-hero {
        font-size: 13px;
        padding: 11px 16px;
        border-radius: 6px;
        border-width: 1.5px;
        text-align: center;
        width: 60%;
    }

    .hero2-ticks {
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero2-ticks span {
        font-size: 15px;
        gap: 5px;
    }

    .hero2-ticks i {
        font-size: 12.5px;
    }

    .hero2-social-sidebar {
        display: none;
    }
}


/* ===== STATS STRIP SECTION 2 ===== */
.stats2-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Column with right border (divider) */
.stats2-col {
    position: relative;
}

.stats2-col:not(.stats2-col-last)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hide divider on mobile stacked view */
@media (max-width: 991px) {
    .stats2-col::after {
        display: none;
    }
}

/* Each stat card */
.stats2-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Icon box */
.stats2-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 10px;
    border: 1.5px solid #f5a623;
    background: rgba(245, 166, 35, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5a623;
    font-size: 22px;
}

/* Number */
.stats2-num {
    font-size: 30px;
    font-weight: 700;
    color: #f5a623;
    line-height: 1.2;
}

/* Label */
.stats2-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #c8d6e8;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 767px) {
    .stats2-icon-box {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .stats2-num {
        font-size: 22px;
    }

    .stats2-label {
        font-size: 11px;
    }
}


/* ===== WHY DEOS WORKS SECTION ===== */
.why-works-section {
    background-color: #131E37;
    padding: 40px 50px;
}

/* Label */
.why-label {
    display: inline-block;
    border: 1.5px solid #f5a623;
    border-radius: 6px;
    color: #f5a623;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    margin-bottom: 24px;
}

/* Title */
.why-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.why-title-gold {
    color: #f5a623;
}

/* Para */
.why-para {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Button */
.btn-why-outline {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-why-outline:hover {
    background: #ffffff;
    color: #0b1a2e;
    border-color: #ffffff;
}

/* ---- Right side cards ---- */
.why-card {
    background: #0E1629;
    border: 2px solid #686D79;
    border-radius: 20px;
    padding: 26px;
    height: 100%;
}

/* Icon box */
.why-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: rgba(245, 166, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5a623;
    font-size: 22px;
    margin-bottom: 18px;
}

/* Card title */
.why-card-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Card para */
.why-card-para {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* ===== RESPONSIVE: WHY DEOS WORKS SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .why-works-section {
        padding: 36px 30px;
    }

    .why-label {
        font-size: 13px;
        padding: 7px 16px;
    }

    .why-title {
        font-size: 36px;
    }

    .why-para {
        font-size: 15px;
    }

    .btn-why-outline {
        font-size: 15px;
        padding: 10px 24px;
    }

    .why-card {
        padding: 22px;
    }

    .why-icon-box {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
    }

    .why-card-title {
        font-size: 17px;
    }

    .why-card-para {
        font-size: 14.5px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .why-works-section {
        padding: 32px 20px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .why-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .why-para {
        font-size: 14.5px;
        margin-bottom: 24px;
    }

    .btn-why-outline {
        font-size: 14.5px;
        padding: 10px 22px;
    }

    .why-card {
        padding: 20px;
        border-radius: 16px;
    }

    .why-icon-box {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
        margin-bottom: 14px;
    }

    .why-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .why-card-para {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .why-works-section {
        padding: 28px 16px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .why-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .why-para {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .btn-why-outline {
        font-size: 14px;
        padding: 10px 20px;
        border-width: 1.5px;
    }

    .why-card {
        padding: 18px;
        border-radius: 14px;
        border-width: 1.5px;
    }

    .why-icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .why-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .why-card-para {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .why-works-section {
        padding: 24px 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        margin-bottom: 14px;
        letter-spacing: 1px;
    }

    .why-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .why-para {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .btn-why-outline {
        font-size: 13px;
        padding: 10px 18px;
        border-width: 1.5px;
        border-radius: 6px;
        display: block;
        width: 60%;
        text-align: center;
    }

    .row.g-5 {
        --bs-gutter-y: 1.8rem;
    }

    .why-card {
        padding: 16px;
        border-radius: 12px;
        border-width: 1.5px;
    }

    .why-icon-box {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .why-card-title {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .why-card-para {
        font-size: 14px;
        line-height: 1.5;
    }
}


/* ===== DEOS METHOD SECTION ===== */
.deos-method-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* Title */
.method-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
}

.method-title-gold {
    color: #f5a623;
}

/* ---- Method Card ---- */
.method-card {
    background: #112240;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 28px;
    height: 100%;
    text-align: left;
    transition: border-color 0.3s ease;
}

.method-card:hover {
    border-color: #ffffff;
}

/* Big letter */
.method-letter {
    font-size: 75px;
    font-weight: 900;
    color: rgba(245, 166, 35, 0.25);
    line-height: 1;
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

.method-card:hover .method-letter {
    color: #f5a623;
}

/* Card title */
.method-card-title {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* Card para */
.method-card-para {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE: DEOS METHOD SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .deos-method-section {
        padding: 36px 30px;
    }

    .method-title {
        font-size: 36px;
    }

    .method-card {
        padding: 18px 22px;
    }

    .method-letter {
        font-size: 62px;
        margin-bottom: 22px;
    }

    .method-card-title {
        font-size: 17px;
    }

    .method-card-para {
        font-size: 14.5px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .deos-method-section {
        padding: 32px 20px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .method-title {
        font-size: 30px;
        margin-top: 16px;
    }

    .row.g-4.mt-2 {
        margin-top: 24px !important;
    }

    .method-card {
        padding: 18px 20px;
        border-radius: 14px;
    }

    .method-letter {
        font-size: 54px;
        margin-bottom: 18px;
    }

    .method-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .method-card-para {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .deos-method-section {
        padding: 28px 16px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .method-title {
        font-size: 24px;
        margin-top: 14px;
        line-height: 1.25;
    }

    .row.g-4.mt-2 {
        margin-top: 20px !important;
    }

    .method-card {
        padding: 16px 18px;
        border-radius: 14px;
        border-width: 1.5px;
    }

    .method-letter {
        font-size: 46px;
        margin-bottom: 14px;
    }

    .method-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .method-card-para {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .deos-method-section {
        padding: 24px 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .method-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .row.g-4.mt-2 {
        margin-top: 16px !important;
        --bs-gutter-y: 1.2rem;
    }

    .method-card {
        padding: 14px 16px;
        border-radius: 12px;
        border-width: 1.5px;
    }

    .method-letter {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .method-card-title {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .method-card-para {
        font-size: 14px;
        line-height: 1.5;
    }
}


/* ===== PROGRAMS SECTION 2 ===== */
.programs2-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* Title */
.programs2-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
}

.programs2-title-gold {
    color: #f5a623;
}

/* ---- Program Card ---- */
.prog2-card {
    background: #112240;
    border: 2px solid #868A93;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.prog2-card:hover {
    border-color: #f5a623;
}

/* Image wrapper */
.prog2-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    flex-shrink: 0;
}

.prog2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom-left pills */
.prog2-img-pills {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.prog2-pill {
    background: #0b1a2e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.prog2-pill i {
    font-size: 11px;
}

/* Top-right Most Popular badge */
.prog2-popular-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f5a623;
    color: #0b1a2e;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
}

/* Card body */
.prog2-body {
    padding: 15px 15px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card title */
.prog2-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* Card para */
.prog2-para {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
}

/* Topics label */
.prog2-topics-label {
    color: #6b7f9e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Topics pills */
.prog2-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    flex: 1;
}

.topic-pill {
    background: #1a2e4a;
    color: #d0dcea;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Outline button */
.btn-prog2-outline {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prog2-card:hover .btn-prog2-outline {
    background: #e09410;
    color: #0b1a2e;
}

/* Gold filled button (featured card) */
.btn-prog2-gold {
    display: block;
    width: 100%;
    text-align: center;
    background: #f5a623;
    color: #0b1a2e;
    border: none;
    font-size: 15px;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-prog2-gold:hover {
    background: #e09410;
    color: #0b1a2e;
}

/* Featured card border always gold */
.prog2-card-featured {
    border-color: #f5a623;
}

/* ===== RESPONSIVE: PROGRAMS SECTION 2 ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .programs2-section {
        padding: 36px 30px;
    }

    .programs2-title {
        font-size: 36px;
    }

    .prog2-img-wrap {
        height: 190px;
    }

    .prog2-body {
        padding: 14px 14px 24px;
    }

    .prog2-title {
        font-size: 19px;
    }

    .prog2-para {
        font-size: 14px;
    }

    .prog2-topics-label {
        font-size: 12.5px;
    }

    .topic-pill {
        font-size: 13px;
        padding: 7px 14px;
    }

    .btn-prog2-outline,
    .btn-prog2-gold {
        font-size: 14px;
        padding: 12px 18px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .programs2-section {
        padding: 32px 20px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .programs2-title {
        font-size: 30px;
        margin-top: 16px;
    }

    .row.g-4.mt-2 {
        margin-top: 20px !important;
    }

    .prog2-card {
        border-width: 1.5px;
    }

    .prog2-img-wrap {
        height: 200px;
    }

    .prog2-pill {
        font-size: 11px;
        padding: 4px 10px;
    }

    .prog2-popular-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .prog2-body {
        padding: 14px 14px 22px;
    }

    .prog2-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .prog2-para {
        font-size: 13.5px;
        margin-bottom: 14px;
    }

    .prog2-topics-label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .prog2-topics {
        gap: 8px;
        margin-bottom: 20px;
    }

    .topic-pill {
        font-size: 12.5px;
        padding: 6px 13px;
    }

    .btn-prog2-outline,
    .btn-prog2-gold {
        font-size: 13.5px;
        padding: 11px 16px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .programs2-section {
        padding: 28px 16px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .programs2-title {
        font-size: 24px;
        margin-top: 14px;
        line-height: 1.25;
    }

    .row.g-4.mt-2 {
        margin-top: 18px !important;
    }

    .prog2-card {
        border-width: 1.5px;
        border-radius: 12px;
    }

    .prog2-img-wrap {
        height: 190px;
    }

    .prog2-pill {
        font-size: 10.5px;
        padding: 4px 9px;
    }

    .prog2-popular-badge {
        font-size: 10.5px;
        padding: 5px 11px;
        top: 10px;
        right: 10px;
    }

    .prog2-body {
        padding: 14px 14px 20px;
    }

    .prog2-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .prog2-para {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .prog2-topics-label {
        font-size: 11.5px;
        margin-bottom: 10px;
    }

    .prog2-topics {
        gap: 7px;
        margin-bottom: 18px;
    }

    .topic-pill {
        font-size: 12px;
        padding: 6px 12px;
    }

    .btn-prog2-outline,
    .btn-prog2-gold {
        font-size: 13px;
        padding: 11px 16px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .programs2-section {
        padding: 24px 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .programs2-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .row.g-4.mt-2 {
        margin-top: 14px !important;
        --bs-gutter-y: 1.4rem;
    }

    .prog2-card {
        border-width: 1.5px;
        border-radius: 12px;
    }

    .prog2-img-wrap {
        height: 170px;
    }

    .prog2-pill {
        font-size: 10px;
        padding: 4px 8px;
    }

    .prog2-pill i {
        font-size: 10px;
    }

    .prog2-popular-badge {
        font-size: 10px;
        padding: 4px 10px;
        top: 8px;
        right: 8px;
    }

    .prog2-body {
        padding: 12px 12px 18px;
    }

    .prog2-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .prog2-para {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .prog2-topics-label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .prog2-topics {
        gap: 6px;
        margin-bottom: 16px;
    }

    .topic-pill {
        font-size: 11px;
        padding: 5px 11px;
    }

    .btn-prog2-outline,
    .btn-prog2-gold {
        font-size: 12.5px;
        padding: 10px 14px;
        border-radius: 6px;
    }
}


/* ===== EXPERT MENTORSHIP SECTION ===== */
.expert-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* ---- Left Image Block ---- */
.expert-img-wrap {
    position: relative;
    width: 100%;
}

.expert-main-img {
    width: 100%;
    max-width: 620px;
    height: 600px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
}

/* Bottom-right badge card */
.expert-badge-card {
    position: absolute;
    bottom: -36px;
    right: -20px;
    background: #15263e;
    border: 2px solid #868A93;
    border-radius: 12px;
    padding: 10px 22px;
    min-width: 230px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.expert-badge-stars {
    color: #f5a623;
    font-size: 16px;
    letter-spacing: 2px;
}

.expert-badge-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.expert-badge-sub {
    color: #8fa3c0;
    font-size: 13px;
    font-weight: 500;
}

/* ---- Right Content ---- */

/* Title */
.expert-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 22px;
    margin-bottom: 22px;
}

.expert-title-gold {
    color: #f5a623;
}

/* Para */
.expert-para {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 28px;
}

/* Points list */
.expert-points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.expert-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.expert-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expert-point-icon i {
    color: #f5a623;
    font-size: 20px;
}

/* ===== RESPONSIVE: EXPERT MENTORSHIP SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .expert-section {
        padding: 36px 30px;
    }

    .expert-main-img {
        height: 540px;
    }

    .expert-badge-card {
        min-width: 200px;
        padding: 10px 18px;
        right: -10px;
    }

    .expert-badge-stars {
        font-size: 14px;
    }

    .expert-badge-title {
        font-size: 14px;
    }

    .expert-badge-sub {
        font-size: 12px;
    }

    .why-label {
        font-size: 13px;
        padding: 7px 16px;
    }

    .expert-title {
        font-size: 36px;
    }

    .expert-para {
        font-size: 15px;
        max-width: 460px;
    }

    .expert-points li {
        font-size: 15px;
        gap: 12px;
    }

    .expert-point-icon i {
        font-size: 18px;
    }

    .btn-gold {
        font-size: 16px;
        padding: 12px 22px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .expert-section {
        padding: 32px 20px;
    }

    .expert-main-img {
        height: 480px;
        max-width: 100%;
    }

    .expert-badge-card {
        right: 0;
        bottom: -24px;
        min-width: 190px;
        padding: 12px 16px;
    }

    .expert-badge-stars {
        font-size: 13px;
    }

    .expert-badge-title {
        font-size: 13.5px;
    }

    .expert-badge-sub {
        font-size: 11.5px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .expert-title {
        font-size: 30px;
        margin-top: 40px;
        margin-bottom: 18px;
    }

    .expert-para {
        font-size: 14.5px;
        max-width: 100%;
        margin-bottom: 22px;
    }

    .expert-points {
        margin: 0 0 26px 0;
        gap: 14px;
    }

    .expert-points li {
        font-size: 14.5px;
        gap: 12px;
    }

    .expert-point-icon i {
        font-size: 17px;
    }

    .btn-gold {
        font-size: 15px;
        padding: 11px 20px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .expert-section {
        padding: 28px 16px;
    }

    .expert-main-img {
        height: 360px;
        max-width: 100%;
        border-radius: 16px;
    }

    .expert-badge-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -30px;
        margin-left: auto;
        margin-right: 14px;
        width: fit-content;
        min-width: 170px;
        padding: 10px 14px;
        border-width: 1.5px;
    }

    .expert-badge-stars {
        font-size: 12px;
    }

    .expert-badge-title {
        font-size: 12.5px;
    }

    .expert-badge-sub {
        font-size: 11px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .expert-title {
        font-size: 24px;
        line-height: 1.25;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .expert-para {
        font-size: 13.5px;
        line-height: 1.65;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .expert-points {
        margin: 0 0 22px 0;
        gap: 12px;
    }

    .expert-points li {
        font-size: 13.5px;
        gap: 10px;
        align-items: flex-start;
    }

    .expert-point-icon i {
        font-size: 16px;
    }

    .btn-gold {
        font-size: 14px;
        padding: 12px 20px;
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .expert-section {
        padding: 24px 14px;
    }

    .expert-main-img {
        height: 280px;
        max-width: 100%;
        border-radius: 14px;
    }

    .expert-badge-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -26px;
        margin-left: auto;
        margin-right: 10px;
        width: fit-content;
        min-width: 150px;
        padding: 8px 12px;
        border-width: 1.5px;
        border-radius: 10px;
    }

    .expert-badge-stars {
        font-size: 10.5px;
        letter-spacing: 1px;
    }

    .expert-badge-title {
        font-size: 11px;
        margin-bottom: 3px;
    }

    .expert-badge-sub {
        font-size: 9.5px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .expert-title {
        font-size: 26px;
        line-height: 1.3;
        margin-top: 20px;
        margin-bottom: 14px;
    }

    .expert-title br {
        display: none;
    }

    .expert-para {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .expert-points {
        margin: 0 0 18px 0;
        gap: 10px;
    }

    .expert-points li {
        font-size: 12.5px;
        gap: 10px;
        align-items: flex-start;
        line-height: 1.45;
    }

    .expert-point-icon i {
        font-size: 15px;
    }

    .btn-gold {
        font-size: 13px;
        padding: 12px 18px;
        display: block;
        width: 100%;
        text-align: center;
    }
}


/* ===== TRANSFORMATION SECTION ===== */
.transformation-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* Title */
.trans-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
}

.trans-title-gold {
    color: #f5a623;
}

/* ---- Image with overlay text ---- */
.trans-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.trans-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.trans-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 26, 46, 0.55);
    z-index: 1;
}

.trans-img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    width: 90%;
}

/* ---- Before / After Cards ---- */
.trans-card {
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

/* Before card - dark red gradient */
.trans-card-before {
    background: linear-gradient(135deg, #3a1018 0%, #1a1424 100%);
}

/* After card - dark gray gradient */
.trans-card-after {
    background: linear-gradient(135deg, #1c2433 0%, #15263e 100%);
}

/* Card header */
.trans-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

/* Icon circles */
.trans-icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.trans-icon-red {
    background: #761623;
    color: #DE0B0B;
}

.trans-icon-gold {
    background: rgba(245, 166, 35, 0.85);
    color: #1a1424;
}

/* Card titles */
.trans-card-title {
    font-size: 30px;
    font-weight: 900;
    margin: 0;
}

.trans-title-red {
    color: #e8434f;
}

.trans-title-gold-text {
    color: #f5a623;
}

/* List items */
.trans-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trans-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

/* Red dots for before list */
.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-red {
    background: #e8434f;
}

/* Gold tick icon for after list */
.trans-tick {
    color: #f5a623;
    font-size: 19px;
    flex-shrink: 0;
}

/* ---- Every Program Includes ---- */
.trans-includes-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
}

/* Feature cards */
.trans-feature-card {
    background: #112240;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px 14px;
    text-align: center;
    height: 100%;
}

.trans-feature-card i {
    color: #f5a623;
    font-size: 24px;
    display: block;
    margin-bottom: 12px;
}

.trans-feature-card div {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
}

/* ===== RESPONSIVE: TRANSFORMATION SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .transformation-section {
        padding: 36px 30px;
    }

    .trans-title {
        font-size: 36px;
    }

    .trans-img {
        height: 320px;
    }

    .trans-img-text {
        font-size: 34px;
    }

    .trans-card {
        padding: 28px 26px;
    }

    .trans-icon-circle {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 24px;
    }

    .trans-card-title {
        font-size: 36px;
    }

    .trans-list li {
        font-size: 19px;
        gap: 12px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .trans-tick {
        font-size: 17px;
    }

    .trans-includes-title {
        font-size: 26px;
    }

    .trans-feature-card {
        padding: 18px 12px;
    }

    .trans-feature-card i {
        font-size: 22px;
    }

    .trans-feature-card div {
        font-size: 13px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .transformation-section {
        padding: 32px 20px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .trans-title {
        font-size: 28px;
        margin-top: 16px;
    }

    .trans-img-wrap {
        border-radius: 20px;
    }

    .trans-img {
        height: 280px;
    }

    .trans-img-text {
        font-size: 26px;
    }

    .trans-card {
        padding: 24px 22px;
        border-radius: 14px;
    }

    .trans-card-header {
        gap: 14px;
        margin-bottom: 24px;
    }

    .trans-icon-circle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
    }

    .trans-card-title {
        font-size: 24px;
    }

    .trans-list {
        gap: 14px;
    }

    .trans-list li {
        font-size: 16px;
        gap: 10px;
    }

    .dot {
        width: 11px;
        height: 11px;
    }

    .trans-tick {
        font-size: 16px;
    }

    .trans-includes-title {
        font-size: 22px;
    }

    .trans-feature-card {
        padding: 16px 12px;
        border-radius: 10px;
    }

    .trans-feature-card i {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .trans-feature-card div {
        font-size: 12.5px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .transformation-section {
        padding: 28px 16px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .trans-title {
        font-size: 22px;
        margin-top: 14px;
        line-height: 1.25;
    }

    .trans-img-wrap {
        border-radius: 16px;
    }

    .trans-img {
        height: 220px;
    }

    .trans-img-text {
        font-size: 19px;
        width: 95%;
    }

    .trans-card {
        padding: 20px 18px;
        border-radius: 12px;
        border-width: 1.5px;
    }

    .trans-card-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .trans-icon-circle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .trans-card-title {
        font-size: 20px;
    }

    .trans-list {
        gap: 12px;
    }

    .trans-list li {
        font-size: 14px;
        gap: 10px;
        align-items: flex-start;
    }

    .dot {
        width: 9px;
        height: 9px;
        margin-top: 4px;
    }

    .trans-tick {
        font-size: 15px;
        margin-top: 1px;
    }

    .trans-includes-title {
        font-size: 19px;
    }

    .trans-feature-card {
        padding: 14px 10px;
        border-radius: 10px;
    }

    .trans-feature-card i {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .trans-feature-card div {
        font-size: 12px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .transformation-section {
        padding: 24px 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .trans-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .trans-img-wrap {
        border-radius: 14px;
    }

    .trans-img {
        height: 180px;
    }

    .trans-img-text {
        font-size: 14px;
        width: 95%;
    }

    .row.g-4.mt-5 {
        margin-top: 28px !important;
    }

    .trans-card {
        padding: 18px 16px;
        border-radius: 12px;
        border-width: 1.5px;
    }

    .trans-card-header {
        gap: 10px;
        margin-bottom: 18px;
    }

    .trans-icon-circle {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    .trans-card-title {
        font-size: 18px;
    }

    .trans-list {
        gap: 10px;
    }

    .trans-list li {
        font-size: 13px;
        gap: 8px;
        align-items: flex-start;
        line-height: 1.45;
    }

    .dot {
        width: 8px;
        height: 8px;
        margin-top: 4px;
    }

    .trans-tick {
        font-size: 14px;
        margin-top: 1px;
    }

    .trans-includes-title {
        font-size: 16px;
        margin-top: 32px !important;
    }

    .row.g-3.mt-4 {
        margin-top: 16px !important;
        --bs-gutter-y: 0.8rem;
    }

    .trans-feature-card {
        padding: 12px 8px;
        border-radius: 10px;
    }

    .trans-feature-card i {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .trans-feature-card div {
        font-size: 11px;
    }
}


/* ===== STUDENT REVIEWS SECTION ===== */
.reviews-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* Title */
.reviews-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
}

.reviews-title-gold {
    color: #f5a623;
}

/* ---- Review Card ---- */
.review-card {
    background: #112240;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Quote mark - dim gold */
.review-quote {
    color: rgba(245, 166, 35, 0.35);
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 6px;
}

/* Stars */
.review-stars {
    color: #f5a623;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* Paragraph */
.review-para {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

/* Divider line */
.review-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 18px;
}

/* Person block */
.review-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 166, 35, 0.4);
}

.review-name {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.review-meta {
    color: #8fa3c0;
    font-size: 14px;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 991px) {
    .reviews-title {
        font-size: 28px;
    }
}


/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(180deg, #0b1a2e 0%, #1a2740 100%);
    padding: 40px 50px;
}

/* Title */
.final-cta-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.final-cta-title-gold {
    color: #f5a623;
}

/* Para */
.final-cta-para {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 32px auto;
}

/* Buttons row */
.final-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE: FINAL CTA SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .final-cta-section {
        padding: 36px 30px;
    }

    .final-cta-title {
        font-size: 36px;
    }

    .final-cta-para {
        font-size: 15px;
        max-width: 580px;
    }

    .final-cta-btns .btn {
        font-size: 15px;
        padding: 12px 22px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .final-cta-section {
        padding: 32px 20px;
    }

    .final-cta-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .final-cta-para {
        font-size: 14.5px;
        max-width: 100%;
        margin-bottom: 26px;
    }

    .final-cta-btns {
        gap: 12px;
    }

    .final-cta-btns .btn {
        font-size: 14.5px;
        padding: 11px 20px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .final-cta-section {
        padding: 28px 16px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .final-cta-title {
        font-size: 24px;
        line-height: 1.3;
        margin-top: 14px;
        margin-bottom: 12px;
    }

    .final-cta-para {
        font-size: 13.5px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 22px;
    }

    .final-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .final-cta-btns .btn {
        width: 100%;
        max-width: 320px;
        font-size: 14px;
        padding: 12px 18px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .final-cta-section {
        padding: 24px 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .final-cta-title {
        font-size: 26px;
        line-height: 1.35;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .final-cta-para {
        font-size: 14px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .final-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .final-cta-btns .btn {
        width: 100%;
        max-width: 100%;
        font-size: 13px;
        padding: 11px 16px;
        border-radius: 6px;
    }
}


/* ===== FOOTER 2 ===== */
.site-footer2 {
    background-color: #0b1a2e;
    border-top: 3px solid #f5a623;
    padding: 40px 50px;
}

/* ---- Logo box ---- */
.footer2-logo-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 22px;
    display: inline-block;
    margin-bottom: 18px;
}

.footer2-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

/* Para */
.footer2-para {
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social icons */
.footer2-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer2-social-link {
    color: #c8d6e8;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer2-social-link:hover {
    color: #f5a623;
}

/* ---- Column titles ---- */
.footer2-col-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ---- Link list ---- */
.footer2-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Animated underline link */
.footer2-anim-link {
    position: relative;
    display: inline-block;
    color: #c8d6e8;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 4px;
}

.footer2-anim-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #f5a623;
    transition: width 0.35s ease;
}

.footer2-anim-link:hover {
    color: #ffffff;
}

.footer2-anim-link:hover::after {
    width: 100%;
}

/* ---- Divider ---- */
.footer2-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin: 40px 0 24px 0;
}

/* ---- Copyright ---- */
.footer2-copyright {
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 500;
    margin: 0;
}

/* ===== RESPONSIVE: FOOTER 2 ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
  .site-footer2 {
    padding: 36px 30px;
  }

  .footer2-logo-box {
    padding: 14px 20px;
  }

  .footer2-logo-img {
    height: 60px;
  }

  .footer2-para {
    font-size: 14px;
  }

  .footer2-social-link {
    font-size: 18px;
  }

  .footer2-col-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .footer2-anim-link {
    font-size: 14px;
  }

  .footer2-divider {
    margin: 34px 0 20px 0;
  }

  .footer2-copyright {
    font-size: 14px;
  }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
  .site-footer2 {
    padding: 32px 20px;
  }

  .footer2-logo-box {
    padding: 12px 18px;
    margin-bottom: 16px;
    border-radius: 10px;
  }

  .footer2-logo-img {
    height: 52px;
  }

  .footer2-para {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .footer2-social-icons {
    gap: 14px;
  }

  .footer2-social-link {
    font-size: 17px;
  }

  .footer2-col-title {
    font-size: 17px;
    margin-bottom: 16px;
    margin-top: 10px;
  }

  .footer2-link-list {
    gap: 10px;
  }

  .footer2-anim-link {
    font-size: 13.5px;
  }

  .footer2-divider {
    margin: 30px 0 18px 0;
  }

  .footer2-copyright {
    font-size: 13.5px;
  }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
  .site-footer2 {
    padding: 28px 16px;
  }

  .footer2-logo-box {
    padding: 11px 16px;
    margin-bottom: 14px;
    border-radius: 10px;
  }

  .footer2-logo-img {
    height: 46px;
  }

  .footer2-para {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .footer2-social-icons {
    gap: 12px;
  }

  .footer2-social-link {
    font-size: 16px;
  }

  .footer2-col-title {
    font-size: 16px;
    margin-bottom: 14px;
    margin-top: 8px;
  }

  .footer2-link-list {
    gap: 9px;
  }

  .footer2-anim-link {
    font-size: 13px;
  }

  .footer2-divider {
    margin: 26px 0 16px 0;
  }

  .footer2-copyright {
    font-size: 13px;
  }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
  .site-footer2 {
    padding: 24px 14px;
  }

  .footer2-logo-box {
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
  }

  .footer2-logo-img {
    height: 40px;
  }

  .footer2-para {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer2-social-icons {
    gap: 10px;
  }

  .footer2-social-link {
    font-size: 15px;
  }

  .footer2-col-title {
    font-size: 15px;
    margin-bottom: 12px;
    margin-top: 6px;
  }

  .footer2-link-list {
    gap: 8px;
  }

  .footer2-anim-link {
    font-size: 12px;
  }

  .footer2-divider {
    margin: 20px 0 14px 0;
  }

  .footer2-copyright {
    font-size: 12px;
  }
}


@media (max-width: 575px) {
    .deosweb {
        padding: 20px 0;
    }
}