:root{
    --primary-color:#24cdd5;
}

body {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #0a0e14;
    color: #fff;
}
a{text-decoration: none;}

.btn-site{
    background: linear-gradient(135deg, #24cdd5 0%, #1ba8b0 100%);
    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(135deg, #1ba8b0 0%, #24cdd5 100%);
    color: #000;
}

/* ISO-styled Blurred Navbar */
.custom-navbar {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 8px 25px;
    margin-top: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-navbar:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !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;
}

.header-brand-text {
    color: #fff !important;
}

.custom-navbar .dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: middle;
}

/* Professional Dropdown Styling */
.custom-navbar .dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(36, 205, 213, 0.2);
    border-radius: 16px;
    padding: 8px;
    margin-top: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.custom-navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.custom-navbar .dropdown-item:hover {
    background: rgba(36, 205, 213, 0.15);
    color: var(--primary-color);
    transform: translateX(4px);
}

.custom-navbar .dropdown-item i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.custom-navbar .dropdown-item:hover i {
    transform: scale(1.1);
}

.custom-navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.custom-navbar .btn-site.dropdown-toggle {
    padding: 10px 20px;
}

/* Hover-triggered Dropdowns */
.custom-navbar .dropdown:hover > .dropdown-menu,
.custom-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out;
}

.custom-navbar .dropdown-menu {
    display: none;
    margin-top: 0;
    top: 100%;
}

/* Invisible bridge to prevent hover gap */
.custom-navbar .dropdown,
.custom-navbar .nav-item.dropdown {
    position: relative;
}

.custom-navbar .dropdown::after,
.custom-navbar .nav-item.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.custom-navbar .dropdown:hover::after,
.custom-navbar .nav-item.dropdown:hover::after {
    pointer-events: auto;
}

.custom-navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
}

.custom-navbar .dropdown:hover > .dropdown-toggle::after,
.custom-navbar .nav-item.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}

.main__logo{height:45px;}

/* Login Page Redesigned Left Panel */
.login-left-panel {
    background: linear-gradient(135deg, rgba(36, 205, 213, 0.1) 0%, rgba(23, 29, 32, 0.95) 100%);
    border-right: 1px solid rgba(36, 205, 213, 0.15);
}

.login-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.login-brand h4 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.login-features {
    margin-top: 2rem;
}

.login-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.login-feature-item:last-child {
    border-bottom: none;
}

.login-feature-item:hover {
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-bottom-color: transparent;
}

.login-feature-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.login-feature-item span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Animated Button Styling */
.btn-site.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-site.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.btn-site.btn-animated:hover::before {
    width: 400px;
    height: 400px;
}

.btn-site.btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(36, 205, 213, 0.4);
}

.btn-site.btn-animated .btn-text,
.btn-site.btn-animated .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-site.btn-animated .btn-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-site.btn-animated:hover .btn-icon {
    transform: translateX(8px);
}

.btn-site.btn-animated:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(36, 205, 213, 0.3);
}

/* Bootstrap Floating Labels - Dark Theme */
.form-floating > .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 12px;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(36, 205, 213, 0.15);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.5);
    padding: 1rem 0.75rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    z-index: 2;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.form-floating > label::after {
    background: #171d20;
    border-radius: 4px;
    box-shadow: none;
    border: 0;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    padding: 0 0.5rem;
    border-radius: 4px;
    height: auto;
    opacity: 1;
    border: 0;
    background: #171d20;
    box-shadow: none;
}

/* Ensure placeholder text doesn't show when label is floating */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 1;
}

.form-floating > textarea.form-control {
    height: 120px;
    min-height: calc(3.5rem + 2px);
    padding-top: 1.625rem;
}

