:root {

    --primary: #2ea043;
    --secondary: #9acd32;

    --bg: #07120c;
    --bg-secondary: #0d1f16;

    --white: #ffffff;

    --text: #b5c2bc;

    --card-bg: var(--card-bg);

    --border: rgba(255, 255, 255, .08);

    --navbar-height: 90px;
}

body.light-theme {

    --bg: #f7faf8;

    --bg-secondary: #ffffff;

    --white: #07120c;

    --text: #5e6b66;

    --card-bg: rgba(0, 0, 0, .03);

    --border: rgba(0, 0, 0, .08);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
}

.navbar {
    padding: 20px 0;
    transition: .4s;
}

.logo {
    height: 60px;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
}

.btn-cytos {
    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );

    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--navbar-height) + 30px);
}

.hero-content h1 {
    font-size: clamp(52px, 7vw, 95px);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-content p {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 18px 0;

    background: rgba(255, 255, 255, .03);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    transition: all .4s ease;
}

.navbar.scrolled {
    background: rgba(7, 18, 12, .92);

    padding: 12px 0;

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

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.glow-1 {
    width: 300px;
    height: 300px;

    background: var(--primary);

    top: 10%;
    left: -100px;

    opacity: .25;
}

.glow-2 {
    width: 350px;
    height: 350px;

    background: var(--secondary);

    bottom: -100px;
    right: -100px;

    opacity: .2;
}

.btn-cytos {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );

    padding: 14px 32px;

    border-radius: 60px;

    border: none;

    font-weight: 600;

    transition: .4s;
}

.btn-cytos:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 30px rgba(46, 160, 67, .4);
}

.mouse-glow {
    position: fixed;

    width: 300px;
    height: 300px;

    background: rgba(46, 160, 67, .15);

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 1;
}

.preloader {
    position: fixed;

    inset: 0;

    background: #07120c;

    display: flex;

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

    z-index: 99999;
}

