@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div {
    font-family: "DM Sans", sans-serif !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "DM Sans", sans-serif !important;
}

.uc-navbar-top .uc-navbar-nav li a,
.uc-navbar-item a {
    font-size: 13px !important;
}

.uc-navbar-float {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: #f2f8f1;
    padding: 0;
}

.uc-navbar-container.uc-navbar-sticky {
    backdrop-filter: blur(8px);
    background-color: hsl(0deg 0% 100%);
    border-bottom: 1px solid #ececec !important;
}

.uc-navbar-nav > li:hover > a,
.uc-navbar-nav > li > a[aria-expanded="true"] {
    opacity: 1;
    color: rgb(19 139 62) !important;
}

.uc-navbar-right {
    gap: 7px !important;
    margin: 0;
}

.uc-navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
}

ul.uc-navbar-nav {
    margin-left: 40px;
}

.uc-navbar-top .uc-navbar-left .uc-navbar-nav {
    margin-left: 0;
}

.uc-navbar-sticky .uc-navbar-nav > li > a {
    color: #000;
}

.uc-navbar-nav > li > a[aria-expanded="true"] {
    box-shadow: inset 0 3px #ffb800;
}

.uc-navbar-top {
    background: #1c7640 !important;
}

/* ========= BLOCK SCOPE ========= */
.edu-enroll-strip {
    font-family: "Inter", sans-serif;
    /* background: #0f3d2e; */
    padding: 10px 0px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
}

.edu-enroll-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* ---------- WAVE TEXT ---------- */
.edu-enroll-wave {
    display: inline-flex;
    gap: 1px;
    font-size: 18px;
    font-weight: 700;
    color: #46fd90;
}

.edu-enroll-wave span {
    display: inline-block;
    animation: eduWave 1.6s ease-in-out infinite;
}

/* stagger delay */
.edu-enroll-wave span:nth-child(1) {
    animation-delay: 0s;
}

.edu-enroll-wave span:nth-child(2) {
    animation-delay: 0.08s;
}

.edu-enroll-wave span:nth-child(3) {
    animation-delay: 0.16s;
}

.edu-enroll-wave span:nth-child(4) {
    animation-delay: 0.24s;
}

.edu-enroll-wave span:nth-child(5) {
    animation-delay: 0.32s;
}

.edu-enroll-wave span:nth-child(6) {
    animation-delay: 0.4s;
}

.edu-enroll-wave span:nth-child(7) {
    animation-delay: 0.48s;
}

.edu-enroll-wave span:nth-child(8) {
    animation-delay: 0.56s;
}

.edu-enroll-wave span:nth-child(9) {
    animation-delay: 0.64s;
}

/* ---------- KEYFRAMES ---------- */
@keyframes eduWave {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 480px) {
    .edu-enroll-text,
    .edu-enroll-wave {
        font-size: 15px;
    }
}

/* ===============================
   MIRROR BUTTON – COMMON
=============================== */
.EnrollNowBtn,
.studentPortalBtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 5px;
}

/* Mirror shine layer */
.EnrollNowBtn::before,
.studentPortalBtn::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -80%;
    width: 50%;
    height: 220%;
    transform: skewX(-20deg);
    z-index: -1;
    animation: mirrorShine 3.5s ease infinite;
}

/* Lift on hover */
.EnrollNowBtn:hover,
.studentPortalBtn:hover {
    transform: translateY(-2px);
}

/* ===============================
   MIRROR KEYFRAMES
=============================== */
@keyframes mirrorShine {
    0% {
        left: -80%;
    }

    40% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

/* ===============================
   ENROLL NOW BUTTON
=============================== */
.EnrollNowBtn {
    background: #1c7640;
    color: #ffffff;
    /* box-shadow: 0 10px 30px rgba(31, 143, 74, 0.35); */
    border: 1px solid #1c7640;
    backdrop-filter: blur(10px);
}

.EnrollNowBtn::before {
    background: linear-gradient(
        120deg,
        transparent,
        rgb(255 255 255 / 37%),
        transparent
    );
}

.EnrollNowBtn:hover {
    color: #fff;
}

/* ===============================
   STUDENT PORTAL BUTTON
=============================== */
.studentPortalBtn {
    background: #e6b535;
    color: #ffffff;
    border: 2px solid #e6b535;
}

.studentPortalBtn::before {
    background: linear-gradient(
        120deg,
        transparent,
        rgb(255 255 255 / 45%),
        transparent
    );
}

.studentPortalBtn:hover {
    color: #fff;
}

.uc-navbar .uc-navbar-left,
.uc-navbar .uc-navbar-right,
.uc-navbar [class*="uc-navbar-center"] {
    gap: 1rem;
}

/* ===================================
   LOGISTICS HERO – BLOCK SCOPED
=================================== */
.lg-hero * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lg-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    overflow: hidden;
    color: #ffffff;
}

/* ---------- BACKGROUND ---------- */
.position-relative {
    position: relative !important;
}

.resolutions-hero-slider video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lg-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lg-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: lgHeroZoom 5s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes lgHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* ---------- OVERLAY ---------- */
.lg-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.65) 45%, rgb(0 0 0 / 0%) 65%, rgb(0 0 0 / 0%) 100%); */
    /* background: linear-gradient(153deg, rgb(255 255 255 / 58%) 0%, rgb(0 0 0 / 40%) 45%, rgba(0, 0, 0, 0.35) 65%, rgb(0 0 0 / 66%) 100%); */
    background: linear-gradient(
        153deg,
        rgb(255 255 255 / 56%) 0%,
        rgb(0 0 0 / 52%) 25%,
        rgb(0 0 0 / 19%) 60%,
        rgb(0 0 0 / 66%) 100%
    );
}

.uc-navbar-item,
.uc-navbar-nav > li > a {
    color: #000000;
    font-weight: 400;
}

.uc-logo .panel {
    width: 100px;
    margin: 8px 0;
}

/* ---------- CONTENT ---------- */
.lg-hero-content-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.lg-hero-container {
    max-width: 1320px;
    padding: 0 60px;
    width: 100%;
}

.lg-hero-content {
    max-width: 620px;
    margin-top: 10%;
}

/* ---------- ANIMATION BASE ---------- */
.lg-animate {
    opacity: 0;
    transform: translateY(30px);
    animation-fill-mode: forwards;
}

.lg-animate-title {
    animation: lgFadeUp 0.9s ease forwards;
}

.lg-animate-desc {
    animation: lgFadeUp 0.9s ease forwards;
    animation-delay: 0.2s;
}

.lg-animate-actions {
    animation: lgFadeUp 0.9s ease forwards;
    animation-delay: 0.4s;
}

@keyframes lgFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- TEXT ---------- */
.lg-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.lg-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 32px;
}

/* ---------- BUTTONS ---------- */
.lg-hero-actions {
    display: flex;
    gap: 20px;
}

