﻿:root {
    --primary: #ff6a00;
    --primary-dark: #e65100;

    --secondary: #2e7d32;
    --secondary-light: #66bb6a;

    --accent: #ff3d00;

    --bg-light: #f8fafc;
    --bg-soft: #eef2f7;

    --text-dark: #222;
    --text-light: #555;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1,h2,h3,h4 {
    font-family: 'Poppins', sans-serif;
}
/* ================= GLOBAL CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* GLOBAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOP BAR PREMIUM ================= */
.top-bar {
    background: linear-gradient(90deg,#f8fafc,#eef2f7);
    font-size: 13px;
    border-bottom: 1px solid #e5e7eb;
}

/* FLEX */
.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

/* LEFT */
.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #444;
    font-weight: 500;
}

/* RIGHT */
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* TEXT */
.top-right span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    transition: 0.3s;
}

.top-right span:hover {
    color: #ff6a00;
}

/* DIVIDER LINE */
.divider {
    width: 1px;
    height: 14px;
    background: #ccc;
}

/* ICON STYLE */
.top-right i,
.top-left i {
    color: #ff6a00;
    font-size: 12px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 8px;
    margin-left: 5px;
}

/* SOCIAL ICON BOX */
.social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* HOVER */
.social-icons a:hover {
    background: #ff6a00;
    color: #fff;
    transform: translateY(-3px);
}

/* =========================================================
   TOP BAR - TABLET
========================================================= */

@media (max-width: 992px) {

    .top-flex {
        padding: 7px 0;
    }

    .top-right {
        gap: 12px;
    }

}


/* =========================================================
   TOP BAR - MOBILE
========================================================= */

@media (max-width: 768px) {

    .top-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 6px;

        text-align: center;
    }

    .top-left {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .top-left span {
        justify-content: center;
        font-size: 12px;
    }

    .top-right {
        width: 100%;

        display: flex;

        flex-wrap: wrap;

        justify-content: center;
        align-items: center;

        gap: 8px 12px;
    }

    .top-right span {
        font-size: 11.5px;
    }

    /* Hide divider on mobile */
    .divider {
        display: none;
    }

    .social-icons {
        margin-left: 0;

        display: flex;

        gap: 6px;
    }

    .social-icons a {
        width: 26px;
        height: 26px;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .top-bar {
        font-size: 11px;
    }

    .top-flex {
        width: 94%;

        padding: 6px 0;

        gap: 5px;
    }

    .top-left span {
        font-size: 11px;
    }

    .top-right {
        gap: 6px 10px;
    }

    .top-right span {
        font-size: 10.5px;
    }

    .social-icons {
        gap: 5px;
    }

    .social-icons a {
        width: 24px;
        height: 24px;

        font-size: 10px;

        border-radius: 5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .top-left span {
        font-size: 10px;
    }

    .top-right span {
        font-size: 10px;
    }

    .social-icons a {
        width: 22px;
        height: 22px;

        font-size: 9px;
    }

}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* LOGO */
.logo img {
    height: 89px;
}

/* MENU */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* ICON COLOR */
.menu li a i {
    color: var(--primary);
}

/* UNDERLINE */
.menu li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ff6a00;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 100%;
}

.menu li a.active {
    color: #ff6a00;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BUTTON */
.btn-outline {
    padding: 8px 18px;
    border: 1px solid #ff6a00;
    border-radius: 25px;
   border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
  background: var(--primary);
  color:white;
}

/* ================= WAVE ================= */
.header {
    position: relative;
    background: #fff;
    
}

.header-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;


}

.header-wave path {
    animation: waveMove 5s ease-in-out infinite alternate;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40px); }
}

/* ================= MOBILE ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #333;
}

/* =========================================================
   RESPONSIVE NAVBAR
========================================================= */

