.elementor-291 .elementor-element.elementor-element-f435f77{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-9926d1f *//* Footer Section - Blue Gradient Design */

.footer-section {
    position: relative;
    min-height: 500px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

/* Horizontal Lines at Top */
.footer-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
}

.line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(96, 165, 250, 0.9) 50%, 
        rgba(59, 130, 246, 0.8) 100%
    );
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Background with Gradient */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #000000 0%,
        #1e293b 10%,
        #334155 25%,
        #3b82f6 50%,
        #60a5fa 75%,
        #93c5fd 100%
    );
}

/* Main Container */
.footer-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 120px 60px 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    align-items: start;
}

/* Left Side */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Logo and Brand Section */
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 8px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-image {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.footer-title {
    flex: 1;
}

.main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.title-highlight {
    color: rgba(255, 255, 255, 0.6);
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 16px;
    font-style: italic;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.subtitle-text {
    line-height: 1;
    font-weight: 500;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    position: relative;
}

.profile-image {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* CTA Button */
.footer-cta {
    margin-top: 16px;
}

.start-learning-btn {
    background: rgba(0, 0, 0, 0.85);
    border: none;
    border-radius: 30px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.start-learning-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

/* Navigation */
.footer-navigation {
    margin-top: 8px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 4px;
}

/* Address */
.footer-address {
    margin-top: 8px;
}

.address-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Right Side */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    text-align: right;
}

/* Social Media */
.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.socials-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-transform: lowercase;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
}

/* Copyright */
.footer-copyright {
    margin-top: 16px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

/* Contact Info */
.footer-contact {
    margin-top: 16px;
}

.contact-heading {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    display: inline-block;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: absolute;
    bottom: 80px;
    right: 60px;
    z-index: 20;
}

.scroll-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.85);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        gap: 60px;
        padding: 100px 40px 70px 40px;
    }
    
    .main-title {
        font-size: 2.6rem;
    }
    
    .footer-lines {
        gap: 6px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 30px 60px 30px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-right {
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .subtitle {
        font-size: 1.3rem;
        gap: 14px;
    }
    
    .profile-avatar {
        width: 70px;
        height: 70px;
    }
    
    .footer-logo-image {
        width: 230px;
        height: 230px;
        margin-top: 20px;
    }
    
    .nav-list {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 60px;
        right: 30px;
    }
    
    .footer-lines {
        gap: 5px;
        padding: 15px 0;
    }
    
    .line {
        height: 2px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 70px 20px 50px 20px;
        gap: 40px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        gap: 12px;
    }
    
    .nav-list {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .footer-brand {
        gap: 12px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
    }
    
    .footer-logo-image {
        width: 220px;
        height: 220px;
        margin-top: 20px;
    }
    
    .scroll-btn {
        width: 50px;
        height: 50px;
    }
    
    .scroll-to-top {
        bottom: 50px;
        right: 20px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .footer-lines {
        gap: 4px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 60px 15px 40px 15px;
        gap: 32px;
    }
    
    .main-title {
        font-size: 1.9rem;
    }
    
    .subtitle {
        flex-direction: column;
        gap: 12px;
        font-size: 1.1rem;
    }
    
    .profile-avatar {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-image {
        width: 150px;
        height: 150px;
        margin-top: 16px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-separator {
        display: none;
    }
    
    .start-learning-btn {
        padding: 14px 28px;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-lines {
        gap: 3px;
        padding: 10px 0;
    }
    
    .line {
        height: 2px;
    }
}/* End custom CSS */