:root{
    --primary-color:#3aee91;
}

body {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
a{text-decoration: none;}

.btn-site{
    background: linear-gradient(rgb(120,247,184) 10%,rgb(19,216,114) 90%);
    color: #000;
    border-radius: 50px;
    padding: 10px 24px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}
.btn-site:hover {
    background: linear-gradient(rgb(19,216,114) 10%,rgb(120,247,184) 90%);
    color: #000;
}

/* Custom Floating Header */
.custom-navbar {
    background-color: #f7f9fa;
    border-radius: 50px;
    padding: 8px 15px;
    margin-top: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Outfit', sans-serif;
}

.custom-navbar .nav-link {
    color: #1a1a1a !important;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.custom-navbar .nav-link:hover, .custom-navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.custom-navbar .dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: middle;
}

.main__logo{height:45px;}

.sldr{
    background: url(../images/slide_background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typography & Utilities */
.text-color-dark { color: #111; }
.text-color-light-gray { color: #eaeaec !important; }

/* Header Elements */
.header-brand-text {
    font-size: 20px;
    letter-spacing: -0.5px;
}
.header-dropdown-menu {
    border-color: var(--primary-color) !important;
    top: 110%;
}

/* Hero Section Elements */
.hero-title {
    font-size: clamp(3rem, 5vw, 3.5rem);
    line-height: 1.25;
    letter-spacing: -1.5px;
    font-weight: 400;
}
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
}
.hero-btn {
    padding: 14px 32px;
    font-size: 1.05rem;
}
.hero-cover-img {
    max-height: 600px;
    filter: drop-shadow(0 0 40px rgba(58, 238, 145, 0.1));
}

/* Feature Cards */
.feature-icon-box {
    width: 75px;
    height: 75px;
    background-color: var(--primary-color);
    background: linear-gradient(rgb(120,247,184) 10%,rgb(19,216,114) 90%);
    border-radius: 16px;
}
.feature-icon-lg {
    font-size: 32px;
    color: #053b1b;
}
.feature-icon-md {
    font-size: 28px;
    color: #053b1b;
}
.feature-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* CTA Section Elements */
.cta-card {
    border-radius: 30px;
    overflow: hidden;
    background: #f7f9fa;
    max-width: 1050px;
}
.cta-btn-gray {
    background-color: #dadddf;
    color: #111;
    border-radius: 50px;
    padding: 10px 24px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}
.cta-btn-gray:hover {
    background-color: #c9cecf;
    color: #000;
}
.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    letter-spacing: -1px;
    font-weight: 400;
    line-height: 1.5;
}
.cta-meta-text {
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Course Section Elements */
.course-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.2;
    letter-spacing: -1.5px;
    font-weight: 400;
}
.course-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1 !important;
}
.course-img-glow {
    background: radial-gradient(circle, rgba(35, 45, 48, 0.8) 0%, rgba(35, 45, 48, 0.4) 50%, rgba(18, 24, 27, 0) 70%);
}

/* Highlights Section */
.highlight-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 400;
}
.text-primary-gradient {
    background: linear-gradient(rgb(120,247,184) 10%,rgb(19,216,114) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.highlight-card:hover {
    transform: translateY(-8px);
}
.highlight-img-wrapper {
    border-radius: 20px;
    background-color: #171d20;
    overflow: hidden;
    margin-bottom: 25px;
}

/* Video/Certificate Section */
.video-thumbnail-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.video-thumbnail-container:hover .video-overlay {
    background: rgba(0,0,0,0.4);
}
.play-btn-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(58,238,145,0.4);
    transition: transform 0.3s ease;
}
.video-thumbnail-container:hover .play-btn-circle {
    transform: scale(1.1);
}
.play-btn-circle i {
    font-size: 30px;
    color: #053b1b;
    margin-left: 5px;
}

/* Questions Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(58,238,145,0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Modal Dark Style */
.modal-content-dark {
    background-color: #12181b;
    border: 1px solid #2d3748;
    border-radius: 20px;
}
.modal-header-clean {
    border-bottom: none;
    padding: 20px;
}
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Footer Section */
.site-footer {
    background-color: #0c1012;
    padding-top: 80px;
    padding-bottom: 40px;
    color: #cbd5e1;
}

.footer-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-nav-link:hover {
    color: var(--primary-color);
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.footer-newsletter-card {
    background-color: #171d20;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background: rgba(58, 238, 145, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: #053b1b;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.9rem;
    color: #718096;
}

.newsletter-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 140px;
    opacity: 0.6;
}

#getInTouchInfo span {
    font-size: 0.95rem;
}
.highlight-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.highlight-card h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}
.highlight-card p {
    color: #a0aec0;
    font-size: 1rem;
    line-height: 1.6;
}


/* About Page Specifics */
.sldr-mini {
    background: url(../images/slide_background.webp);
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 20px;
    transition: 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(58, 238, 145, 0.1);
}

/* Matching the homepage icon style */
.contact-icon i {
    font-size: 1.8rem;
}

/* Custom Form Group Styling */
.custom-form-group .form-control {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px;
    padding-left: 15px;
}

.custom-form-group .form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(58, 238, 145, 0.1) !important;
}

.custom-form-group label {
    color: rgba(255, 255, 255, 0.5) !important;
    padding-left: 15px;
}

.custom-form-group .form-control:focus ~ label,
.custom-form-group .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color) !important;
}

/* Override for floating labels in dark mode */
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after {
    background-color: transparent !important;
}

.contact-icon.small {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

/* MVC FAQ Styling */
.custom-faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.custom-faq-accordion .accordion-button {
    background-color: transparent !important;
    color: #fff !important;
    padding: 22px;
    font-weight: 500;
    box-shadow: none !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background: rgba(58, 238, 145, 0.05) !important;
}

.custom-faq-accordion .accordion-button::after {
    filter: invert(1); /* Keeps the arrow visible on dark background */
}

.faq-number {
    color: var(--primary-color);
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    opacity: 0.8;
}

.custom-faq-accordion .accordion-body {
    background-color: transparent;
    padding: 10px 25px 25px 65px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/*LOGIN*/
/* Contact-Us Style Inputs for Login */
.custom-form-group .form-control {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    padding-left: 0 !important;
    box-shadow: none !important;
}

.custom-form-group .form-control:focus {
    border-bottom: 1px solid var(--primary-color) !important;
    background-color: transparent !important;
}

.custom-form-group label {
    color: rgba(255, 255, 255, 0.5) !important;
    padding-left: 0 !important;
}

.custom-form-group .form-control:focus ~ label,
.custom-form-group .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color) !important;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem) !important;
}

/* Fix for background color on autofill */
.custom-form-group input:-webkit-autofill,
.custom-form-group input:-webkit-autofill:hover, 
.custom-form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px #171d20 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}