/* Base Styles */
:root {
    --primary-color: #4b30ff;
    --secondary-color: #ff2f8e;
    --dark-bg: #0d0b26;
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), #372687);
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
    opacity: 0.5;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary-color), #c9356e);
    bottom: -250px;
    left: -200px;
    animation: float 18s ease-in-out infinite reverse;
    opacity: 0.5;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00e6cc, #00a6e6);
    top: 40%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    50% {
        transform: translate(40px, 20px) scale(1.1);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes floatMobile {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    50% {
        transform: translate(10px, 10px) scale(1.05);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* Glass Morphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.45);
}

/* Navigation */
header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(13, 11, 38, 0.8);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    position: relative;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1.50; 
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-content h1.smaller-text {
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
}

.hero-content h1:nth-child(2) {
    margin-bottom: 0.2rem;
}

.hero-content h1:last-of-type {
    margin-bottom: 2.5rem;
}

.hero-content h1 span:not(.changing-text) {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 30px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 48, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(75, 48, 255, 0.7);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.sphere-img {
    max-width: 100%;
    height: auto;
    animation: float 15s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(75, 48, 255, 0.5));
}

/* Commented out glass-sphere styles as they are no longer used
.glass-sphere {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(75, 48, 255, 0.3), rgba(255, 47, 142, 0.3));
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(75, 48, 255, 0.5), inset 0 0 40px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    animation: rotate 20s linear infinite;
}

.glass-sphere::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3), transparent 50%);
    animation: shine 10s linear infinite;
}
*/

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-15%, -15%);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Changing text animation */
.changing-text {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.6s ease, opacity 0.6s ease;
    text-align: left;
    font-size: 4.8rem;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Courses/Workshops Section */
.courses {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
}

.courses .cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.courses .glass-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.courses .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.courses .card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    width: 100%;
}

.courses .card-icon {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.courses h3 {
    margin: 0;
    font-size: 1.5rem;
    white-space: normal;
    line-height: 1.3;
    flex: 1;
}

.card-icon {
    margin-bottom: 1.5rem;
}

/* Adding a new class for services section card titles */
.services .glass-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services .glass-card .card-icon {
    display: flex;
    align-items: flex-start;
    padding-top: 0.2rem;
    margin-bottom: 1rem;
}

.services .glass-card h3 {
    display: inline-block;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    margin-top: -0.2rem;
    font-size: 1.5rem;
    white-space: normal;
    line-height: 1.2;
    color: var(--text-light);
}

/* Special handling for the Business Automation card */
.services .glass-card:first-child .card-icon {
    align-items: flex-start;
    padding-top: 0.2rem;
}

.services .glass-card:first-child h3 {
    white-space: normal;
    line-height: 1.2;
    margin-top: -0.2rem;
}

.services .glass-card p {
    flex-grow: 1;
}

.icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products .cards-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.products .glass-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.products .glass-card .card-content {
    flex: 1;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.products .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.products .glass-card .card-icon {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.products .glass-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-light);
    text-align: left;
}

.products .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.products .product-image {
    flex: 0.7;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-image {
    margin: 1rem 0;
    text-align: center;
}

.product-img {
    max-width: 85%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.products .glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-tagline {
    margin: 0.5rem auto 1.5rem;
    max-width: 700px;
}

.about-tagline p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e0ff;
    line-height: 1.5;
}

.about-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.about-mission {
    margin-bottom: 3rem;
    text-align: center;
}

.about-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-mission p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.8rem;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--card-shadow);
}

@keyframes gradientBorder {
    0% {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
        background-size: 200% 200%;
        background-position: 0% 50%;
    }
    50% {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
        background-size: 200% 200%;
        background-position: 100% 50%;
    }
    100% {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
        background-size: 200% 200%;
        background-position: 0% 50%;
    }
}