.preloader img {
    width: 140px;

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

.feature-card {

    background: var(--card-bg);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    padding: 40px;

    backdrop-filter: blur(20px);

    transition: .5s;

    height: 100%;
}

.feature-card:hover {

    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);

    border-color: rgba(154, 205, 50, .5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.counter-number {

    font-size: 72px;

    font-weight: 800;

    background: linear-gradient(
        45deg,
        #2ea043,
        #9acd32
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* =========================
   SECTION SPACING
========================= */

.section-padding {
    padding: 120px 0;
}

/* =========================
   SECTION TITLE
========================= */

.section-title span {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: clamp(38px, 5vw, 60px);

    font-weight: 800;

    margin-top: 20px;

    max-width: 800px;

    margin-inline: auto;
}

/* =========================
   FEATURES
========================= */

.features-section {
    position: relative;
}

.feature-card {

    background: var(--card-bg);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    padding: 40px;

    backdrop-filter: blur(20px);

    transition: .5s;

    height: 100%;

    position: relative;

    overflow: hidden;
}

.feature-card::before {

    content: '';

    position: absolute;

    width: 200px;
    height: 200px;

    background: rgba(154, 205, 50, .08);

    border-radius: 50%;

    top: -100px;
    right: -100px;

    transition: .5s;
}

.feature-card:hover {

    transform: translateY(-12px) rotateX(4deg) rotateY(-4deg);

    border-color: rgba(154, 205, 50, .5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.feature-card:hover::before {

    transform: scale(1.4);
}

.feature-icon {

    width: 80px;
    height: 80px;

    border-radius: 20px;

    display: flex;

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

    font-size: 34px;

    margin-bottom: 30px;

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );
}

.feature-card h4 {

    font-size: 28px;

    margin-bottom: 20px;

    font-weight: 700;
}

.feature-card p {

    color: var(--text);

    line-height: 1.8;
}

/* =========================
   ABOUT
========================= */

.about-section {
    position: relative;
}

.about-images {
    position: relative;
    min-height: 600px;
}

.about-img {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    width: 70%;
    height: 500px;
    left: 0;
    top: 0;
}

.img-2 {
    width: 50%;
    height: 320px;
    right: 0;
    bottom: 0;

    border: 8px solid var(--dark);
}

.about-content span {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.about-content h2 {

    font-size: clamp(38px, 5vw, 60px);

    font-weight: 800;

    margin: 20px 0;
}

.about-content p {

    color: var(--text);

    line-height: 1.9;

    margin-bottom: 35px;
}

.about-item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

.about-item i {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );

    display: flex;

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

/* =========================
   COUNTERS
========================= */

.counter-section {

    padding: 120px 0;

    background: linear-gradient(
        rgba(7, 18, 12, .92),
        rgba(7, 18, 12, .92)
    ),
    url('../images/counter-bg.jpg');

    background-size: cover;
    background-position: center;

    position: relative;
}

.counter-box {

    text-align: center;

    padding: 40px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 30px;

    backdrop-filter: blur(12px);
}

.counter {

    font-size: 72px;

    font-weight: 800;

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.counter-box p {

    color: var(--text);

    margin-top: 10px;
}

/* =========================
   CLIENTS
========================= */

.clients-slider {
    overflow: hidden;
}

.swiper-slide {

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

.swiper-slide img {

    max-width: 180px;

    opacity: .5;

    transition: .4s;

    filter: grayscale(100%);
}

.swiper-slide img:hover {

    opacity: 1;

    filter: grayscale(0%);
}

/* =========================
   SUBSCRIBE
========================= */

.subscribe-box {

    position: relative;

    padding: 80px;

    border-radius: 40px;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        rgba(46, 160, 67, .18),
        rgba(154, 205, 50, .08)
    );

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);
}

.subscribe-box::before {

    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(154, 205, 50, .15);

    top: -200px;
    right: -150px;

    filter: blur(80px);
}

.subscribe-content {
    position: relative;
    z-index: 2;
}

.subscribe-content span {

    color: var(--secondary);

    font-weight: 600;

    letter-spacing: 2px;
}

.subscribe-content h2 {

    font-size: clamp(38px, 5vw, 60px);

    font-weight: 800;

    margin: 20px 0;
}

.subscribe-content p {

    color: var(--text);

    line-height: 1.9;
}

.subscribe-form {

    position: relative;

    display: flex;

    align-items: center;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 70px;

    padding: 12px;
}

.subscribe-form input {

    width: 100%;

    background: none;

    border: none;

    outline: none;

    color: #fff;

    padding: 0 20px;
}

.subscribe-form input::placeholder {

    color: #b5c2bc;
}

/* =========================
   FOOTER
========================= */

.footer-section {

    padding-top: 120px;

    background: #050d08;
}

.footer-logo {

    width: 180px;

    margin-bottom: 25px;
}

.footer-about p {

    color: var(--text);

    line-height: 1.9;
}

.footer-section h5 {

    margin-bottom: 25px;

    font-weight: 700;
}

.footer-section ul {

    padding: 0;

    list-style: none;
}

.footer-section ul li {

    margin-bottom: 14px;
}

.footer-section ul li a {

    color: var(--text);

    text-decoration: none;

    transition: .3s;
}

.footer-section ul li a:hover {

    color: var(--secondary);
}

.social-links {

    display: flex;

    gap: 15px;
}

.social-links a {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;

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

    background: rgba(255, 255, 255, .05);

    color: #fff;

    text-decoration: none;

    transition: .4s;
}

.social-links a:hover {

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );

    transform: translateY(-5px);
}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    margin-top: 70px;

    padding: 30px 0;

    text-align: center;
}

.footer-bottom p {

    margin: 0;

    color: var(--text);
}

/* =========================
   ThEME TOGGLE
========================= */

.theme-toggle {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    border: none;

    background: var(--card-bg);

    color: var(--white);

    font-size: 20px;

    display: flex;

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

    transition: .4s;
}

.theme-toggle:hover {

    transform: rotate(180deg);

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );
}

/* =========================
   CUSTOM CURSOR
========================= */

.custom-cursor {

    width: 20px;
    height: 20px;

    border: 2px solid var(--secondary);

    border-radius: 50%;

    position: fixed;

    pointer-events: none;

    z-index: 99999;

    transform: translate(-50%, -50%);

    transition: width .2s,
    height .2s,
    background .2s;
}

/* =========================
   Mobile Navbar Animation
========================= */
@media (max-width: 991px) {

    .navbar-collapse {

        background: rgba(7, 18, 12, .95);

        padding: 30px;

        border-radius: 20px;

        margin-top: 20px;

        backdrop-filter: blur(20px);
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

}

.hero-image img {

    max-width: 100%;

    object-fit: contain;
}

/* =========================
   HERO SLIDER FIX
========================= */

.hero-slider {
    width: 100%;
    height: 100vh;
}

.hero-slider .swiper-slide {

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.swiper-fade .swiper-slide {

    opacity: 0 !important;

    transition-property: opacity;
}

.swiper-fade .swiper-slide-active {

    opacity: 1 !important;
}

.hero-section {
    min-height: 100vh;
}

/* =========================
   LOGIN PAGE
========================= */

.login-section {

    position: relative;

    overflow: hidden;

    background: var(--bg);

    min-height: 100vh;
}

/* Glow */

.login-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .15;
}

.login-glow.glow-1 {

    width: 350px;
    height: 350px;

    background: var(--primary);

    top: -100px;
    left: -100px;
}

.login-glow.glow-2 {

    width: 400px;
    height: 400px;

    background: var(--secondary);

    bottom: -150px;
    right: -150px;
}

/* Banner */

.login-banner {

    position: relative;

    height: 100%;

    padding: 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: linear-gradient(
        135deg,
        rgba(46, 160, 67, .15),
        rgba(154, 205, 50, .05)
    );
}

.login-banner-content {
    position: relative;
    z-index: 2;
}

.login-banner-content span {

    color: var(--secondary);

    letter-spacing: 2px;

    font-weight: 600;
}

.login-banner-content h1 {

    font-size: clamp(50px, 6vw, 90px);

    font-weight: 800;

    margin: 25px 0;

    line-height: 1.1;
}

.login-banner-content p {

    color: var(--text);

    max-width: 550px;

    line-height: 1.9;
}

.login-image {

    margin-top: 50px;

    text-align: center;
}

.login-image img {

    width: 85%;

    animation: float 4s ease-in-out infinite;
}

/* Form */

.login-form-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

    padding: 40px;
}

.login-form-box {

    width: 100%;

    max-width: 520px;

    padding: 50px;

    border-radius: 40px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    backdrop-filter: blur(20px);
}

.login-logo {

    margin-bottom: 30px;
    margin-top: 50px;
}

.login-logo img {

    width: 170px;
}

.login-title h2 {

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 10px;
}

.login-title p {

    color: var(--text);

    margin-bottom: 40px;
}

/* Form Group */

.form-group {

    margin-bottom: 25px;
}

.form-group label {

    margin-bottom: 12px;

    display: block;

    font-weight: 500;
}

.input-box {

    position: relative;
}

.input-box i {

    position: absolute;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--secondary);
}

.input-box input {

    width: 100%;

    height: 60px;

    border-radius: 18px;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, .03);

    padding: 0 20px 0 55px;

    color: var(--white);

    outline: none;

    transition: .4s;
}

.input-box input:focus {

    border-color: var(--secondary);

    box-shadow: 0 0 20px rgba(154, 205, 50, .15);
}

/* Options */

.login-options {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;
}

.remember {

    display: flex;

    align-items: center;

    gap: 10px;
}

.login-options a {

    color: var(--secondary);

    text-decoration: none;
}

/* Footer */

.login-footer {

    margin-top: 30px;

    text-align: center;
}

.login-footer p {

    color: var(--text);
}

.login-footer a {

    color: var(--secondary);

    text-decoration: none;

    font-weight: 600;
}

@media (max-width: 991px) {

    .login-form-box {

        padding: 35px;
    }

    .login-title h2 {

        font-size: 34px;
    }

}

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

@media (max-width: 991px) {

    .hero-section {
        padding-top: 120px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {

        font-size: 48px;

        line-height: 1.2;
    }

    .hero-content p {

        font-size: 16px;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-image {

        margin-top: 50px;

        text-align: center;
    }

    .hero-image img {

        width: 80%;
    }

}

@media (max-width: 767px) {

    .feature-card {

        padding: 30px;
    }

    .feature-card h4 {

        font-size: 24px;
    }

}

@media (max-width: 991px) {

    .about-images {

        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 20px;
    }

    .about-img {

        position: relative;
    }

    .img-1,
    .img-2 {

        width: 100%;
        height: auto;
    }

    .img-2 {

        border: none;
    }

    .about-content {

        text-align: center;
    }

}

@media (max-width: 767px) {

    .counter {

        font-size: 52px;
    }

    .counter-box {

        padding: 30px 20px;
    }

}

@media (max-width: 767px) {

    .subscribe-box {

        padding: 40px 25px;
    }

    .subscribe-content {

        text-align: center;
    }

    .subscribe-form {

        flex-direction: column;

        border-radius: 25px;

        gap: 15px;
    }

    .subscribe-form input {

        height: 55px;
    }

    .subscribe-form .btn {

        width: 100%;
    }

}

@media (max-width: 767px) {

    .footer-section {

        text-align: center;
    }

    .social-links {

        justify-content: center;
    }

}

/* =========================
   RTL
========================= */

html[dir="rtl"] body {

    font-family: 'Cairo', sans-serif;
}

/* Navbar */

html[dir="rtl"] .navbar-nav {

    padding-right: 0;
}

/* Hero */

html[dir="rtl"] .hero-content,
html[dir="rtl"] .about-content,
html[dir="rtl"] .subscribe-content {

    text-align: right;
}

/* Buttons */

html[dir="rtl"] .hero-buttons {

    justify-content: flex-start;
}

/* Inputs */

html[dir="rtl"] .input-box i {

    left: auto;
    right: 20px;
}

html[dir="rtl"] .input-box input {

    padding: 0 55px 0 20px;
}

/* About */

html[dir="rtl"] .about-item {

    flex-direction: row-reverse;
}

/* Footer */

html[dir="rtl"] .footer-section {

    text-align: right;
}

.lang-switch {

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: var(--card-bg);

    color: var(--white);

    transition: .4s;
}

.lang-switch:hover {

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );
}

/* =========================
   PAGE HEADER
========================= */

.page-header {

    position: relative;

    padding: 220px 0 120px;

    overflow: hidden;

    text-align: center;
}

.page-header-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: .15;
}

.page-header-glow.glow-1 {

    width: 300px;
    height: 300px;

    background: var(--primary);

    top: -100px;
    left: -100px;
}

.page-header-glow.glow-2 {

    width: 350px;
    height: 350px;

    background: var(--secondary);

    right: -120px;
    bottom: -120px;
}

.page-header-content {

    position: relative;

    z-index: 2;
}

.page-header-content span {

    color: var(--secondary);

    letter-spacing: 2px;

    font-weight: 600;
}

.page-header-content h1 {

    font-size: clamp(52px, 6vw, 90px);

    font-weight: 800;

    margin: 20px 0;
}

.page-header-content p {

    max-width: 800px;

    margin: auto;

    color: var(--text);

    line-height: 1.9;
}

/* =========================
   PROGRAMS
========================= */

.program-card {

    position: relative;

    padding: 40px;

    border-radius: 30px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: .5s;

    height: 100%;
}

.program-card:hover {

    transform: translateY(-10px);

    border-color: rgba(154, 205, 50, .4);
}

.program-icon {

    width: 80px;
    height: 80px;

    border-radius: 20px;

    display: flex;

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

    font-size: 34px;

    margin-bottom: 30px;

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );
}