.lg-btn-primary {
    background: #2da14b;
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.lg-btn-primary:hover {
    color: #000;
    background: #fff;
}

.lg-btn-secondary {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease;
}

/* Animated background layer */
.lg-btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e6b535;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

/* Hover fill animation */
.lg-btn-secondary:hover::before {
    transform: scaleX(1);
}

/* Text color on hover */
.lg-btn-secondary:hover {
    color: #fff;
}

/* Span default */
.lg-btn-secondary span {
    padding: 5px 9px;
    background: #fff0d7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #b87811;
    border: 1px solid #f2ddba;
    transition: all 0.35s ease;
}

/* Span hover state */
.lg-btn-secondary:hover span {
    background: #fff;
    color: #e6b535;
    border-color: #fff;
}

/* Lucide icon color control */
.lg-btn-secondary i,
.lg-btn-secondary svg {
    color: currentColor;
}

/* ---------- STATS ---------- */
.lg-hero-stats {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: auto;
    z-index: 3;
}

.lg-stats-container {
    max-width: 1320px;
    padding: 0 60px;
    display: flex;
    gap: 80px;
}

.lg-stat h3 {
    font-size: 40px;
    font-weight: 700;
}

.lg-stat p {
    font-size: 13px;
    color: #cbd5e1;
    margin-top: 6px;
}

span.bnr-thin {
    font-weight: 100;
    font-style: italic;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
=================================== */

/* Tablet */
@media (max-width: 1024px) {
    .lg-hero-title {
        font-size: 46px;
    }

    .lg-stats-container {
        gap: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lg-hero {
        min-height: auto;
        padding: 100px 0 180px;
    }

    .lg-hero-content-wrap {
        min-height: auto;
    }

    .lg-hero-container {
        padding: 0 24px;
    }

    .lg-hero-title {
        font-size: 38px;
    }

    .lg-hero-desc {
        font-size: 15px;
    }

    .lg-stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .lg-hero-title {
        font-size: 32px;
    }

    .lg-hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .lg-stats-container {
        flex-direction: column;
        gap: 22px;
    }

    .lg-stat h3 {
        font-size: 30px;
    }
}

/* counter section css start here */
.facts-numbers {
    padding: 0;
}

.counterPanel {
    padding: 30px 0;
}

/* counter section css End here */

/* About us section css start here */
section.AboutUs {
    padding: 60px 0;
    /* background: #f2f8f1; */
}

.MainSection {
    display: flex;
    align-items: center;
    gap: 90px;
    padding: 0 30px;
}

.innerMainSection {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 35px;
}

.innerContent {
    width: 65%;
}

.rightImg {
    width: 50%;
}

.rightImg img {
    border-radius: 10px;
}

.RightSection {
    width: 60%;
}

.LeftSection {
    width: 30%;
}

.SeCtitle {
    font-size: 40px;
    line-height: 50px;
    margin-top: 15px;
}

.imgageWrap img {
    border-radius: 10px;
}

.uc-link {
    color: #4caf50;
    font-weight: 500;
}

/* About us section css End here */

/* Course Items section css start here */
.CourseItems {
    padding: 60px 0;
    background: #fafafa;
}

.CourseItems .content {
    justify-content: space-between;
    height: 56%;
}

/* Limit course card description to equal lines */
.course-desc-limit {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.9em;
    /* keeps equal height across cards */
}

.sectionTitle {
    font-size: 50px !important;
    line-height: 55px !important;
}

.sectionParaTop {
    font-size: 16px !important;
}

.uc-navbar-top .uc-navbar-nav li a:hover {
    color: #ffffff !important;
    opacity: 1;
}

/* Course Items section css End here */

/* ================================================
           LEARNING HERO SECTION - BLOCK SCOPED CSS
           All classes prefixed with .lh- for isolation
        ================================================ */

/* Reset for this section only */
.lh-hero-section *,
.lh-hero-section *::before,
.lh-hero-section *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lh-hero-section {
    background-color: #f2f8f1;
    overflow: hidden;
}

/* Main Container */
.lh-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 0;
    position: relative;
}

.lh-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

/* Left Sidebar - Follow Us */
.lh-sidebar {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 120px;
}

.lh-follow-text {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.lh-social-divider {
    width: 1px;
    height: 30px;
    background-color: #1a1a1a;
}

.lh-social-links {
    display: flex;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
}

.lh-social-links span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.lh-social-links span:hover {
    color: #2d5a3d;
}

/* Left Content */
.lh-left-content {
    flex: 1;
    max-width: 550px;
    padding-top: 20px;
    margin-left: 25px;
}

/* Google Rated Badge */
.lh-rated-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.lh-rated-line {
    width: 40px;
    height: 2px;
    background-color: #2d5a3d;
}

.lh-rated-text {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main Heading */
.lh-main-heading {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 25px;
}

.lh-main-heading span {
    display: block;
}

/* Description */
.lh-description {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Buttons Container */
.lh-buttons-container {
    display: flex;
    gap: 15px;
}

.lh-btn-primary {
    padding: 12px 32px;
    background-color: #1c7640;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lh-btn-primary:hover {
    background-color: #159b4b;
    transform: translateY(-2px);
    color: #fff;
}

.lh-btn-secondary {
    padding: 12px 32px;
    background-color: transparent;
    color: #1c7640;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #1c7640;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lh-btn-secondary:hover {
    background-color: #159b4b;
    border: 2px solid #159b4b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Right Content - Sliders */
.lh-right-content {
    flex: 1;
    display: flex;
    gap: 20px;
    position: relative;
    max-width: 700px;
}

/* Slider Containers */
.lh-slider-container-1 {
    width: 350px;
    height: 490px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    right: -60px;
    top: 0px;
}

.lh-slider-container-2 {
    width: 350px;
    height: 490px;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    right: -90px;
    top: 140px;
    z-index: 1;
}

.lh-slider-1,
.lh-slider-2 {
    width: 100%;
    height: 100%;
}

.lh-slide {
    width: 100%;
    height: 495px;
}

.lh-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide slick default elements */
.lh-slider-container-1 .slick-dots,
.lh-slider-container-2 .slick-dots,
.lh-slider-container-1 .slick-arrow,
.lh-slider-container-2 .slick-arrow {
    display: none !important;
}

/* Floating Badge */
.lh-floating-badge {
    position: absolute;
    top: 25px;
    right: 140px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lh-badge-number {
    font-size: 35px;
    font-weight: 800;
    color: #2d5a3d;
}

.lh-badge-number span {
    color: #2d5a3d;
    font-size: 28px;
    margin-left: 5px;
}

span.lh-badge-icon img {
    width: 17px;
    position: absolute;
    top: 15px;
    left: 115px;
}

.lh-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-left: 20px;
    line-height: 1.4;
}

.lh-badge-icon {
    color: #f5a623;
    font-size: 18px;
}

/* Stats Bar */
.lh-stats-bar {
    background-color: #1c7640;
    padding: 35px 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.lh-stats-container {
    display: flex;
    gap: 130px;
}

.lh-stat-item {
    text-align: left;
}

.lh-stat-number {
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.lh-stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgb(255 255 255);
}

/* Scroll Down */
.lh-scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.lh-scroll-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #45f98e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lh-scroll-arrow {
    width: 30px;
    height: 30px;
    stroke: #45f88e;
    transition: transform 0.3s ease;
}

.lh-scroll-down:hover .lh-scroll-circle {
    background-color: #3cb371;
}

.lh-scroll-down:hover .lh-scroll-arrow {
    stroke: #ffffff;
    animation: lh-bounce 0.6s ease infinite;
}

@keyframes lh-bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.lh-scroll-text {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

/* ================================================
           RESPONSIVE STYLES
        ================================================ */

/* iPad / Tablet */
@media (max-width: 1200px) {
    .lh-main-heading {
        font-size: 42px;
    }

    .lh-slider-container-1 {
        width: 320px;
        height: 420px;
    }

    .lh-slider-container-2 {
        width: 240px;
        height: 350px;
    }

    .lh-stats-container {
        gap: 60px;
    }

    .lh-stat-number {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .lh-sidebar {
        display: none;
    }

    .lh-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .lh-left-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .lh-rated-badge {
        justify-content: center;
    }

    .lh-description {
        max-width: 100%;
    }

    .lh-buttons-container {
        justify-content: center;
    }

    .lh-right-content {
        max-width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    .lh-slider-container-1 {
        width: 350px;
        height: 450px;
    }

    .lh-slider-container-2 {
        width: 250px;
        height: 370px;
        right: 20px;
    }

    .lh-floating-badge {
        right: 10px;
        top: 10px;
    }

    .lh-stats-bar {
        padding: 30px 40px;
    }

    .lh-stats-container {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lh-main-container {
        padding: 30px 15px 0;
    }

    .lh-main-heading {
        font-size: 32px;
    }

    .lh-description {
        font-size: 14px;
    }

    .lh-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .lh-btn-primary,
    .lh-btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .lh-right-content {
        flex-direction: column;
        align-items: center;
    }

    .lh-slider-container-1 {
        width: 100%;
        /* max-width: 350px; */
        height: 400px;
    }

    .lh-slider-container-2 {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: 350px;
        right: 0;
        top: 0;
        margin-top: -50px;
    }

    .lh-floating-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
    }

    .lh-stats-bar {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .lh-stats-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .lh-stat-item {
        text-align: center;
        min-width: 140px;
    }

    .lh-stat-number {
        font-size: 32px;
    }

    .lh-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lh-main-heading {
        font-size: 28px;
    }

    .lh-slider-container-1 {
        height: 350px;
    }

    .lh-slider-container-2 {
        height: 300px;
    }

    .lh-stats-container {
        gap: 20px;
    }

    .lh-stat-item {
        min-width: 120px;
    }

    .lh-stat-number {
        font-size: 28px;
    }
}

/* how it works section start here */

.howItWorkSection {
    padding: 60px 0 30px;
}

.feature-item {
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
}

.subTitl {
    color: #1c7640;
}

/* how it works section End here */

/* Scoped styles - all selectors prefixed with .services-section */
/* .services-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */
.services-section {
    padding: 60px 0;
    background: #f2f8f1;
}

.services-section body {
    /* font-family: 'Inter', sans-serif; */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 60px 0;
}

/* .services-section html,
        .services-section body {
            height: 100%;
            overflow: hidden;
        } */

/* .services-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
        } */

/* Header Section */
.services-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-shrink: 0;
}

.services-section .section-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 48px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.2;
}

.services-section .section-title span {
    display: block;
    color: #1c7640;
}

.services-section .section-description {
    max-width: 500px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    text-align: right;
}

/* Slider Container */
.services-section .services-slider {
    margin: 0 -15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.services-section .slick-slide {
    padding: 0 15px;
}

.services-section .slick-list {
    overflow: visible;
    flex-grow: 1;
}

/* Service Card */
.services-section .service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    height: 380px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-section .service-card .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.services-section .service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        1deg,
        rgb(0 0 0 / 0%) 0%,
        rgb(0 0 0 / 78%) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Hover & Active States */
.services-section .service-card:hover .bg-image,
.services-section .service-card.active .bg-image {
    opacity: 1;
}

.services-section .service-card:hover::after,
.services-section .service-card.active::after {
    opacity: 1;
}

.services-section .service-card:hover,
.services-section .service-card.active {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-section .service-card:hover .card-content,
.services-section .service-card.active .card-content {
    color: #ffffff;
}

.services-section .service-card:hover .card-title,
.services-section .service-card.active .card-title {
    color: #ffffff;
}

.services-section .service-card:hover .card-description,
.services-section .service-card.active .card-description {
    color: rgba(255, 255, 255, 0.9);
}

.services-section .service-card:hover .card-icon,
.services-section .service-card.active .card-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.services-section .service-card:hover .card-icon svg,
.services-section .service-card.active .card-icon svg {
    stroke: #ffffff;
}

.services-section .service-card:hover .read-more,
.services-section .service-card.active .read-more {
    background: #ffffff;
    color: #1a1a2e;
}

/* Card Content */
.services-section .card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: color 0.5s ease;
}

.services-section .card-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.services-section .card-description {
    font-size: 14px;
    color: #64748b;
    /* line-height: 1.7; */
    flex-grow: 1;
    transition: color 0.5s ease;
}

.services-section .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.services-section .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.services-section .card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1a1a2e;
    transition: stroke 0.5s ease;
}

.services-section .read-more {
    padding: 12px 24px;
    background: #e6b535;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.services-section .read-more:hover {
    transform: scale(1.05);
}

/* Slick Arrows & Dots */
.services-section .slick-prev,
.services-section .slick-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.services-section .slick-prev:hover,
.services-section .slick-next:hover {
    background: #1a1a2e;
}

.services-section .slick-prev:hover:before,
.services-section .slick-next:hover:before {
    color: #ffffff;
}

.services-section .slick-prev {
    left: -25px;
}

.services-section .slick-next {
    right: -25px;
}

.services-section .slick-prev:before,
.services-section .slick-next:before {
    color: #1a1a2e;
    font-size: 20px;
    transition: color 0.3s ease;
}

.services-section .slick-dots {
    bottom: -50px;
    flex-shrink: 0;
}

.services-section .slick-dots li button:before {
    font-size: 10px;
    color: #cbd5e1;
}

.services-section .slick-dots li.slick-active button:before {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-section .slick-prev {
        left: 10px;
    }

    .services-section .slick-next {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .services-section .section-header {
        flex-direction: column;
        gap: 20px;
    }

    .services-section .section-description {
        text-align: left;
    }

    .services-section .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-section .container {
        padding: 0 20px;
    }

    .services-section .section-title {
        font-size: 32px;
    }

    .services-section .service-card {
        height: 350px;
        padding: 25px 20px;
    }
}

/* map section scss */

.simplemapsTooltip {
    color: white !important;
}

.simplemapsTooltip a {
    color: #cceeff !important;
    /* Optional: lighter color for links */
}

.simplemapsTooltip b {
    color: white !important;
    /* Makes bold labels white too */
}

div#my-whole-map {
    background: linear-gradient(135deg, #4b62c1, #18743e, #1a2a6c);
    color: white;
    min-height: 100vh;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div#my-whole-map h1 {
    color: #fff;
    padding-bottom: 30px;
}

/* Define blinking animation */
@keyframes blink {
    0%,
    100% {
    }

    50% {
        fill: #18753e;
        /* Yellow */
    }
}

/* Apply blinking effect to specific states */
.sm_state_MN,
.sm_state_MI,
.sm_state_ME,
.sm_state_IL,
.sm_state_KS,
.sm_state_HI,
.sm_state_FL,
.sm_state_NY,
.sm_state_PA,
.sm_state_MD,
.sm_state_VA,
.sm_state_OH,
.sm_state_IN,
.sm_state_CT,
.sm_state_MA,
.sm_state_TN,
.sm_state_AR,
.sm_state_GA,
.sm_state_SC,
.sm_state_KY,
.sm_state_AL,
.sm_state_LA,
.sm_state_MS,
.sm_state_IA,
.sm_state_MN,
.sm_state_TX,
.sm_state_NE,
.sm_state_CO,
.sm_state_AZ,
.sm_state_NV,
.sm_state_WA,
.sm_state_MI,
.sm_state_ID {
    animation: blink 0.5s infinite;
}

.xmark_sm {
    width: 30px;
}

.tt_sm {
    border-radius: 5px;
    box-shadow: none;
    background-color: green;
    padding: 20px 20px;
    opacity: 0.9;
    font-size: 13px;
    color: #fff;
    border: 3px solid #fff;
    line-height: 1;
    text-align: left;
    width: 500px;
}

.tt_name_sm {
    float: left;
    font-weight: bold;
    margin-bottom: 10px;
}

.xmark_sm {
    float: right;
    margin-left: 5px;
    cursor: pointer;
    line-height: 0px;
}

.tt_custom_sm {
    color: #fff !important;
    text-decoration: none;
    background: green;
    /* display: inline-block; */
    padding: 0 5px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.43;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    /* border: 1px solid; */
    border-radius: 4px;
    text-align: left;
    word-wrap: break-word;
}

.xmark_sm img {
    width: 20px !important;
    filter: invert(1);
    position: absolute;
    top: 10px;
    right: 13px;
}

.tt_mobile_sm {
    margin-top: 15px;
}

.btn_simplemaps {
    color: #fff;
    text-decoration: none;
    background: green;
    display: inline-block;
    padding: 5px 5px;
    margin: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.43;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid;
    border-radius: 4px;
}

.btn_simplemaps:hover {
    text-decoration: underline;
}

.map-responsive {
    width: 100%;
    height: auto;
    max-width: 100%;
    overflow-x: visible;
    position: relative;
    text-align: center;
    overflow-y: hidden;
}

#map {
    width: 100% !important;
    height: auto !important;
    min-height: 400px;
}

@media (max-width: 768px) {
    #my-whole-map h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .tt_sm {
        padding: 15px 15px;
        font-size: 12px;
    }

    .btn_simplemaps {
        font-size: 13px;
        padding: 4px 6px;
    }
}

.MapTitle .subTitle {
    background: #fff !important;
}

.MapTitle h2 {
    color: #fff !important;
}

/* faq section css start here */
.faqSection {
    padding: 60px 0;
}

.ctaSection.panel {
    background: #1c7640;
}

/* faq section css End here */

/* Unique block-scoped styles - only affects this slider */
.green-creek-slider-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 20px;
}

.green-creek-slider-container .slick-slide {
    padding: 0 15px;
    box-sizing: border-box;
}

.green-creek-slider-container .slide-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.green-creek-slider-container .slick-dots li button:before {
    color: #4caf50;
    font-size: 12px;
}

.green-creek-slider-container .slick-prev:before,
.green-creek-slider-container .slick-next:before {
    color: #4caf50;
    font-size: 30px;
}

.green-creek-slider-container .slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

/* Minor responsive tweak */
@media (max-width: 768px) {
    .green-creek-slider-container .slick-slide {
        padding: 0 8px;
    }
}

.OurAppkSection {
    padding: 60px 0;
}

.blog-posts {
    background: #fafafa;
    padding: 60px 0;
}

.bologSlider {
    margin-top: 30px;
}

.heading.BlogHead {
    display: flex;
    align-items: center;
}

.footerLogo {
    width: 100px;
}

.uc-footer {
    padding: 60px 0 20px;
    background: #0a4924;
}

.uc-footer-bottom {
    padding-top: 20px;
    color: #fff;
    margin-top: 40px;
}

.uc-footer-widgets p {
    color: #e5e5e5;
    font-size: 14px;
}

.uc-footer-widgets ul li a {
    color: #dadada;
}

.uc-footer-widgets ul li a:hover {
    color: #e6b535;
}

h4.widgetTitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

ul.socialmedia {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 15px;
}

ul.socialmedia li a {
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 5px;

    color: #ffffff;
    background: #e6b535;
    display: flex;
}

ul.socialmedia li a:hover {
    background: #ffffff;
    color: #0a4924;
}

ul.contactsInfo {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.contactsInfo li {
    margin-bottom: 15px;
}

ul.contactsInfo li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

ul.contactsInfo li a iconify-icon {
    padding: 10px;
    background: #ffffff;
    border-radius: 50px;
    color: #1c7640;
    display: flex;
    align-items: center;
}

ul.contactsInfo li a:hover {
    color: #e6b535;
}

ul.contactsInfo li a:hover iconify-icon {
    background: #e6b535;
    color: #fff;
}

ul.terms-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

ul.terms-nav li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

ul.terms-nav li a:hover {
    text-decoration: underline;
    color: #e6b535;
}

.app {
    display: flex;
    align-items: center;
    gap: 10px;
}

.AboutWidget {
    padding-right: 15px;
}

/* Loader code css*/
#page-loader {
    position: fixed;
    inset: 0;
    background: #f5f7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

img.loaderImg {
    width: 500px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.element1 img {
    position: absolute;
    width: 230px;
    top: 62px;
    animation: floatY 4s ease-in-out infinite;
    will-change: transform;
    left: 105px;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ================================================
                FLEXBOX GRID SYSTEM
        ================================================ */
/* Base row */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Default (mobile first) */
.col {
    width: 100%;
}

/* ---------- SMALL (≥576px) ---------- */
@media (min-width: 576px) {
    .col-sm-1 {
        width: 8.333%;
    }

    .col-sm-2 {
        width: 16.666%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-12 {
        width: 100%;
    }
}

/* ---------- MEDIUM (≥768px) ---------- */
@media (min-width: 768px) {
    .col-md-1 {
        width: 8.333%;
    }

    .col-md-2 {
        width: 16.666%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-12 {
        width: 100%;
    }
}

/* ---------- LARGE (≥992px) ---------- */
@media (min-width: 992px) {
    .col-lg-2 {
        width: 16.666%;
    }

    /* 6 columns */
    .col-lg-3 {
        width: 25%;
    }

    /* 4 columns */
    .col-lg-4 {
        width: 33.333%;
    }

    /* 3 columns */
    .col-lg-6 {
        width: 50%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

/* ---------- OPTIONAL: GAP SUPPORT ---------- */
.row.gap {
    gap: 16px;
}

/* new code date 13/01/2026 */

.scrolership-section {
    padding: 0px 0px 20px 0px;
}

.scrolership-section .rating.panel iconify-icon {
    font-size: 24px;
    color: #e6b535;
}

.brands.hstack span {
    font-size: 26px;
    font-weight: 600;
    background: #fff;
    padding: 4px 28px;
    border-radius: 50px;
    font-family: "Playfair" !important;
    overflow: hidden;
    isolation: isolate;
    position: relative;
}

.brands.hstack span::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -80%;
    width: 50%;
    height: 220%;
    transform: skewX(-20deg);
    z-index: -1;
    background: linear-gradient(
        120deg,
        rgba(230, 181, 53, 0.35),
        rgba(230, 181, 53, 0.18),
        rgba(255, 255, 255, 0.25)
    );
    opacity: 0;
}

.brands.hstack span.active::before {
    opacity: 1;
    animation: mirrorShine2 3.5s ease forwards;
}

@keyframes mirrorShine2 {
    0% {
        left: -80%;
    }

    100% {
        left: 140%;
    }
}

.brands.hstack {
    width: 100%;
    margin: auto;
    height: auto;
}

.CourseItems {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14) 100%,
        rgba(250, 250, 250, 0.6) 100%
    );
}

.inner-banner {
    padding: 70px 0px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.inner-banner ul {
    display: flex;
    gap: 8px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: #fff;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff2e;
    max-width: 60%;
    margin-bottom: 20px;
}

.inner-banner ul li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.inner-banner ul li a iconify-icon {
    font-size: 18px;
}

.inner-banner h1 {
    margin-bottom: 8px;
    color: #fff;
}

.inner-banner p {
    max-width: 60%;
    color: #fff;
    line-height: 30px;
}

.MainSection.facility-page {
    padding: 0;
    gap: 70px;
}

.MainSection.facility-page .LeftSection {
    width: 48%;
}

.in-btn-page a {
    padding: 10px 18px;
    border-radius: 50px !important;
}

.in-btn-page a iconify-icon {
    font-size: 22px;
}

.MainSection.facility-page .LeftSection .imgageWrap {
    height: 400px;
}

.MainSection.facility-page .LeftSection .imgageWrap img {
    height: 100%;
    object-fit: cover;
}

.facility-text-wrsap {
    display: flex;
    gap: 15px;
}

.facility-text-wrsap .facility-text {
    width: 50%;
}

.facility-b-image {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding-top: 25px;
}

.facility-left-sec {
    width: 65%;
}

.facility-right-sec {
    width: 35%;
    position: relative;
}

.facility-left-sec-img {
    height: 300px;
    width: 100%;
}

.facility-left-sec-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.acility-left-sec-box-wrap {
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

.acility-left-box-one {
    width: 60%;
    position: relative;
    height: 183px;
}

.acility-left-box-one img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.acility-left-box-one-text {
    position: absolute;
    padding: 24px;
    color: #fff;
    width: 100%;
}

.acility-left-box-one-text span {
    height: 45px;
    width: 45px;
    background: #345693;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.acility-left-box-one-text span iconify-icon {
    font-size: 24px;
}

.acility-left-box-one-text h4 {
    margin-bottom: 2px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.acility-left-box-one-text h4 a {
    height: 42px;
    width: 42px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
}

.acility-left-box-one-text h4 a iconify-icon {
    font-size: 20px;
}

.acility-left-box-two {
    background: #f2f2f2;
    padding: 24px;
    border-radius: 16px;
    width: 40%;
}

.facility-right-sec-img {
    height: 503px;
    width: 100%;
    border: 1px solid #dddddd75;
    border-radius: 16px;
}

.facility-right-sec-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.facility-right-sec .in-btn-page {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.acility-left-box-two h5 {
    margin-bottom: 4px;
    font-size: 18px;
}

.acility-left-box-one-text p {
    max-width: 78%;
    font-size: 15px;
}

.acility-left-box-two p {
    font-size: 15px;
}

.section-header.developed-header {
    display: block;
    margin-bottom: 40px;
}

.section-header.developed-header h2.section-title span {
    display: inline;
}

.section-header.developed-header h2.section-title {
    text-align: center;
    font-size: 42px;
}

.section-header.developed-header span {
    margin: auto;
}

.section-header.developed-header .section-description {
    max-width: 92%;
    text-align: center;
    margin: auto;
    padding-top: 10px;
}

.edu-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.edu-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.edu-card:hover {
    transform: translateY(-3px);
    background-color: #1c7640;
}

.edu-card.active-c {
    background-color: #1c7640;
}

.edu-card.active-c .edu-icon {
    color: #fff;
}

.edu-card.active-c h6 {
    color: #fff;
}

.edu-card.active-c p {
    color: #fff;
}

.edu-card:hover .edu-icon {
    color: #fff;
}

.edu-card:hover h6 {
    color: #fff;
}

.edu-card:hover p {
    color: #fff;
}

.edu-icon {
    font-size: 28px;
    height: 30px;
    position: relative;
    top: -3px;
}

.edu-card-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #198754;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 14px;
}

.edu-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.edu-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
}

.edu-card-head h6 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.edu-icon iconify-icon {
    line-height: 28px;
}

.section-header.developed-header h5 {
    text-align: center;
    margin: 0;
    padding-top: 15px;
    font-size: 20px;
    font-weight: 500;
}

.features-text-wrap {
    height: auto;
    width: 100%;
}

.features-text-wrap .section-header.developed-header span {
    margin: 0;
}

.features-text-wrap .section-header.developed-header h2.section-title {
    text-align: left;
}

.features-text-wrap .section-header.developed-header .section-description {
    text-align: left;
    max-width: 100%;
}

.features-text-wrap ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 15px;
}

.features-text-wrap ul li {
    display: flex;
    align-items: self-start;
    gap: 8px;
    padding-bottom: 12px;
    line-height: 28px;
}

.features-text-wrap ul li iconify-icon {
    position: relative;
    top: 5px;
    font-size: 18px;
}

.features-text-wrap ul li:last-of-type {
    padding: 0;
}

.features-text-wrap .section-header.developed-header {
    margin-bottom: 20px;
}

.features-img {
    height: 600px;
    width: 92%;
}

.features-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.Benefits-features {
    background: #fff;
    padding: 60px 0px;
}

.services-section.programWorks-wrap
    .section-header.developed-header
    h2.section-title {
    width: 100%;
}

/* ================= FORM CARD ================= */
.mf-scope .mf-card {
    background: #fff;
    max-width: 70%;
    width: 100%;
    border-radius: 12px;
    padding: 0px 40px 40px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: auto;
}

:focus-visible {
    outline: none !important;
}

/* ================= HEADING ================= */
.mf-scope h2 {
    margin-bottom: 2px;
    font-size: 23px;
    font-weight: 600;
}

.mf-card-wrap p {
    font-size: 14px;
}

.mf-card-wrap {
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin: -40px -40px 25px -40px;
    padding: 13px 40px 18px 40px;
    background: #e6b535;
    border-radius: 12px 12px 0px 0px;
    color: #fff;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    height: 40px !important;
}

/* .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px  !important;
} */
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 6px !important;
    right: 8px !important;
}

/* ================= FORM GROUP ================= */
.mf-scope .mf-group {
    margin-bottom: 20px;
    position: relative;
}

.mf-scope label iconify-icon {
    font-size: 17px;
    position: relative;
    top: 3px;
}

.mf-scope label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.mf-scope .required::after {
    content: " *";
    color: #dc3545;
}

.mf-card-wrap {
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin: 0px -40px 30px -40px;
}

/* ================= INPUT ================= */
.mf-scope input,
.mf-scope textarea,
.mf-scope select {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    background: #fafafaba;
    transition: 0.3s;
}

.mf-scope input:focus,
.mf-scope select:focus {
    outline: none;
    border-color: #1c7640;
    box-shadow: 0 0 0 2px rgba(28, 118, 64, 0.12);
}

/* ================= ICON INPUT ================= */
/* .mf-scope .icon-field input,
.mf-scope .icon-field select{
    padding-left:38px;
} */

.mf-scope .icon-field i {
    font-size: 14px;
    color: #888;
}

/* ================= NAME ROW ================= */
.mf-scope .mf-row {
    display: flex;
    gap: 20px;
}

.mf-group-wrap {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.mf-group-wrap .mf-group.icon-field {
    width: 100%;
}

/* ================= RADIO ================= */
.mf-scope .radio-wrap {
    display: flex;
    gap: 40px;
}

.mf-scope .radio-wrap label {
    font-size: 14px;
    text-transform: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.mf-scope .radio-wrap input {
    display: none;
}

.mf-scope .radio-wrap span {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.mf-scope .radio-wrap input:checked + span {
    border-color: #1c7640;
}

.mf-scope .radio-wrap input:checked + span::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #1c7640;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mf-group {
    width: 100%;
}

/* ================= SELECT2 ================= */
.mf-scope .select2-container--default .select2-selection--single {
    height: 40px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.mf-scope .select2-selection__rendered {
    line-height: 40px;
    padding-left: 15px !important;
    position: absolute;
    top: 6px;
}

.mf-scope .select2-selection__arrow {
    height: 40px;
}

/* ================= BUTTON ================= */
.mf-scope button {
    width: 100%;
    height: 42px;
    background: #e6b535;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.mf-scope button:hover {
    background: #d3a42c;
}

.mf-scope textarea {
    height: 82px;
    padding: 8px 12px;
}

.services-section.build-wraps {
    background: #fff;
}

.services-section.build-wraps .edu-card {
    background: #f2f8f196;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #1c764024;
}

.services-section.build-wraps .edu-card.active-c {
    background-color: #1c7640;
}

.services-section.build-wraps .edu-card.active-c .edu-icon {
    color: #fff;
}

.services-section.build-wraps .edu-card.active-c h6 {
    color: #fff;
}

.services-section.build-wraps .edu-card.active-c p {
    color: #fff;
}

.services-section.build-wraps .edu-card:hover .edu-icon {
    color: #fff;
}

.services-section.build-wraps .edu-card:hover h6 {
    color: #fff;
}

.services-section.build-wraps .edu-card:hover p {
    color: #fff;
}

.services-section.build-wraps .edu-card:hover {
    background-color: #1c7640;
}

.edu-card-grid.edu-card-grid-studernt {
    grid-template-columns: repeat(3, 1fr);
}

.edu-card-new-ds {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.edu-card.security-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-card-textt h6 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}

.edu-card.security-card .edu-card-head {
    padding: 0;
}

.edu-card.security-card .edu-card-head .edu-icon {
    font-size: 36px;
}

.edu-card-new-ds .edu-card-head {
    padding-bottom: 8px;
}

.edu-card-new-ds .edu-card.active-c {
    padding: 15px 24px 20px 24px;
}

.edu-card.security-card .edu-icon {
    height: 65px;
    width: 65px;
    background: #1c76401f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #1c7640;
}

.services-section.build-wraps h2.section-title {
    width: 100%;
}

.cna-permission-wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

/* Checkbox container */
.cna-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    text-transform: none !important;
}

/* Hide default checkbox */
.cna-checkbox-input {
    display: none;
}

/* Custom checkbox box */
.cna-checkbox-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #cbd5e1;
    background-color: #ffffff;
    position: relative;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-top: 3px;
    display: block;
}

/* Checkmark */
.cna-checkbox-box::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Checked state */
.cna-checkbox-input:checked + .cna-checkbox-box {
    background-color: #e6b535;
    border-color: #e6b535;
}

.cna-checkbox-input:checked + .cna-checkbox-box::after {
    opacity: 1;
}

/* Hover effect */
.cna-checkbox:hover .cna-checkbox-box {
    border-color: #e6b535;
}

/* Text styling */
.cna-checkbox-text {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}

.captcha-form {
    max-width: 420px;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.captcha-form h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.captcha-form button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.captcha-form button:hover {
    background: #1e40af;
}

.g-recaptcha {
    margin-bottom: 16px;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.inner-banner.with-before {
    position: relative;
}

.inner-banner.with-before:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #1c7640d4;
}

.inner-banner.with-before .container {
    position: relative;
    z-index: 1;
}

.instructor-top .section-header.developed-header span {
    margin: 0;
}

.instructor-top .section-header.developed-header h2.section-title {
    text-align: left;
}

.instructor-top .section-header.developed-header .section-description {
    text-align: left;
    max-width: 100%;
    line-height: 26px;
}

.tc-left {
    position: relative;
    height: 394px;
}

.tc-image-wrapper {
    position: relative;
}

.tc-img-main {
    width: 64%;
    border-radius: 16px;
    height: 300px;
    object-fit: cover;
}

.tc-img-small {
    width: 50%;
    position: absolute;
    bottom: -94px;
    right: 40px;
    border-radius: 16px;
    height: 220px;
    object-fit: cover;
}

.tc-counter-box {
    position: absolute;
    top: 32px;
    right: 100px;
    background: #1c7640;
    color: #fff;
    padding: 14px 22px 18px 22px;
    border-radius: 12px;
    min-width: 200px;
}

.tc-counter-box:before {
    content: "";
    position: absolute;
    height: 100px;
    background: #ffffff;
    right: -26px;
    top: 12px;
    z-index: 99999;
    width: 35px;
    transform: rotate(11deg);
}

.tc-counter-box h2 {
    margin-bottom: 6px;
}

.tc-counter-box p {
    font-size: 15px;
}

.instructor-top .section-header.developed-header h5 {
    text-align: left;
    font-weight: 600;
    padding-bottom: 10px;
}

.instructor-top ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.instructor-top ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 38%;
    line-height: 34px;
}

.instructor-top ul li iconify-icon {
    font-size: 19px;
}

.instructor-top a {
    position: relative;
    align-items: center;
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    gap: 5px;
    background: #e6b535;
    color: #ffffff;
    border: 2px solid #e6b535;
    display: inline-flex;
    margin-top: 25px;
}

.instructor-top a iconify-icon {
    font-size: 22px;
}

.instructor-top .section-header.developed-header {
    margin: 0;
}

.modern-tab-con {
    margin-top: 30px;
}

.modern-tab-con ul.main-solutions-nav {
    list-style-type: none;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.modern-tab-con ul.main-solutions-nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0 30px;
    height: 56px !important;
    background: #f2f8f1;
    border-radius: 12px !important;
}

.modern-tab-con ul.main-solutions-nav li.uc-active a {
    background: #1c1c1e;
    color: #fff;
}

.solutions-item.panel h3 {
    font-size: 42px !important;
    line-height: 50px !important;
}

.solutions-item.panel p {
    font-size: 15px !important;
}

.section-header.developed-header .modern-tab-con span {
    margin: 0;
}

.services-section.programWorks-wrap.qna-text {
    background: #fff;
}

.qn-contents-left {
    width: 40%;
}

.qn-contents-right {
    width: 60%;
}

.qn-contents-right .mf-scope .mf-card {
    max-width: 100%;
    padding: 0px 30px 30px 30px;
}

.qn-contents-right .mf-scope .mf-card .mf-card-wrap {
    margin: 0px -30px 30px -30px;
}

.qn-contents-left .section-header.developed-header span {
    margin: 0;
}

.qn-contents-left .section-header.developed-header h2.section-title {
    font-size: 30px;
    text-align: left;
}

.qn-contents-left .section-header.developed-header .section-description {
    max-width: 100%;
    text-align: left;
    font-size: 15px;
}

.qn-contents-left ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding-top: 15px;
}

.qn-contents-left ul li {
    font-size: 15px;
    line-height: 38px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.qn-contents-left .section-header.developed-header {
    height: 350px;
    position: sticky;
    top: 60px;
}

.blog-card-list {
    height: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 24px;
}

.blog-card-list .swiper-slide {
    width: calc(33.33% - 20px);
    margin-top: 10px;
}

.blog-card-list .swiper-slide a span {
    margin: 0;
}

.blog-pagination {
    height: auto;
    width: 100%;
    padding-top: 50px;
}

.blog-pagination ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 18px;
    justify-content: center;
}

.blog-pagination ul li a {
    height: 42px;
    width: 42px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.blog-pagination ul li a iconify-icon {
    font-size: 20px;
}

.blog-pagination ul li.active a {
    background: #e6b535;
    border-color: #e6b535;
    color: #fff;
}

.blog-pagination ul li:hover a {
    background: #e6b535;
    border-color: #e6b535;
    color: #fff;
}

.blog-details-left .section-header.developed-header span {
    margin: 0;
}

.blog-details-left .section-header.developed-header h2.section-title {
    text-align: left;
}

.blog-details-left .section-header.developed-header {
    margin-bottom: 10px;
}

.blog-details-left-text p {
    font-size: 16px;
}

.blog-details {
    display: flex;
    gap: 30px;
}

.blog-details-left {
    width: 65%;
}

.blog-details-right {
    width: 35%;
    padding-left: 20px;
}

.blog-details .blog-details-left-text figure.featured-image img {
    border-radius: 12px;
}

.blog-details .blog-details-left-text figure.featured-image:hover {
    border-radius: 12px !important;
}

figure.featured-image.bigblog-img {
    height: 320px;
    width: 100%;
}

figure.featured-image.bigblog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.recent-blog-box {
    height: auto;
    width: 100%;
    margin-bottom: 24px;
}

.recent-blog-box article.post {
    flex-direction: row;
}

.blog-details-right .post-related.panel {
    padding: 24px;
    background: #f2f2f287;
    border-radius: 10px;
    border: 1px solid #dddddd57;
    position: sticky;
    top: 20px;
}

.recent-blog-box article.post figure.featured-image {
    height: 95px;
    width: 95px;
    min-width: 95px;
}

.recent-blog-box article.post figure.featured-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.recent-blog-box article.post figure.featured-image:hover img {
    border-radius: 10px !important;
}

.recent-blog-box article.post header.panel h5 {
    font-size: 20px !important;
    font-weight: 500;
    line-height: 24px !important;
}

.post-related.panel h4 {
    font-size: 24px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 24px;
}

.fw-medium.havebe {
    background: #00000061;
    font-size: 16px !important;
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.card-size-fix {
    width: calc(33.33%);
}

.cstack.card-con-contact {
    background: #1c7640;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
}

.enroll-form-cols {
    padding: 0 !important;
}

.enroll-form .container {
    max-width: 900px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.form-header {
    background: linear-gradient(135deg, #262874 0%, #1e40af 100%);
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}

.form-header p {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

.form-content {
    padding: 24px;
}

.alert-info {
    background: #dbeafe;
    border-left: 4px solid #262874;
    padding: 16px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
}

.alert-info strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.enroll-wrapper .section-header {
    background: #f3f4f6;
    padding: 16px 24px;
    margin: 40px -40px 30px -40px;
    border-left: 4px solid #262874;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: left;
}

.section-header:first-of-type {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-row.triple {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 24px;
}

.form-group label iconify-icon {
    font-size: 18px;
}

.form-group label i {
    color: #262874;
    font-size: 16px;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #6b7280;
    pointer-events: none;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1f2937;
    font-weight: 500;
}

.form-control.with-icon {
    padding-left: 44px;
}

.form-control:focus {
    outline: none;
    border-color: #262874;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: #6b7280;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #262874;
}

.radio-option label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.upload-preview {
    height: auto;
    width: 100%;
}

.preview-thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.preview-info span:first-of-type {
    font-size: 14px;
    line-height: 20px;
    padding-top: 8px;
    display: block;
}

.preview-info span:last-of-type {
    font: 13px;
}

.pdf-icon {
    font-size: 48px;
    color: #e63946;
}

.preview-thumb i {
    font-size: 38px;
}

.remove-file {
    background: none;
    border: none;
    color: #e63946;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 8px;
}

.totelpay label img,
.totelpay label svg {
    width: 20px;
}

.cashapp-wrap img {
    max-width: 52px;
}

.cashapp-wrap label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-section.build-wrapsfo {
    background: #f7f7f7;
}

.file-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 2px dashed #cccccc;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: column;
    text-align: center;
    height: 150px;
}

.file-upload:hover {
    border-color: #262874;
    background: #eff6ff;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.file-upload-content i {
    font-size: 32px;
    color: #262874;
}

.file-upload-content .file-name {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.file-upload-content .file-hint {
    font-size: 12px;
    color: #6b7280;
}

.file-upload.has-file {
    border-color: #10b981;
    background: #f0fdf4;
}

.file-upload.has-file .file-upload-content i {
    color: #10b981;
}

.file-upload iconify-icon {
    font-size: 28px;
}

.file-upload p {
    font-size: 15px;
    font-weight: 600;
    padding-top: 5px;
}

.file-upload p small {
    font-weight: 400;
}

.info-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.7;
}

.signature-pad {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    cursor: crosshair;
    display: block;
    width: 100%;
    height: 150px;
}

.signature-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.btn-clear {
    padding: 8px 16px;
    background: #ffffff;
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: #ef4444;
    color: #ffffff;
}

.recaptcha-wrapper {
    display: flex;
    margin: 15px 0;
}

.btn-submit {
    width: 100%;
    padding: 12px 32px;
    background: #1c7740;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .form-content {
        padding: 24px;
    }

    .section-header {
        margin-left: -24px;
        margin-right: -24px;
        font-size: 16px;
    }

    .form-header h1 {
        font-size: 24px;
    }

    .form-row,
    .form-row.triple {
        grid-template-columns: 1fr;
    }
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-input-wrapper .country-code {
    position: absolute;
    left: 16px;
    color: #6b7280;
    font-size: 14px;
    pointer-events: none;
}

.phone-input-wrapper .form-control {
    padding-left: 48px;
}

.checkbox-agreement {
    display: none;
}

.agreement-text {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #262874;
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
    color: #1f2937;
}

.agreement-text p {
    margin-bottom: 12px;
}

.agreement-text p:last-child {
    margin-bottom: 0;
}

.enroll-form {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
}

.alert-info p {
    margin: 0;
}

.info-box p {
    margin: 0;
}

.about-area.style-three .about-content.certificationpage {
    border: none;
}

.allctrns {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.allctrnsimg {
    width: 16%;
    height: 80px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.allctrnsimg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.phone-input-wrapper .iti {
    width: 100%;
}

.form-header.moreheader {
    background: #fff;
    text-align: left;
    border-radius: 16px 16px 0px 0px;
}

.services-section.build-wrapsfo h2.section-title {
    width: 100%;
}

.form-header.moreheader h2 {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.form-header.moreheader h2 br {
    display: none;
}

.cashapp-wrap {
    display: flex;
    gap: 20px;
}

.cashapp-wrap button.btn-submit:first-of-type {
    background: #dddddd75;
    color: #222;
    text-transform: capitalize;
    border: 2px solid #ddd;
}

.cashapp-wrap button.btn-submit:last-of-type {
    background: #ffc439;
}

.totelpay h6 {
    display: flex;
    gap: 5px;
    font-size: 20px;
    margin-bottom: 0;
}

.totelpay h6 span {
    font-weight: 700;
}

.form-content p {
    margin-bottom: 6px;
}

.otherpayment-section {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0px 10px 0px;
}

.card-img {
    width: 50px;
    height: auto;
    cursor: pointer;
}

.card-img img {
    height: 100%;
    width: 100%;
}

.btn-submit img {
    max-width: 65px;
}

.popup-content .form-row {
    justify-content: space-between;
    display: flex;
    gap: 15px;
    margin: 12px 0px;
}

.popup-content .form-row .form-group.half {
    width: 100%;
}

.popup-overlay .popup-content.newdesogn {
    padding: 35px;
}

.popup-overlay .popup-content.newdesogn .popup-body {
    margin-bottom: 12px;
}

.popup-overlay .popup-content.newdesogn > span {
    font-size: 14px;
    display: block;
    line-height: 22px;
    margin-bottom: 24px;
}

.popup-overlay .popup-content.newdesogn h2.popup-subtitle {
    margin: -35px -35px 0px -35px;
    background: #f3f3f3;
    padding: 16px 35px;
    text-align: left;
}

.popup-container.newonepop p {
    text-align: left;
    color: #222;
    font-weight: 500;
}

.popup-container.newonepop button#closePopup {
    height: 34px;
    width: 34px;
    top: 10px;
}

.popup-content.newdesogn .otherpayment-section {
    padding-top: 15px;
}

.popup-content.newdesogn .otherpayment-section .card-img {
    width: 46px;
}

.popup-content.newdesogn .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 49px;
    user-select: none;
    -webkit-user-select: none;
    margin: 0 !important;
    text-align: left;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
}

.popup-content.newdesogn
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #444;
    line-height: 44px;
    padding-left: 15px;
}

.popup-content.newdesogn
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
}

.totelpay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
}

.totelpay p {
    margin: 0;
}

.custom-check-wrap {
    padding: 12px 15px;
    background: #eaf3ff;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #2563eb;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.custom-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 4.5px;
    top: 0.5px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox p {
    margin: 0;
    font-size: 14px;
    color: #1f2937;
    line-height: 1.5;
}

.custom-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}

button.btn-submit.carrers {
    max-width: 180px;
}

/* .form-header.moreheader {
    background: #ffff;
    text-align: left;
} */

.enroll-wrapper {
    /* max-width: 1100px; */
    /* margin: 0 auto; */
    /* padding: 24px 16px; */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
}

.accordion {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;

    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 18px 22px;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.accordion-header:hover {
    background: #f9fafb;
}

.accordion-title h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.accordion-title p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 1.1rem;
    line-height: 1;
    color: #4b5563;
    flex-shrink: 0;
}

.accordion-body {
    padding: 0 22px 0px 18px;
    border-top: 1px solid #e5e7eb;
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.25s ease, opacity 0.25s ease,
        padding-top 0.25s ease, padding-bottom 0.25s ease;
}

.accordion-body.collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-color: transparent;
    overflow: hidden;
}

.table-wrapper {
    margin-top: 16px;
    overflow-x: auto;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 700px;
}

.program-table thead th {
    text-align: left;
    padding: 10px 8px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.program-table tbody td {
    padding: 9px 8px;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.program-table tbody tr:last-child td {
    border-bottom: none;
}

.program-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.program-table tbody tr:hover {
    background: #eef2ff;
}

.program-table .program {
    font-weight: 500;
    color: #111827;
}

.program-table .fee {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.accordion-title {
    text-align: justify;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 14px 16px;
    }

    .accordion-body {
        padding: 0 16px 14px;
    }
}

.section-header.developedhead {
    justify-content: left;
    background: #1c76400d;
    padding: 16px 20px;
    margin: 0px -24px 24px -24px;
    font-weight: 500;
    gap: 6px;
}

/* Modal backdrop & container */
.fin-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.fin-modal-backdrop.fin-show {
    display: flex;
}

.fin-modal-box {
    width: 320px;
    max-width: 94%;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.fin-modal-image {
    width: 50px;
    height: 60px;
    object-fit: contain;
    margin: 2px auto 10px;
    display: block;
}

.fin-modal-title {
    font-size: 18px;
    font-weight: 700;
    margin: 6px 0;
    color: #0b1220;
}

.fin-modal-sub {
    color: #5b6b77;
    font-size: 14px;
    margin-bottom: 10px;
}

.fin-modal-row-info {
    font-size: 13px;
    color: #6b7785;
    margin-bottom: 16px;
}

.fin-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.fin-modal-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    width: 50%;
}

.fin-modal-btn.cancel {
    background: transparent;
    border: 1px solid #e6e9ee;
    color: #253244;
}

.fin-modal-btn.confirm {
    background: linear-gradient(58.28deg, #7fd288 -14.11%, #3db88b 80.9%);
    color: #fff;
}

span.select2-selection.select2-selection--single {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    height: 49px;
}

span.select2-selection__arrow {
    top: 10px !important;
    right: 10px !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding: 0;
    line-height: 20px !important;
}

button.verify-btn {
    white-space: nowrap;
    height: 47px;
    border-radius: 8px;
}

.accordion {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    overflow: hidden;
}

.accordion-title {
    text-align: justify;
}

.accordion-title h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.accordion-title p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion.closed .accordion-body {
    max-height: 0;
}

.accordion.closed .accordion-icon {
    transform: rotate(180deg);
}

/* Modern Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay .popup-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(-30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.popup-overlay .popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #023251;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-overlay .popup-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: #023251;
}

.popup-overlay .popup-close:active {
    transform: rotate(90deg) scale(0.95);
}

.popup-overlay .popup-content {
    padding: 50px 40px 40px;
    text-align: center;
}

.popup-overlay .popup-logo-wrapper {
    margin-bottom: 24px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.popup-overlay .popup-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.popup-overlay .popup-logo-wrapper:hover .popup-logo {
    transform: scale(1.05);
}

.popup-overlay .popup-title {
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.2;
    animation: slideInDown 0.6s ease 0.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-overlay .popup-subtitle {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 30px 0;
    animation: slideInDown 0.6s ease 0.3s both;
}

.popup-overlay .popup-body {
    margin: 24px 0 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-overlay .popup-text {
    font-size: 1.05em;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

.popup-overlay .popup-text strong {
    color: #1a252f;
    font-weight: 700;
}

.popup-overlay .popup-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.popup-overlay .popup-link:hover {
    color: #1976d2;
}

.popup-overlay .popup-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2196f3;
    transition: width 0.3s ease;
}

.popup-overlay .popup-link:hover::after {
    width: 100%;
}

.popup-overlay .popup-cta {
    background: #023251;
    color: white;
    border: none;
    padding: 14px 45px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    animation: fadeInUp 0.6s ease 0.5s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-overlay .popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(76, 175, 80, 0.4);
}

.popup-overlay .popup-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

/* Scrollbar Styling */
.popup-overlay .popup-container::-webkit-scrollbar {
    width: 8px;
}

.popup-overlay .popup-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.popup-overlay .popup-container::-webkit-scrollbar-thumb {
    background: #4caf50;
    border-radius: 10px;
}

.popup-overlay .popup-container::-webkit-scrollbar-thumb:hover {
    background: #023251;
}

/* div#pricingModal {
    max-width: 500px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 24px;
    height: auto;
    border-radius: 16px;
} */

/* ================================
   BOOTSTRAP MODAL CORE CSS
================================ */

/* Backdrop */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

/* Modal Container */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal.show {
    display: block;
}

/* Fade Animation */

.modal.fade .modal-dialog {
    transform: translateY(-50px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/* Dialog */

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    pointer-events: none;
    max-width: 500px;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

/* Content Box */

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    outline: 0;
}

/* Header */

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
}

/* Body */

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

/* Footer */

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Close Button */

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em;
    border: 0;
    border-radius: 0.375rem;
    background: transparent;
    opacity: 0.5;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 0.75;
}

.modal-header.pricing-text button.btn-close {
    font-size: 20px;
    color: #000 !important;
    opacity: 1;
}

:root {
    --primary: #164d70;
    --primary-light: #1a5a82;
    --success: #34a853;
    --success-light: #e8f5e9;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --modal-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--gray-50);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(22, 77, 112, 0.15);
}

.start-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.info-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.card-header-custom {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--gray-50);
}

.card-title-custom {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.card-body-custom {
    padding: 1.25rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    color: var(--text-primary);
}

.class-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.class-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.class-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.class-meta {
    font-size: 12px;
    color: var(--text-secondary);
}

.payment-options {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.select-all-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.installment-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.installment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s;
}

.installment-item:hover {
    border-color: var(--primary);
}

.installment-item.selected {
    border-color: var(--primary);
    background: rgba(22, 77, 112, 0.02);
}

.installment-item.paid {
    background: var(--success-light);
    border-color: var(--success);
}

.installment-check {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s;
}

.installment-check:checked {
    background: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.installment-info {
    flex: 1;
}

.installment-name {
    font-size: 14px;
    font-weight: 400;
}

.installment-date {
    font-size: 12px;
    color: var(--text-muted);
}

.installment-amount {
    font-size: 15px;
    font-weight: 500;
}

.status-badge {
    font-size: 11px;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
}

.status-complete {
    background: var(--success-light);
    color: var(--success);
}

.status-pending {
    background: var(--warning-light);
    color: var(--warning);
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    height: 45px;
}

.btn-primary-custom:hover {
    background: var(--primary);
    color: #fff;
}

.btn-primary-custom:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

.btn-outline-custom {
    background: #fff;
    color: #009688;
    border: 1px solid #3db88b;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    height: 45px;
}

.btn-outline-custom:hover {
    background: #3db88b;
    color: #fff;
}

.btn-success-custom {
    background: var(--success) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    height: 45px;
}

.success-icon iconify-icon {
    font-size: 46px;
    color: #fff;
}

.btn-primary-custom iconify-icon {
    font-size: 18px;
}

.btn-success-custom:hover {
    background: #2d9249 !important;
}

.modal-footer-custom {
    padding: 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

#enrollmentModal .modal-footer-custom {
    padding: 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    position: absolute;
    bottom: 0;
    background: #fff;
    left: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: var(--modal-shadow);
    width: 100%;
}

.modal-header-custom {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title-custom {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

.modal-body-custom {
    padding: 1.25rem;
}

.btn-close-custom {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.8;
    transition: color 0.2s;
}

.btn-close-custom:hover {
    color: var(--text-primary);
    opacity: 1;
}

.modal-scrollbar {
    max-height: 62vh;
    overflow-y: auto;
    padding-right: 8px;
}

.modal-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.modal-scrollbar::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 3px;
}

.enrollment-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-100);
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

.enrollment-note strong {
    color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-state iconify-icon {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.empty-state h5 {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.selected-installments {
    margin-bottom: 1.5rem;
}

.section-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
}

.selected-item:last-child {
    border-bottom: none;
}

.selected-item-info h5 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.selected-item-amount {
    font-size: 14px;
    font-weight: 500;
}

.payment-summary {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 13px;
}

.summary-row.total {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 500;
}

.summary-row.total .amount {
    color: var(--primary);
    font-size: 15px;
}

.payment-method-section {
    margin-bottom: 1.5rem;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.payment-method-section .payment-method-card .card-icon {
    width: 40px;
    height: 28px;
    background: linear-gradient(135deg, #1a1f71 0%, #00579f 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.card-details {
    flex: 1;
}

.card-type {
    font-size: 13px;
    font-weight: 400;
}

.card-number {
    font-size: 12px;
    color: var(--text-muted);
}

.change-link {
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.change-link iconify-icon {
    font-size: 16px;
}

.change-link:hover {
    text-decoration: underline;
}

.new-card-form {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.new-card-form.show {
    display: block;
}

.form-label-custom {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

.form-control-custom {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.625rem 0.875rem;
    font-size: 13px;
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 77, 112, 0.1);
    outline: none;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.terms-check label {
    font-size: 12px;
    color: var(--text-secondary);
}

.terms-check a {
    color: var(--primary);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 32px;
    color: #fff;
}

.success-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-details {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid #dedede;
}

.success-amount-value {
    font-size: 24px;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 1rem;
}

.success-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 13px;
}

.installments-covered .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.installment-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.installment-tag {
    font-size: 11px;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    border: 1px solid var(--success);
    color: var(--success);
    background: var(--success-light);
}

.receipt-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 12px;
    color: var(--text-muted);
}

.receipt-note iconify-icon {
    color: var(--success);
}

.installment-item iconify-icon {
    font-size: 18px;
    color: var(--success);
}

.info-card.paymentCard {
    margin-bottom: 65px;
}

.portal-close {
    position: absolute;
    right: 12px;
    top: 10px;
}

.class-icon iconify-icon {
    font-size: 24px;
}

.enroll-form .fee-information-box {
    width: calc(100% - 920px);
    background: #fff;
    height: max-content;
    padding: 20px;
    border-radius: 12px;
    position: sticky;
    top: 24px;
}

.enroll-form .fee-information-box h4 {
    font-size: 18px;
    display: flex;
    gap: 8px;
}

.enroll-form .fee-information-box h4 iconify-icon {
    font-size: 24px;
    position: relative;
    top: -4px;
}

.enroll-form .fee-information-box ul {
    list-style-type: none;
    padding: 0;
}

.enroll-form .fee-information-box ul li {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 8px;
}

.minimal-Start {
    display: flex;
    align-items: center;
    gap: 10px;
}

.minimal-Start button.start-btn {
    padding: 0.75rem 1rem;
    width: 100%;
    background: #1c7640;
}

.minimal-Start button.btn.btn-primary.seeproce {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    height: 45px;
    width: 100%;
}

.new-new-dws li a {
    padding: 12px 15px !important;
    font-weight: 400 !important;
    border-radius: 6px !important;
}

.new-new-dws li a span b {
    font-weight: 500 !important;
}

.section-header.developed-header.allprograms h2.section-title {
    width: 55%;
    margin: auto;
}

.section-header.developed-header.allprograms p.section-description {
    max-width: 60%;
    margin: auto;
}

.program-content {
    padding-top: 35px;
}

.program-content h4 {
    font-size: 24px;
}

.program-content .section-header.developed-header .section-description {
    text-align: left;
    max-width: 100%;
    padding-top: 0;
}

.program-content .section-header.developed-header {
    margin-bottom: 10px;
}

.program-content ul {
    padding: 0;
    margin: 0;
}

.gce-load .cta-container .EnrollNowBtn {
    min-width: 190px;
}
.gce-load .cta-container .EnrollNowBtn svg {
    max-width: 28px;
}
.inn-btns-g {
    display: flex;
    gap: 15px;
    align-items: center;
}

.inn-btns-g a {
    height: 42px;
}

.inn-btns-g a.EnrollNowBtn {
    background: #1c7640;
    color: #ffffff;
    border: 1px solid #1c7640;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 8px;
}

.program-content ul li {
    list-style-type: none;
    padding-top: 12px;
    font-size: 15px;
    display: flex;
    gap: 8px;
    color: #64748b;
}

.program-content ul li iconify-icon {
    font-size: 18px;
}

.section-header.why-chose {
    display: block;
    margin: 0;
}

.section-header.why-chose p.section-description {
    text-align: left;
    max-width: 100%;
    padding-top: 10px;
}

.why-chose-img {
    height: 350px;
    width: calc(100% - 55px);
    margin-left: 55px;
}

.why-chose-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.privacy-policy h3 {
    font-size: 20px;
    padding-top: 24px;
    margin-bottom: 5px;
}

.section-header.developed-header .privacy-policy p.section-description {
    padding: 0;
    max-width: 100%;
    text-align: left;
}

.privacy-policy ul li {
    color: #64748b;
    line-height: 30px;
}

.privacy-policy ul {
    padding-top: 12px;
}

.section-header.developed-header.term-wrapss span {
    margin-left: 0;
}

.section-header.developed-header.term-wrapss h2.section-title {
    text-align: left;
}

.section-header.developed-header.term-wrapss p.section-description {
    max-width: 100%;
    text-align: left;
}

/* Overlay */
.gce-load .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gce-load .popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.gce-load .popup {
    background: #ffffff;
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    padding: 10px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gce-load .popup-overlay.active .popup {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.right-data {
    padding: 20px;
    width: 54%;
}

.left-data {
    width: 46%;
    height: 465px;
}

.left-data img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Close Button */
.gce-load .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #6b7280;
    z-index: 999;
}

.gce-load .close-btn svg {
    width: 20px;
    height: 20px;
}

/* Logo Section */
.gce-load .logo-container {
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.gce-load .logo {
    width: 95px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(15, 76, 58, 0.15));
}

/* Main Heading */
.gce-load .main-heading {
    margin-bottom: 8px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.gce-load .main-heading h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.accordion.closed .accordion-body {
    padding-top: 0;
    padding-bottom: 0;
}

/* Date Badge */
.gce-load .date-badge {
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.gce-load .date-badge span {
    display: inline-block;
    background: linear-gradient(90deg, #c2810d, #c9a227, #c9a227);
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Description */
.gce-load .description {
    margin-bottom: 22px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.gce-load .description p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.gce-load .description strong {
    color: #0f4c3a;
    font-weight: 600;
}

/* Contact Links */
.gce-load .contact-info {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.gce-load .contact-link {
    color: #0f4c3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gce-load .contact-link:hover {
    background: rgba(15, 76, 58, 0.08);
    color: #0d3d2e;
}

.gce-load .contact-link svg {
    width: 16px;
    height: 16px;
}

/* CTA Button */
.gce-load .cta-container {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.cta-container button.EnrollNowBtn {
    width: 190px;
    height: 46px;
}

.cta-container button.EnrollNowBtn svg {
    max-width: 28px;
}

/* Gold accent decoration */
.gce-load .gold-accent {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Responsive */
@media (max-width: 520px) {
    .gce-load .popup {
        padding: 40px 24px;
        margin: 16px;
        border-radius: 20px;
    }

    .gce-load .main-heading h1 {
        font-size: 26px;
    }

    .gce-load .description p {
        font-size: 14px;
    }

    .gce-load .cta-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .gce-load .contact-info {
        gap: 4px;
    }

    .gce-load .contact-link {
        font-size: 14px;
    }
}

/* Subtle background pattern */
.gce-load .popup::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 20% 80%,
            rgba(15, 76, 58, 0.02) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 162, 39, 0.02) 0%,
            transparent 50%
        );
    pointer-events: none;
    border-radius: 24px;
}

.seeproce {
    margin: auto;
    height: 44px;
    border-radius: 8px;
}
.services-slider {
    overflow: hidden;
}

.service-card {
    height: 100%;
}

.services-section.respon-padds {
    padding: 0;
}

/* Responsive */

@media (max-width: 1080px) {
    #blog_posts {
        overflow: visible !important;
    }
    .edu-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .left-data {
        display: block;
    }

    .right-data {
        width: 54%;
        padding: 0;
    }
    .cta-container button.EnrollNowBtn {
        width: 180px;
        height: 42px;
    }

    .gce-load .contact-info {
        flex-direction: column;
        gap: 0px;
    }
    .gce-load .main-heading h1 {
        font-size: 20px;
    }
    .gce-load .logo-container {
        margin-bottom: 18px;
    }
    .gce-load .popup {
        max-width: 710px;
    }

    .uc-logo .panel {
        width: 70px;
    }

    .EnrollNowBtn,
    .studentPortalBtn {
        padding: 6px 10px;
        font-size: 12px;
        height: 34px;
    }

    .uc-navbar-right {
        gap: 10px !important;
    }

    .lh-left-content {
        padding: 0px;
        margin: 0;
    }

    .lh-buttons-container {
        flex-direction: row;
    }

    .lh-btn-secondary {
        padding: 10px 32px;
        font-size: 14px;
    }

    .lh-buttons-container a {
        height: 43px;
        padding: 10px 20px;
    }

    .lh-slider-container-1 {
        right: 0;
    }

    .lh-slider-container-2 {
        display: none;
    }

    .lh-floating-badge {
        width: 100%;
    }

    .lh-badge-text br {
        display: none;
    }

    .lh-badge-text {
        position: relative;
        top: 3px;
    }

    span.lh-badge-icon img {
        top: 30px;
        left: 134px;
    }
    .lh-stats-container {
        flex-wrap: nowrap;
        width: 100%;
    }

    .lh-stat-item {
        width: calc(50% - 10px);
    }

    .lh-scroll-down {
        width: calc(50% - 10px);
    }

    .lh-scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .lh-scroll-circle {
        width: 34px;
        height: 34px;
    }

    .lh-scroll-down {
        width: calc(50% - 10px);
    }

    .sectionTitle {
        font-size: 28px !important;
        line-height: 38px !important;
    }

    .CourseItems .content {
        height: auto;
    }

    .uc-link {
        margin-bottom: 10px;
        border-bottom: none !important;
    }

    .brands.hstack {
        flex-wrap: wrap;
        gap: 8px;
    }

    .brands.hstack span {
        font-size: 15px;
        padding: 4px 12px;
    }

    .services-section .section-header {
        margin-left: 0;
        margin-right: 0;
    }

    .services-section .section-title {
        font-size: 28px;
    }

    .services-section .section-title span {
        display: inline;
    }

    .services-section {
        padding: 40px 0;
    }

    .RightSection {
        width: 100%;
    }

    .MainSection {
        gap: 0;
        padding: 0 0px;
        flex-direction: column-reverse;
    }

    .SeCtitle {
        font-size: 28px;
        line-height: 1.4;
        margin-top: 15px;
    }

    .MainSection .rightImg {
        display: none;
    }

    .innerContent {
        width: 100%;
        padding-bottom: 24px;
    }

    .LeftSection {
        width: 100%;
    }

    div#map_holder {
        margin: auto;
    }

    .map-responsive {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    div#my-whole-map {
        min-height: auto;
        padding: 40px 0px;
        justify-content: center;
    }

    .feature-item {
        padding: 20px;
    }

    #map {
        min-height: auto;
    }

    .blog-posts a.swiper-nav svg {
        height: 28px !important;
        width: 20px !important;
        display: block;
    }

    .blog-posts a.swiper-nav {
        padding: 10px;
    }

    .OurAppkSection {
        padding: 40px 0;
    }

    .howitTitle h2 {
        font-size: 28px !important;
    }

    .app a img {
        width: 120px;
        height: 40px;
    }

    .app {
        padding-top: 12px;
    }

    .footer-Widgets {
        padding-top: 28px;
    }

    .uc-footer {
        padding-top: 20px;
    }

    .green-creek-slider-container {
        padding: 0;
    }

    .uc-footer-bottom {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 18px !important;
    }

    section.AboutUs {
        padding: 40px 0;
    }

    .uc-logo a img {
        max-width: 75px;
    }

    .nav-y .uc-parent > a::after {
        display: none;
    }

    .nav-y .uc-parent a {
        display: flex;
        justify-content: space-between;
    }

    div#uc-menu-panel ul.social-icons li a {
        font-size: 20px;
    }

    div#uc-menu-panel ul.social-icons li {
        gap: 24px;
    }

    .hstack {
        justify-content: center !important;
    }

    .inner-banner p {
        max-width: 100%;
        line-height: 24px;
    }

    .inner-banner h1 {
        font-size: 28px;
    }

    .inner-banner {
        padding: 40px 0px;
    }

    .blog-card-list .swiper-slide {
        width: calc(50% - 20px);
    }

    .blog-pagination ul {
        gap: 10px;
    }

    .blog-pagination ul li a {
        height: 34px;
        width: 34px;
        font-size: 14px;
    }

    .blog-details {
        display: block;
    }

    .blog-details-left {
        width: 100%;
    }

    .blog-details-right {
        width: 100%;
        padding-left: 0;
        margin-top: 28px;
    }

    .recent-blog-box article.post header.panel h5 {
        font-size: 16px !important;
        font-weight: 500;
        line-height: 22px !important;
    }

    .blog-details-right .hstack {
        justify-content: flex-start !important;
    }

    .recent-blog-box article.post figure.featured-image {
        height: 82px;
        width: 82px;
        min-width: 82px;
    }

    .inner-banner ul {
        max-width: 100%;
    }

    .blog-card-list .hstack {
        justify-content: flex-start !important;
    }

    textarea.form-control {
        min-height: 120px !important;
    }

    .fw-medium.havebe {
        background: #00000061;
        font-size: 15px !important;
        padding: 10px 20px;
        border-radius: 10px;
    }

    .card-size-fix {
        width: 100%;
    }

    .enroll-form {
        display: block;
    }

    .services-section .container {
        padding: 0 15px;
    }

    .enroll-form .fee-information-box {
        width: 100%;
        padding: 18px;
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .section-header.developed-header .section-description {
        max-width: 100%;
    }

    .section-header.developed-header .section-description br {
        display: none;
    }

    .form-content {
        padding: 20px 8px;
    }

    .form-header {
        padding: 15px 10px;
    }

    .facility-text-wrsap {
        display: block;
    }

    .facility-text-wrsap .facility-text {
        width: 100%;
    }

    .facility-b-image {
        display: block;
    }

    .facility-left-sec {
        width: 100%;
    }

    .acility-left-sec-box-wrap {
        flex-wrap: wrap;
    }

    .acility-left-box-one {
        width: 100%;
        height: 200px;
    }

    .acility-left-box-two {
        width: 100%;
    }

    .facility-right-sec {
        display: none;
    }

    .section-header.developed-header.allprograms h2.section-title {
        width: 100%;
    }

    .section-header.developed-header.allprograms p.section-description {
        max-width: 100%;
    }

    .tc-img-small {
        display: none;
    }

    .tc-img-main {
        width: 100%;
        border-radius: 12px;
    }

    .tc-left {
        height: auto;
        padding-bottom: 30px;
    }

    .why-chose-img {
        height: auto;
        width: 100%;
        margin: 20px 0px 0px 0px;
    }

    .lh-right-content {
        margin-top: 10px;
    }

    .lh-rated-badge {
        align-items: baseline;
    }
    .lh-floating-badge {
        gap: 30px;
    }
    .lh-slider-container-1 {
        width: 100%;
    }
    .bologSlider .hstack {
        justify-content: flex-start !important;
    }
}

@media (max-width: 767px) {
    .lh-stats-container {
        flex-wrap: wrap;
    }
    .left-data {
        display: none;
    }

    .right-data {
        width: 100%;
        padding: 0;
    }

    .gce-load .contact-info {
        flex-direction: column;
    }

    .uc-logo .panel {
        width: 70px;
    }

    .EnrollNowBtn,
    .studentPortalBtn {
        padding: 6px 10px;
        font-size: 12px;
        height: 34px;
    }

    .uc-navbar-right {
        gap: 10px !important;
    }

    .lh-left-content {
        padding: 0px;
        margin: 0;
    }

    .lh-buttons-container {
        flex-direction: row;
    }

    .lh-btn-secondary {
        padding: 10px 32px;
        font-size: 14px;
    }

    .lh-buttons-container a {
        height: 43px;
        padding: 10px 20px;
    }

    .lh-slider-container-1 {
        right: 0;
    }

    .lh-slider-container-2 {
        display: none;
    }

    .lh-floating-badge {
        width: 100%;
    }

    .lh-badge-text br {
        display: none;
    }

    .lh-badge-text {
        position: relative;
        top: 3px;
    }

    span.lh-badge-icon img {
        top: 30px;
    }

    .lh-stat-item {
        width: calc(50% - 10px);
    }

    .lh-scroll-down {
        width: calc(50% - 10px);
    }

    .lh-scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .lh-scroll-circle {
        width: 34px;
        height: 34px;
    }

    .lh-scroll-down {
        width: calc(50% - 10px);
    }

    .sectionTitle {
        font-size: 28px !important;
        line-height: 38px !important;
    }

    .CourseItems .content {
        height: auto;
    }

    .uc-link {
        margin-bottom: 10px;
        border-bottom: none !important;
    }

    .brands.hstack {
        flex-wrap: wrap;
        gap: 8px;
    }

    .brands.hstack span {
        font-size: 15px;
        padding: 4px 12px;
    }

    .services-section .section-header {
        margin-left: 0;
        margin-right: 0;
    }

    .services-section .section-title {
        font-size: 28px;
    }

    .services-section .section-title span {
        display: inline;
    }

    .services-section {
        padding: 40px 0;
    }

    .RightSection {
        width: 100%;
    }

    .MainSection {
        gap: 0;
        padding: 0 0px;
        flex-direction: column-reverse;
    }

    .SeCtitle {
        font-size: 28px;
        line-height: 1.4;
        margin-top: 15px;
    }

    .MainSection .rightImg {
        display: none;
    }

    .innerContent {
        width: 100%;
        padding-bottom: 24px;
    }

    .LeftSection {
        width: 100%;
    }

    div#map_holder {
        margin: auto;
    }

    .map-responsive {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    div#my-whole-map {
        min-height: auto;
        padding: 40px 0px;
        justify-content: center;
    }

    .feature-item {
        padding: 20px;
    }

    #map {
        min-height: auto;
    }

    .blog-posts a.swiper-nav svg {
        height: 28px !important;
        width: 20px !important;
        display: block;
    }

    .blog-posts a.swiper-nav {
        padding: 10px;
    }

    .OurAppkSection {
        padding: 40px 0;
    }

    .howitTitle h2 {
        font-size: 28px !important;
    }

    .app a img {
        width: 120px;
        height: 40px;
    }

    .app {
        padding-top: 12px;
    }

    .footer-Widgets {
        padding-top: 28px;
    }

    .uc-footer {
        padding-top: 20px;
    }

    .green-creek-slider-container {
        padding: 0;
        margin-bottom: 10px;
    }

    .uc-footer-bottom {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 18px !important;
    }

    section.AboutUs {
        padding: 40px 0;
    }

    .uc-logo a img {
        max-width: 75px;
    }

    .nav-y .uc-parent > a::after {
        display: none;
    }

    .nav-y .uc-parent a {
        display: flex;
        justify-content: space-between;
    }

    div#uc-menu-panel ul.social-icons li a {
        font-size: 20px;
    }

    div#uc-menu-panel ul.social-icons li {
        gap: 24px;
    }

    .hstack {
        justify-content: center !important;
    }

    .inner-banner p {
        max-width: 100%;
        line-height: 24px;
    }

    .inner-banner h1 {
        font-size: 28px;
    }

    .inner-banner {
        padding: 40px 0px;
    }

    .blog-card-list .swiper-slide {
        width: 100%;
    }

    .blog-pagination ul {
        gap: 10px;
    }

    .blog-pagination ul li a {
        height: 34px;
        width: 34px;
        font-size: 14px;
    }

    .blog-details {
        display: block;
    }

    .blog-details-left {
        width: 100%;
    }

    .blog-details-right {
        width: 100%;
        padding-left: 0;
        margin-top: 28px;
    }

    .recent-blog-box article.post header.panel h5 {
        font-size: 16px !important;
        font-weight: 500;
        line-height: 22px !important;
    }

    .blog-details-right .hstack {
        justify-content: flex-start !important;
    }

    .recent-blog-box article.post figure.featured-image {
        height: 82px;
        width: 82px;
        min-width: 82px;
    }

    .inner-banner ul {
        max-width: 100%;
    }

    .blog-card-list .hstack {
        justify-content: flex-start !important;
    }

    textarea.form-control {
        min-height: 120px !important;
    }

    .fw-medium.havebe {
        background: #00000061;
        font-size: 15px !important;
        padding: 10px 20px;
        border-radius: 10px;
    }

    .card-size-fix {
        width: 100%;
    }

    .enroll-form {
        display: block;
    }

    .services-section .container {
        padding: 0 15px;
    }

    .enroll-form .fee-information-box {
        width: 100%;
        padding: 18px;
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .section-header.developed-header .section-description {
        max-width: 100%;
    }

    .section-header.developed-header .section-description br {
        display: none;
    }

    .form-content {
        padding: 20px 8px;
    }

    .form-header {
        padding: 15px 10px;
    }

    .facility-text-wrsap {
        display: block;
    }

    .facility-text-wrsap .facility-text {
        width: 100%;
    }

    .facility-b-image {
        display: block;
    }

    .facility-left-sec {
        width: 100%;
    }

    .acility-left-sec-box-wrap {
        flex-wrap: wrap;
    }

    .acility-left-box-one {
        width: 100%;
        height: 200px;
    }

    .acility-left-box-two {
        width: 100%;
    }

    .facility-right-sec {
        display: none;
    }

    .section-header.developed-header.allprograms h2.section-title {
        width: 100%;
    }

    .section-header.developed-header.allprograms p.section-description {
        max-width: 100%;
    }

    .tc-img-small {
        display: none;
    }

    .tc-img-main {
        width: 100%;
        border-radius: 12px;
    }

    .tc-left {
        height: auto;
        padding-bottom: 30px;
    }

    .why-chose-img {
        height: auto;
        width: 100%;
        margin: 20px 0px 0px 0px;
    }

    .lh-right-content {
        margin-top: 10px;
    }

    .lh-rated-badge {
        align-items: baseline;
    }
    .services-section.respon-padds {
        padding: 0;
    }
    .section-header.whatwedo {
        margin-bottom: 30px;
    }
    .modal-dialog {
        max-width: 94%;
    }
    button.verify-btn span {
        display: none;
    }
    .alert-info {
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .edu-card-grid {
        grid-template-columns: 1fr;
    }

    .cna-checkbox-text {
        font-size: 14px;
    }

    .mf-scope .mf-row {
        flex-direction: column;
    }
}