.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control:-webkit-autofill:hover,
.form-floating > .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #171d20 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Contact Page Image Preview */
.image-preview-container {
    position: relative;
    max-width: 300px;
    border: 2px solid rgba(36, 205, 213, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.image-preview-container:hover {
    border-color: rgba(36, 205, 213, 0.6);
    box-shadow: 0 8px 25px rgba(36, 205, 213, 0.2);
}

.image-preview-container img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.remove-image-btn:hover {
    background: rgba(220, 53, 69, 0.9);
    border-color: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"]::-webkit-file-upload-button {
    background: rgba(36, 205, 213, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(36, 205, 213, 0.4);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload-wrapper input[type="file"]::-webkit-file-upload-button:hover {
    background: rgba(36, 205, 213, 0.4);
    border-color: rgba(36, 205, 213, 0.6);
}

.sldr{
    background: url(../images/homepage.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1450px;
    }
}

@media (min-width: 1366px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1150px;
    }
}

.sldr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Homepage Hero Slider */
.sldr {
    background: linear-gradient(rgba(10, 14, 20, 0.75), rgba(10, 14, 20, 0.85)), url(../images/banner.webp) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sldr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(36, 205, 213, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
/* 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: 600;
    font-family: 'Space Grotesk', sans-serif;
}
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.hero-btn {
    padding: 14px 32px;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.hero-btn.btn-site {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn.btn-site::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn.btn-site:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn.btn-site:hover {
    box-shadow: 0 0 20px rgba(36, 205, 213, 0.2);
    transform: translateY(-2px);
}

/* Category Cards Styles */
.category-card {
    background: linear-gradient(135deg, rgba(18, 24, 27, 0.8) 0%, rgba(12, 17, 19, 0.9) 100%);
    border: 1px solid rgba(36, 205, 213, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 205, 213, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(36, 205, 213, 0.075);
    border-color: rgba(36, 205, 213, 0.6);
    background: linear-gradient(135deg, rgba(18, 24, 27, 0.9) 0%, rgba(12, 17, 19, 1) 100%);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(36, 205, 213, 0.7) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(36, 205, 213, 0.15);
}

.category-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin: 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-content p {
    color: rgba(255, 255, 255, 0.8);
}

.categories-section {
    background-color: #12181b;
    padding: 80px 0;
}

.categories-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 60px;
    text-align: center;
    color: #FFF;
}

/* About Us Section Styles */
.about-section {
    background: linear-gradient(135deg, #0a0e1a 0%, #12181b 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(36, 205, 213, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(36, 205, 213, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(36, 205, 213, 0.03) 50%, transparent 52%);
    animation: float 20s ease-in-out infinite;
}

/* Referral CTA Section */
.referral-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../images/parallax-background.webp) no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.referral-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.referral-image-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.referral-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.referral-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.referral-image-container:hover img {
    transform: scale(1.05);
}

.referral-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.referral-title .accent {
    color: var(--primary-color);
}

.referral-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    margin-bottom: 35px;
    max-width: 500px;
}

.referral-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(36, 205, 213, 0.8) 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
}

.referral-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 205, 213, 0.3);
    color: #000;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 205, 213, 0.1), transparent);
    transition: left 0.8s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(36, 205, 213, 0.1);
    border-color: rgba(36, 205, 213, 0.3);
}

.about-label {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-title .accent {
    color: var(--primary-color);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    margin-bottom: 40px;
    max-width: 600px;
}

.about-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(36, 205, 213, 0.8) 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 205, 213, 0.2);
    color: #000;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(36, 205, 213, 0.1);
    border-color: rgba(36, 205, 213, 0.3);
}

.about-label {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-title .accent {
    color: var(--primary-color);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    margin-bottom: 40px;
    max-width: 600px;
}

.about-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(36, 205, 213, 0.8) 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.about-btn:hover::before {
    width: 400px;
    height: 400px;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 205, 213, 0.2);
    color: #000;
}

/* How It Works Section Styles */
.how-it-works-section {
    background: linear-gradient(135deg, #0a0e1a 0%, #12181b 50%, #0a0e1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(36, 205, 213, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(36, 205, 213, 0.05) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.how-it-works-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.how-it-works-title .accent {
    color: var(--primary-color);
}

.how-it-works-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
    max-width: 500px;
}