@media (max-width: 992px) {

    /* ================= NAVIGATION ================= */

    .nav {
        position: fixed;

        top: 0;
        right: -100%;

        width: 280px;
        height: 100vh;

        background: rgba(255,255,255,0.98);

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

        display: flex;
        flex-direction: column;

        justify-content: flex-start;
        align-items: flex-start;

        padding: 100px 25px 30px;

        box-shadow:
            -10px 0 35px rgba(0,0,0,0.12);

        transition:
            right 0.4s ease;

        z-index: 10000;
    }


    /* OPEN MENU */

    .nav.active {
        right: 0;
    }


    /* ================= MENU ================= */

    .menu {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

        margin: 0;
        padding: 0;

        list-style: none;
    }


    .menu li {
        width: 100%;
    }


    .menu li a {
        width: 100%;

        display: flex;
        align-items: center;

        gap: 12px;

        padding: 12px 10px;

        font-size: 14px;

        border-radius: 8px;

        transition:
            background .3s ease,
            color .3s ease;
    }


    /* ICON */

    .menu li a i {
        width: 20px;

        text-align: center;

        color: #ff6a00;
    }


    /* HOVER */

    .menu li a:hover {
        background: #fff5ed;

        color: #ff6a00;
    }


    /* ACTIVE */

    .menu li a.active {
        background: #fff5ed;

        color: #ff6a00;
    }


    /* Remove desktop underline on mobile */

    .menu li a::after {
        display: none;
    }


    /* ================= MOBILE TOGGLE ================= */

    .menu-toggle {
        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 5px;

        width: 42px;
        height: 42px;

        background: #fff;

        border: 1px solid #e5e7eb;

        border-radius: 10px;

        cursor: pointer;

        position: relative;

        z-index: 10001;

        box-shadow:
            0 5px 15px rgba(0,0,0,0.08);
    }


    .menu-toggle span {
        width: 21px;
        height: 2px;

        background: #333;

        border-radius: 5px;

        transition: .3s ease;
    }


    /* ================= NAV RIGHT ================= */

    .nav-right {
        gap: 10px;
    }


    /* ================= LOGO ================= */

    .logo img {
        height: 65px;

        max-width: 180px;

        object-fit: contain;
    }

}

/* =========================================================
   MOBILE MENU - HAMBURGER TO CLOSE
========================================================= */

/* NORMAL HAMBURGER */
.menu-toggle span {
    width: 21px;
    height: 2px;
    background: #333;
    border-radius: 5px;
    transition: all 0.35s ease;
}


/* =========================================================
   ACTIVE / CLOSE STATE
========================================================= */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ORANGE CLOSE ICON */
.menu-toggle.active span {
    background: #ff6a00;
}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .navbar {
        width: 92%;

        padding: 10px 0;
    }


    .logo img {
        height: 58px;
    }


    .nav {
        width: 270px;

        padding:
            90px 20px 30px;
    }


    .btn-outline {
        display: none;
    }


    .menu-toggle {
        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .navbar {
        width: 92%;

        min-height: 65px;
    }


    .logo img {
        height: 52px;

        max-width: 150px;
    }


    .nav {
        width: 82%;
        max-width: 300px;

        padding:
            85px 18px 25px;
    }


    .menu {
        gap: 5px;
    }


    .menu li a {
        padding: 11px 8px;

        font-size: 13px;
    }


    .menu li a i {
        width: 18px;
    }


    .menu-toggle {
        width: 38px;
        height: 38px;

        border-radius: 9px;
    }


    .menu-toggle span {
        width: 19px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .navbar {
        width: 94%;
    }


    .logo img {
        height: 48px;

        max-width: 160px;
    }


    .nav {
        width: 85%;
    }


    .menu li a {
        font-size: 12px;

        padding: 10px 7px;
    }

}


/* =========================================================
   STICKY HEADER
========================================================= */

.header.sticky {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    background:
        rgba(255,255,255,0.96);

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

    box-shadow:
        0 5px 25px rgba(0,0,0,0.08);

    z-index: 9999;
}


/* =========================================================
   STICKY NAV LINKS
========================================================= */

.header.sticky .menu li a {
    color: #333;
}

.header.sticky .menu li a i {
    color: #ff6a00;
}


/* =========================================================
   STICKY BUTTON
========================================================= */

.header.sticky .btn-outline {
    border-color: #ff6a00;

    color: #ff6a00;
}


/* =========================================================
   STICKY MOBILE MENU
========================================================= */

@media (max-width: 992px) {

    .header.sticky .nav {
        background:
            rgba(255,255,255,0.98);
    }

    .header.sticky .menu-toggle {
        background: #fff;

        border-color: #e5e7eb;
    }

}

/*--------------------------------------------benifites------------------------------------*/

/* ================= SECTION ================= */
.benefits-section {
    padding: 67px 0;
    background: #f3f4f9;
}

/* ================= TITLE ================= */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--secondary);
}