.program-card h4 {

    font-size: 28px;

    margin-bottom: 20px;

    font-weight: 700;
}

.program-card p {

    color: var(--text);

    line-height: 1.8;

    margin-bottom: 25px;
}

.program-card a {

    color: var(--secondary);

    text-decoration: none;

    font-weight: 600;
}

/* =========================
   CONTACT
========================= */

.contact-item {

    display: flex;

    gap: 20px;

    margin-bottom: 35px;
}

.contact-item i {

    width: 60px;
    height: 60px;

    border-radius: 18px;

    display: flex;

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

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );

    font-size: 24px;
}

.contact-form input,
.contact-form textarea {

    width: 100%;

    border: none;

    outline: none;

    border-radius: 20px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    padding: 20px;

    margin-bottom: 25px;

    color: var(--white);
}

.contact-form textarea {

    height: 180px;

    resize: none;
}

/* =========================
   FAQ
========================= */

.accordion-item {

    background: var(--card-bg);

    border: 1px solid var(--border);

    border-radius: 20px !important;

    overflow: hidden;

    margin-bottom: 20px;
}

.accordion-button {

    background: none !important;

    color: var(--white);

    box-shadow: none !important;

    padding: 25px;

    font-weight: 600;
}

.accordion-body {

    color: var(--text);

    line-height: 1.8;

    padding: 25px;
}