.video-thumbnail-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 205, 213, 0.1), transparent);
    transition: left 0.8s ease;
}

.video-thumbnail-container:hover::before {
    left: 100%;
}

.video-thumbnail-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(36, 205, 213, 0.1);
    border-color: rgba(36, 205, 213, 0.3);
}

.video-thumbnail-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-thumbnail-container:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    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.5);
}

.play-btn-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(36, 205, 213, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(36, 205, 213, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.play-btn-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.video-thumbnail-container:hover .play-btn-circle::before {
    width: 200px;
    height: 200px;
}

.video-thumbnail-container:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(36, 205, 213, 0.3);
}

.play-btn-circle i {
    font-size: 32px;
    color: #000;
    margin-left: 5px;
    z-index: 1;
    position: relative;
}

/* Our Services Section */
.services-section {
    background: linear-gradient(135deg, #0a0e1a 0%, #12181b 50%, #0a0e1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(36, 205, 213, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(36, 205, 213, 0.04) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

.services-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
}

.services-title .accent {
    color: var(--primary-color);
}

.service-card {
    background: linear-gradient(135deg, rgba(18, 24, 27, 0.8) 0%, rgba(12, 17, 19, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(36, 205, 213, 0.4);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 205, 213, 0.1), transparent);
    transition: left 0.8s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(36, 205, 213, 0.1);
    border-color: rgba(36, 205, 213, 0.5);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.service-icon-wrapper img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0;
}

/* Mission & Strategy Section */
.mission-section {
    background: linear-gradient(135deg, #0c1114 0%, #12181b 50%, #0c1114 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(36, 205, 213, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(36, 205, 213, 0.03) 0%, transparent 50%);
    animation: float 35s ease-in-out infinite reverse;
}

.mission-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
}

.mission-title .accent {
    color: var(--primary-color);
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(36, 205, 213, 0.12);
    border-color: rgba(36, 205, 213, 0.25);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(36, 205, 213, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.mission-icon i {
    font-size: 28px;
    color: #000;
}

.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 20px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Footer Section */
.site-footer {
    background-color: #0c1012;
    padding-top: 80px;
    padding-bottom: 40px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 30px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.footer-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-newsletter-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.footer-newsletter-card:hover {
    border-color: rgba(36, 205, 213, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.footer-social-link {
    width: 42px;
    height: 42px;
    background: rgba(36, 205, 213, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(36, 205, 213, 0.3);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
}

#getInTouchInfo .d-flex {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

#getInTouchInfo .d-flex:hover {
    transform: translateX(5px);
}

#getInTouchInfo i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

#getInTouchInfo span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.text-primary-gradient {
    color: var(--primary-color);
    font-weight: 600;
}

/* Custom FAQ Accordion */
.custom-faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-item:hover {
    border-color: rgba(36, 205, 213, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.custom-faq-accordion .accordion-button {
    background: transparent !important;
    color: #fff !important;
    padding: 25px 30px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: none !important;
    border: none !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
}

.faq-number {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    min-width: 40px;
    display: inline-block;
}

.custom-faq-accordion .accordion-body {
    padding: 10px 30px 30px 70px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-faq-accordion .accordion-button::after {
    filter: invert(1);
    background-size: 1.25rem;
}

/* Mini Slider / Hero Banner for Sub-pages */
.sldr-mini {
    background: linear-gradient(rgba(10, 14, 20, 0.82), rgba(10, 14, 20, 0.88)), url(../images/banner.webp) no-repeat center center/cover;
    min-height: 25vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sldr-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(36, 205, 213, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Homepage Hero Slider */
.sldr {
    background: linear-gradient(rgba(10, 14, 20, 0.75), rgba(10, 14, 20, 0.85)), url(../images/homepage.webp) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sldr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(36, 205, 213, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Premium About Us Styles */
.highlight-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(36, 205, 213, 0.3);
    box-shadow: 0 20px 40px rgba(36, 205, 213, 0.1);
}

.cta-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(36, 205, 213, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 205, 213, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.contact-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.course-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

.course-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}