.highlight-item::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    animation: gradientBorder 6s ease infinite;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: left;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* Contact Form */
.contact {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: rgba(10, 9, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 6rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h1.smaller-text {
        font-size: 2.2rem;
    }
    
    .sphere-img {
        max-width: 80%;
        margin-top: 2rem;
    }
    
    .changing-text {
        font-size: 3.4rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(13, 11, 38, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 150;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-content h1.smaller-text {
        font-size: 1.8rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        margin-bottom: 1.5rem;
    }
    
    .changing-text {
        font-size: 3.2rem;
    }
    
    .products .glass-card {
        flex-direction: column;
        text-align: left;
        padding: 1.5rem;
    }
    
    .products .glass-card .card-content {
        align-items: flex-start;
        width: 100%;
        padding-left: 0.5rem;
    }
    
    .products .card-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
        justify-content: flex-start;
        width: 100%;
    }
    
    .products .glass-card .card-icon {
        margin: 0;
        margin-right: 1rem;
    }
    
    .products .glass-card h3 {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
        color: var(--text-light);
    }
    
    .products .glass-card p {
        text-align: left;
        margin-top: 0.5rem;
    }
    
    .hero {
        padding-top: 7rem;
        gap: 1rem;
        min-height: auto;
        padding-bottom: 3rem;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    header {
        padding: 1rem 0;
    }
    
    .hero .glass-card {
        padding: 1.2rem;
    }
    
    .hero-image {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .sphere-img {
        max-width: 80%;
        margin: 0 auto;
        animation: floatMobile 15s ease-in-out infinite;
    }
    
    .services .glass-card .card-icon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .services .glass-card h3 {
        font-size: 1.3rem;
        margin-left: 1rem;
    }
    
    .services .glass-card:first-child .card-icon {
        padding-top: 0.15rem;
    }
    
    .services .glass-card:first-child h3 {
        line-height: 1.2;
        margin-top: -0.15rem;
    }
    
    .products .glass-card h3 {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
        color: var(--text-light);
    }
    
    .products .card-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .products .glass-card p {
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .products .product-image {
        margin-top: 0.5rem;
        margin-left: 0;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }
    
    .product-img {
        max-width: 90%;
        margin-left: 0;
    }
    
    footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.6rem;
    }
    
    .highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .hero-content h1:last-of-type {
        margin-bottom: 2rem;
    }
    
    .courses .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .courses .card-header {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .courses .glass-card .card-icon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 0;
        margin-right: 0.8rem;
        flex-shrink: 0;
    }
    
    .courses h3 {
        font-size: 1.3rem;
        margin: 0;
        white-space: normal;
        line-height: 1.3;
        flex: 1;
    }
}

@media (max-width: 576px) {
    nav {
        padding: 0.5rem 1.7rem;
        align-items: center;
        height: 60px;
    }
    
    .logo {
        padding: 0;
        display: flex;
        align-items: center;
        padding-top: 0.5rem;
    }
    
    header .logo img {
        height: 42px;
        width: auto;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-content h1.smaller-text {
        font-size: 1.5rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .changing-text {
        font-size: 2.9rem;
    }
    
    .sphere-img {
        max-width: 70%;
        margin: 0 auto;
        animation: floatMobile 15s ease-in-out infinite;
    }
    
    .hero {
        padding-top: 6rem;
        gap: 0.8rem;
        min-height: auto;
        padding-bottom: 2rem;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    header {
        padding: 0.4rem 0;
    }
    
    .hero .glass-card {
        padding: 1.2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-button {
        align-self: flex-start;
    }
    
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .services .glass-card {
        height: auto;
    }
    
    .services .glass-card .card-icon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .services .glass-card h3 {
        font-size: 1.2rem;
        margin-left: 0.8rem;
        white-space: normal;
    }
    
    .services .glass-card:first-child .card-icon {
        padding-top: 0.1rem;
    }
    
    .services .glass-card:first-child h3 {
        line-height: 1.2;
        margin-top: -0.1rem;
    }
    
    .products .card-header {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    
    .products .glass-card .card-icon {
        margin: 0;
        margin-right: 0.8rem;
    }
    
    .products .glass-card h3 {
        font-size: 1.3rem;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
        color: var(--text-light);
    }
    
    .products .glass-card p {
        text-align: left;
        margin-top: 0.5rem;
    }
    
    .products .glass-card {
        padding: 1.2rem;
    }
    
    .products .glass-card .card-content {
        padding-left: 0.3rem;
    }
    
    .products .product-image {
        margin-top: 0.4rem;
    }
    
    .product-img {
        max-width: 100%;
    }
    
    footer {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
        background: linear-gradient(to bottom, rgba(10, 9, 22, 0.7), rgba(18, 16, 38, 0.95));
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        position: relative;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-links::before,
    .footer-links::after {
        content: '';
        position: absolute;
        left: 30%;
        right: 30%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
    
    .footer-links::before {
        top: 0;
    }
    
    .footer-links::after {
        bottom: 0;
    }
    
    .footer-links a {
        padding: 0.5rem 0;
    }
    
    .logo {
        margin-bottom: 0.5rem;
        font-size: 1.4rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-subtitle {
        font-size: 1.4rem;
    }
    
    .about-mission p {
        font-size: 1.1rem;
    }
    
    .highlight-item h3 {
        font-size: 1.3rem;
    }
    
    .highlight-item {
        padding: 1.2rem;
    }
    
    .hero-content h1:last-of-type {
        margin-bottom: 1.8rem;
    }
    
    .courses .glass-card .card-icon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
    }
    
    .courses h3 {
        font-size: 1.2rem;
        margin-left: 0.2rem;
        white-space: normal;
        line-height: 1.3;
        flex: 1;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.7rem;
    height: 34px;
}

.language-switcher a {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.2rem 0.3rem;
    transition: all 0.2s ease;
    line-height: 1;
}

.language-switcher a.active {
    color: var(--secondary-color);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.2rem;
    font-size: 0.9rem;
}

/* Media queries for responsive language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        padding: 0.3rem 0.8rem;
        height: 38px;
    }
    
    .language-switcher a {
        font-size: 1rem;
        padding: 0.3rem 0.4rem;
    }
    
    .lang-divider {
        margin: 0 0.3rem;
    }
    
    /* Force the language switcher to always be at the bottom of the mobile menu */
    .nav-links.active .language-switcher {
        margin-top: 2rem;
    }
} 