/* =========================
   SERVICES
========================= */

.service-card {

    position: relative;

    padding: 45px;

    border-radius: 30px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: .5s;

    height: 100%;
}

.service-card:hover {

    transform: translateY(-10px);

    border-color: rgba(154, 205, 50, .4);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.service-number {

    position: absolute;

    top: 25px;
    right: 25px;

    font-size: 70px;

    font-weight: 800;

    opacity: .05;
}

.service-icon {

    width: 85px;
    height: 85px;

    border-radius: 22px;

    display: flex;

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

    font-size: 36px;

    margin-bottom: 30px;

    background: linear-gradient(
        45deg,
        var(--primary),
        var(--secondary)
    );
}

.service-card h4 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 20px;
}

.service-card p {

    color: var(--text);

    line-height: 1.9;

    margin-bottom: 25px;
}

.service-card a {

    color: var(--secondary);

    text-decoration: none;

    font-weight: 600;
}

/* =========================
   FINAL RESPONSIVE
========================= */

@media (max-width: 991px) {

    .section-padding {
        padding: 80px 0;
    }

    .page-header {
        padding: 180px 0 90px;
    }

    .page-header-content h1 {
        font-size: 52px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .about-content h2,
    .subscribe-content h2 {
        font-size: 40px;
    }

    .navbar-brand img {
        width: 140px;
    }

    .btn-cytos {
        padding: 14px 30px;
    }

}

@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 13px;
    }

    .hero-image img {
        width: 100%;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .page-header-content h1 {
        font-size: 42px;
    }

    .feature-card,
    .program-card,
    .service-card,
    .counter-box {
        border-radius: 25px;
    }

    .service-card,
    .program-card {
        padding: 35px 30px;
    }

    .service-icon,
    .program-icon {
        width: 75px;
        height: 75px;
    }

    .counter {
        font-size: 44px;
    }

    .footer-logo {
        width: 150px;
    }

    .login-form-box {
        padding: 30px 25px;
    }

    .subscribe-box {
        border-radius: 30px;
    }

}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .section-title h2,
    .about-content h2,
    .subscribe-content h2 {
        font-size: 30px;
    }

    .page-header-content h1 {
        font-size: 36px;
    }

    .btn-cytos {

        width: 100%;

        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .login-title h2 {
        font-size: 30px;
    }

    .service-card,
    .program-card,
    .feature-card {

        padding: 30px 25px;
    }

}