/* ================= SWIPER ================= */
.swiper {
    padding: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* ================= CARD ================= */
.benefit-card {
    width: 100%;
    max-width: 220px;
    min-height: 230px;
    border-radius: 18px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color:#666;

}

/* ================= ICON ================= */
.benefit-card .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    transition: 0.4s;
}

/* MULTI COLOR ICONS */
.benefit-card:nth-child(1) .icon {
    background: linear-gradient(135deg,#ff6a00,#ff3d00);
}
.benefit-card:nth-child(2) .icon {
    background: linear-gradient(135deg,#2e7d32,#66bb6a);
}
.benefit-card:nth-child(3) .icon {
    background: linear-gradient(135deg,#1565c0,#42a5f5);
}
.benefit-card:nth-child(4) .icon {
    background: linear-gradient(135deg,#8e24aa,#ce93d8);
}
.benefit-card:nth-child(5) .icon {
    background: linear-gradient(135deg,#00897b,#4db6ac);
}
.benefit-card:nth-child(6) .icon {
    background: linear-gradient(135deg,#f9a825,#fdd835);
}

/* ================= TEXT ================= */
.benefit-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ================= HOVER IMAGE ================= */
.hover-img {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    opacity: 0;
}

.hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= HOVER EFFECT ================= */
.benefit-card:hover .hover-img {
    bottom: 0;
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ACTIVE CENTER */
.swiper-slide-active .benefit-card {
    transform: scale(1.1);
}

/* =========================================================
   LAPTOP - 1200px+
========================================================= */

@media (min-width: 1200px) {

    .benefitsSwiper {
        padding: 40px 20px;
    }

    .benefit-card {
        width: 240px;
        max-width: 240px;
        min-height: 250px;
    }

}


/* =========================================================
   TABLET - 769px to 1199px
========================================================= */

@media (min-width: 769px) and (max-width: 1199px) {

    .benefits-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .benefitsSwiper {
        width: 100%;
        padding: 30px 15px;
    }

    .benefit-card {
        width: 200px;
        max-width: 200px;
        min-height: 220px;
        padding: 18px;
    }

    .benefit-card .icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .benefit-card h4 {
        font-size: 14px;
    }

    .benefit-desc {
        font-size: 12px;

    }

}


/* =========================================================
   MOBILE - 481px to 768px
========================================================= */

@media (min-width: 481px) and (max-width: 768px) {

    .benefits-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 25px;
        margin-bottom: 25px;
    }

    /* Remove large default swiper padding */
    .benefitsSwiper {
        width: 100%;
        padding: 20px 0 35px;
        overflow: hidden;
    }

    /*
       Give Swiper control over the slide width.
       This keeps the card perfectly centered.
    */
    .benefitsSwiper .swiper-slide {
        width: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .benefit-card {
        width: 180px;
        max-width: 180px;
        min-height: 215px;

        padding: 17px 12px;

        margin: 0 auto;

        border-radius: 16px;
    }

    .benefit-card .icon {
        width: 52px;
        height: 52px;

        font-size: 19px;

        margin-bottom: 10px;
    }

    .benefit-card h4 {
        font-size: 14px;
        line-height: 1.4;
    }

    .benefit-desc {
        font-size: 12px;
        line-height: 1.45;

        padding: 0 2px;
    }

    /*
       Don't make active card too large.
    */
    .benefitsSwiper .swiper-slide-active .benefit-card {
        transform: scale(1.02);
    }

}


/* =========================================================
   MOBILE - 0px to 480px
========================================================= */

@media (max-width: 480px) {

    .benefits-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /*
       IMPORTANT
       Remove side padding from swiper.
    */
    .benefitsSwiper {
        width: 100%;
        padding: 15px 0 30px;

        overflow: hidden;
    }

    /*
       One proper centered card.
    */
    .benefitsSwiper .swiper-slide {
        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*
       Don't use max-width:140px.
       It makes your card too narrow.
    */
    .benefit-card {
        width: 180px;
        max-width: 180px;

        min-height: 205px;

        margin: 0 auto;

        padding: 17px 13px;

        border-radius: 16px;
    }

    .benefit-card .icon {
        width: 50px;
        height: 50px;

        font-size: 18px;

        margin-bottom: 10px;
    }

    .benefit-card h4 {
        font-size: 13px;
        line-height: 1.4;

        margin-bottom: 5px;
    }

    .benefit-desc {
        font-size: 11.5px;

        line-height: 1.45;

        padding: 0 3px;
    }

    /*
       Keep active slide almost normal size.
    */
    .benefitsSwiper .swiper-slide-active .benefit-card {
        transform: scale(1);
    }

}


/* =========================================================
   VERY SMALL MOBILE - 360px
========================================================= */

@media (max-width: 360px) {

    .benefits-section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .benefitsSwiper {
        padding-top: 10px;
    }

    .benefit-card {
        width: 170px;
        max-width: 170px;

        min-height: 195px;

        padding: 15px 10px;
    }

    .benefit-card .icon {
        width: 46px;
        height: 46px;

        font-size: 17px;
    }

    .benefit-card h4 {
        font-size: 12.5px;
    }

    .benefit-desc {
        font-size: 11px;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .benefit-card:hover {
        transform: none;
    }

}

/*--------------------------------------------------plans----------------------------------------*/

/* SECTION */
.training-section {
    padding: 0;
    background:#f5f6f6;
    position: relative;
    overflow: hidden;
}

/* FLEX */
.training-flex {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom:35px;
}

/* LEFT IMAGE */
.training-left {
    flex: 1;
}

.image-box {
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.image-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2) rotate(2deg);
    transition: all 1s ease;
    filter: brightness(0.9);
}

.image-box img.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: brightness(1);
}

/* BUTTON */
.plan-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: 0.4s;

    background: linear-gradient(45deg,#ff6a00,#ff3d00);
    box-shadow: 0 10px 20px rgba(255,106,0,0.3);
}

/* SHINE EFFECT */
.plan-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
    transition: 0.5s;
}

.plan-btn:hover::before {
    left: 100%;
}

/* HOVER */
.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,106,0,0.5);
}

/* ACTIVE CARD BUTTON SPECIAL */
.plan-card.active .plan-btn {
    background: linear-gradient(45deg,#00c853,#64dd17);
    box-shadow: 0 15px 30px rgba(0,200,83,0.4);
}
/* ROW */
.plan-row {
    display: flex;
    gap: 25px;
}

/* CARD BASE */
.plan-card {
    flex: 1;
    min-height: 280px;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    /* GLASS EFFECT */
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);

    box-shadow: 0 20px 40px rgba(0,0,0,0.1);

    
   
    transition: all 0.5s ease;
}

/* GRADIENT BORDER GLOW */
.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg,#ff6a00,#ff3d00,#ff6a00);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* ACTIVE CARD */
.plan-card.active {
    transform: translateY(0) scale(1.05);
    opacity: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.plan-card.active::before {
    opacity: 1;
}

/* HEADER */
.plan-header {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

/* COLORS */
.plan-card.basic .plan-header {
    background: linear-gradient(45deg,#2e7d32,#66bb6a);
}

.plan-card.standard .plan-header {
    background: linear-gradient(45deg,#ef6c00,#ff9800);
}

.plan-card.premium .plan-header {
    background: linear-gradient(45deg,#1565c0,#42a5f5);
}

/* TEXT */
.plan-card ul {
    padding-left: 15px;
}

.plan-card ul li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ICON */
.plan-icon {
    text-align: center;
    font-size: 32px;
    margin-top: 15px;
    color: #bbb;
    transition: 0.4s;
}

/* ACTIVE ICON */
.plan-card.active .plan-icon {
    color: #ff6a00;
    transform: scale(1.2);
}

/* HOVER */
.plan-card:hover {
    transform: translateY(-10px) scale(1.05)!important;
    opacity: 1;
}


/* TITLE DESIGN */
.title-line {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    color: #0d2c54;
    letter-spacing: 1px;
}

/* GRADIENT TEXT */
.title-line {
    background: linear-gradient(45deg,#ff6a00,#ff3d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* UNDERLINE EFFECT */
.title-line::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg,#ff6a00,#ff3d00);
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* ANIMATION */
.title-line {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* RESPONSIVE */
/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) and (min-width: 993px) {

    .training-flex {
        gap: 35px;
    }

    .image-box {
        height: 400px;
    }

    .plan-row {
        gap: 15px;
    }

    .plan-card {
        padding: 20px;
        min-height: 280px;
    }

}


/* =========================================================
   TABLET
   769px - 992px
========================================================= */

@media (max-width: 992px) and (min-width: 769px) {

    .training-section {
        padding: 70px 0;
    }

    .training-flex {
        flex-direction: column;
        gap: 40px;
    }

    .training-left {
        width: 100%;
    }

    .image-box {
        width: 100%;
        height: 340px;
    }

    .plan-row {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 18px;
    }

    .plan-card {
        flex: 1;
        min-width: 0;
        min-height: 270px;
        padding: 18px;
    }

    .plan-header {
        font-size: 17px;
    }

    .plan-card ul li {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
   481px - 768px
========================================================= */

@media (max-width: 768px) and (min-width: 481px) {

    .training-section {
        padding: 60px 0;
    }

    .training-flex {
        flex-direction: column;
        gap: 30px;
    }

    .training-left {
        width: 100%;
    }

    .image-box {
        width: 100%;
        height: 300px;
    }

    .plan-row {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .plan-card {
        width: 100%;
        min-height: auto;
        padding: 20px;
    }

    .plan-header {
        font-size: 16px;
    }

    .plan-card ul li {
        font-size: 13px;
        line-height: 1.5;
    }

    .plan-icon {
        font-size: 28px;
    }

    .plan-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   0px - 480px
========================================================= */

@media (max-width: 480px) {

    .training-section {
        padding: 50px 0;
    }

    .training-flex {
        flex-direction: column;
        gap: 25px;
    }

    .training-left {
        width: 100%;
    }

    .image-box {
        width: 100%;
        height: 240px;
        border-radius: 18px;
    }

    .plan-row {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .plan-card {
        width: 156%;
        min-height: auto;
        padding: 18px;
        border-radius: 17px;
        margin-left: -54px;
    }

    .plan-card.active {
        transform: none;
    }

    .plan-header {
        font-size: 15px;
        padding: 10px;
    }

    .plan-card ul {
        padding-left: 18px;
    }

    .plan-card ul li {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .plan-icon {
        font-size: 25px;
        margin-top: 12px;
    }

    .plan-btn {
        width: 90%;
        padding: 11px;
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   360px
========================================================= */

@media (max-width: 360px) {

    .training-section {
        padding: 45px 0;
    }

    .image-box {
        height: 210px;
    }

    .plan-card {
        padding: 16px;
    }

    .plan-header {
        font-size: 14px;
    }

    .plan-card ul li {
        font-size: 11.5px;
    }

    .plan-btn {
        font-size: 11px;
        padding: 10px;
    }

}
/*----------------------------------------------------------------------------------------------------------*/
/* =========================================================
   DOMAINS SECTION
========================================================= */

.domains-section {
    padding: 50px  0;
    background:#d4ddee;
    text-align: center;
}


/* =========================================================
   CONTAINER
========================================================= */

.domains-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 18px;
}


/* =========================================================
   DOMAIN ITEM
========================================================= */

.domain-item {
    position: relative;

    min-height: 120px;

    padding: 20px 12px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 15px;

    border: 1px solid #e5e7eb;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        border-color .35s ease;
}


/* =========================================================
   ICON
========================================================= */

.domain-item img {
    width: auto;
    height: 42px;

    max-width: 60px;

    object-fit: contain;

    margin-bottom: 10px;

    transition:
        transform .35s ease;
}


/* =========================================================
   TEXT
========================================================= */

.domain-item p {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.3;

    color: #333;

    transition: .3s ease;
}


/* =========================================================
   ANIMATED BORDER
========================================================= */

.domain-item::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 15px;

    border: 2px solid #ff6a00;

    opacity: 0;

    transform: scale(.94);

    transition:
        opacity .3s ease,
        transform .3s ease;

    pointer-events: none;
}


/* =========================================================
   HOVER
========================================================= */

.domain-item:hover {
    background: #fffaf5;

    border-color: transparent;

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(15,23,42,.10);
}

.domain-item:hover::after {
    opacity: 1;

    transform: scale(1);
}

.domain-item:hover img {
    transform: translateY(-4px) scale(1.08);
}

.domain-item:hover p {
    color: #ff6a00;
}


/* =========================================================
   BUTTON
========================================================= */

.outline-btn {
    display: flex;

    width: fit-content;

    margin: 40px auto 0;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 26px;

    border: 2px solid #ff6a00;

    color: #ff6a00;

    background: #fff;

    border-radius: 30px;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    position: relative;

    overflow: hidden;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   BUTTON BORDER ANIMATION
========================================================= */

.outline-btn::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 30px;

    border: 2px solid #ff6a00;

    opacity: 0;

    transform: scale(.95);

    transition: .3s ease;

    pointer-events: none;
}

.outline-btn:hover::after {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   BUTTON HOVER
========================================================= */

.outline-btn:hover {
    background: #ff6a00;

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(255,106,0,.25);
}


/* =========================================================
   LAPTOP
   993px - 1199px
========================================================= */

@media (min-width: 993px) and (max-width: 1199px) {

    .domains-grid {
        grid-template-columns:
            repeat(4, 1fr);

        gap: 18px;
    }

}


/* =========================================================
   TABLET
   769px - 992px
========================================================= */

@media (min-width: 769px) and (max-width: 992px) {

    .domains-section {
        padding: 70px 0;
    }

    .domains-grid {
        width: 92%;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 16px;
    }

    .domain-item {
        min-height: 115px;

        padding: 18px 10px;
    }

    .domain-item img {
        height: 40px;
    }

}


/* =========================================================
   MOBILE
   481px - 768px
========================================================= */

@media (min-width: 481px) and (max-width: 768px) {

    .domains-section {
        padding: 60px 0;
    }

    .domains-grid {
        width: 92%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }

    .domain-item {
        min-height: 110px;

        padding: 18px 10px;
    }

    .domain-item img {
        height: 38px;
    }

    .domain-item p {
        font-size: 12px;
    }

    .outline-btn {
        margin-top: 30px;

        padding: 11px 22px;

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   0px - 480px
========================================================= */

@media (max-width: 480px) {

    .domains-section {
        padding: 50px 0;
    }

    .domains-grid {
        width: 92%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .domain-item {
        width: 100%;

        min-height: 100px;

        padding: 15px 8px;

        border-radius: 13px;
    }

    .domain-item img {
        height: 34px;

        max-width: 50px;

        margin-bottom: 8px;
    }

    .domain-item p {
        font-size: 11.5px;

        line-height: 1.3;
    }

    .outline-btn {
        margin-top: 28px;

        padding: 10px 19px;

        font-size: 11.5px;

        border-width: 1.5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   360px
========================================================= */

@media (max-width: 360px) {

    .domains-grid {
        width: 94%;

        gap: 10px;
    }

    .domain-item {
        min-height: 95px;

        padding: 12px 0px;
    }

    .domain-item img {
        height: 30px;
    }

    .domain-item p {
        font-size: 10.5px;
    }

    .outline-btn {
        padding: 9px 16px;

        font-size: 11px;
    }

}

/*-------------------------------------------------------------------------------------------------------*/
.recruitment-section {
    padding: 33px 5%;
    background: #f5f6f6;
    margin-top: -25px;
  
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
   
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #28a745;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* WRAPPER */
.recruitment-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 62px;
}

/* LEFT */
.recruitment-cards {
    flex: 2;
    display: flex;
    gap: 20px;
}

/* CARD */
.rec-card {
    flex: 1;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    border-top: 6px solid transparent;
}

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

/* COLORS */
.rec-card.green { border-color: #2e7d32; }
.rec-card.orange { border-color: #ef6c00; }
.rec-card.blue { border-color: #1565c0; }

.rec-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.members {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #666;
}

.rec-card ul {
    padding-left: 18px;
    color:#666;
}

.rec-card ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* RIGHT IMAGES */
.recruitment-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recruitment-images img {
    width: 100%;
    border-radius: 15px;
    height: 171px;
    object-fit: cover;
    transition: 0.3s;
}

.recruitment-images img:hover {
    /*transform: scale(1.05);*/
}
@media(max-width: 992px) {
    .recruitment-wrapper {
        flex-direction: column;
    }

    .recruitment-cards {
        flex-direction: column;
    }

    .recruitment-images {
        flex-direction: row;
    }

    .recruitment-images img {
        height: 100px;
    }
}


/*----------------------------------------------------contact-------------------------------------------------*/
.contact-section {
    padding: 80px 5%;
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* 🔥 DARK OVERLAY (IMPORTANT FOR TEXT VISIBILITY) */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85); /* dark overlay */
    z-index: 0;
}


/* CONTAINER */
.contact-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
      position: relative;
    z-index: 1;
}

/* LEFT */
.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-left p {
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 420px;
}

/* CONTACT INFO ALIGN FIX */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin: 0;
}

.contact-info i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff6a00;
    font-size: 14px;
}

/* RIGHT FORM */
.contact-right {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

/* INPUT */
.input-group {
    margin-bottom: 18px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid transparent;
    outline: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

/* PLACEHOLDER FIX */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #94a3b8;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
    border: 1px solid #ff6a00;
    background: rgba(255,255,255,0.12);
}

/* BUTTON */
.contact-btn {
    width: 100%;
    padding: 14px;
    background: #ff6a00;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #ff8533;
}
/* =========================================================
   TABLET
   769px - 992px
========================================================= */

@media (max-width: 992px) and (min-width: 769px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 700px;
    }

    .contact-left {
        text-align: center;
    }

    .contact-left p {
        margin: 0 auto 20px;
        max-width: 650px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-right {
        padding: 30px;
    }

}


/* =========================================================
   MOBILE
   481px - 768px
========================================================= */

@media (max-width: 768px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left {
        text-align: center;
    }

    .contact-left h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .contact-left p {
        max-width: 600px;
        margin: 0 auto 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-right {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   0px - 480px
========================================================= */

@media (max-width: 480px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-container {
        width: 92%;
        margin: auto;
        gap: 25px;
    }

    .contact-left h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .contact-left p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .contact-info {
        width: 100%;
        align-items: center;
    }

    .contact-info p {
        font-size: 13px;
        margin-bottom: 10px;
        text-align: center;
    }

    .contact-right {
        width: 100%;
        padding: 20px 15px;
        border-radius: 16px;
    }

    .input-group {
        margin-bottom: 12px;
    }

    .input-group input,
    .input-group textarea {
        width: 95%;
        padding: 11px 7px;
        font-size: 13px;
    }

    .input-group textarea {
        min-height: 110px;
        resize: vertical;
    }

    .contact-btn {
        padding: 11px;
        font-size: 13px;
    }

}
/*------------------------------------------------------footer--------------------------------------------*/
.footer {
    background: 
        linear-gradient(rgba(15,23,42,0.9), rgba(15,23,42,0.95)),
     url('https://images.unsplash.com/photo-1557683316-973673baf926?w=1600&h=600&fit=crop')
        no-repeat center/cover;

    color: #94a3b8;
    padding: 70px 5% 25px;
    font-family: 'Poppins', sans-serif;
}
/* GRID LAYOUT */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* BRAND */
.footer-brand h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 22px;
}

.footer-brand i {
    color: #ff6a00;
    margin-right: 8px;
}

.footer-brand p {
    line-height: 1.6;
    font-size: 14px;
    max-width: 320px;
}

/* HEADINGS */
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 15px;
}

/* LINKS */
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s;
}

/* ICON STYLE */
.footer-links a i {
    color: #ff6a00;
    font-size: 12px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* CONTACT */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    color: #ff6a00;
}
.footer-contact i:hover {
    color:white;
}


/* SOCIAL */
.footer-social {
    margin-top: 12px;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 8px;
    background: #1e293b;
    color: #fff;
    transition: 0.3s;
}

/* SOCIAL HOVER */
.footer-social a:hover {
    background: #ff6a00;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}

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

@media(max-width: 600px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a,
    .footer-contact p {
        justify-content: center;
    }

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #fff;
}

.footer-logo img {
    height: 88px;
    width: auto;
    border-radius: 10px;
}


/*------------------------------------------------------------pages-------------------------------------------------------*/