img {

    max-width: 100%;

    height: auto;
}

@media (min-width: 1400px) {

    .container {

        max-width: 1320px;
    }

}

html {

    scroll-behavior: smooth;
}

button,
a {

    -webkit-tap-highlight-color: transparent;
}

.profile-dropdown .dropdown-menu {
    min-width: 240px;
    border-radius: 15px;
    border: none;
    padding: 10px;
}

.profile-dropdown .dropdown-item {
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.profile-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.account-wrapper {
    padding: 40px 0;
    background: #0f172a;
    min-height: 100vh;
    color: #fff;
}

.account-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-tabs {
    border: none;
    gap: 10px;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #aaa;
    border-radius: 12px;
    padding: 10px 18px;
    transition: 0.3s;
}

.nav-tabs .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-tabs .nav-link.active {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}

.account-card .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.account-card .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: #4f46e5;
    box-shadow: none;
    color: #fff;
}

.btn-primary {
    background: #4f46e5;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #4338ca;
}

.btn-success {
    background: #22c55e;
    border: none;
    border-radius: 12px;
}

.btn-danger {
    background: #ef4444;
    border: none;
    border-radius: 12px;
}

.account-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4f46e5;
    padding: 3px;
    background: #111827;
}

.avatar-box {
    text-align: center;
    margin-bottom: 20px;
}

.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .account-card {
        padding: 15px;
    }

    .nav-tabs {
        flex-wrap: wrap;
    }

    .nav-tabs .nav-link {
        flex: 1;
        text-align: center;
    }
}

.account-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.add-padding-top {
    padding-top: calc(var(--navbar-height) + 30px) !important;
}

.user-account .card {
    background-color: var(--bg);
}

.user-account .card .mb-4{
    color: #fff;
}

.member-projects {

    min-height: 100vh;

}

.project-card {

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

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    border-radius: 20px;

    padding: 25px;

    height: 100%;

    transition: 0.3s;

    color: #fff;

}

.project-card:hover {

    transform: translateY(-5px);

    border-color: #2ea043;

}

.project-title {

    font-size: 22px;

    margin-bottom: 15px;

    font-weight: 700;

}

.project-description {

    color: rgba(255,255,255,0.7);

    line-height: 1.7;

    min-height: 80px;

}

.project-files {

    color: #2ea043;

    font-weight: 600;

}

.empty-projects {

    text-align: center;

    padding: 80px 20px;

    color: #fff;

}

.empty-projects i {

    font-size: 80px;

    color: #2ea043;

    margin-bottom: 20px;

}

.upload-box {
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.upload-box.dragover {
    border-color: #2ea043;
    background: rgba(46,160,67,0.1);
}
