/* Helvetica Neue Font Declarations */
@font-face {
    font-family: 'Helvetica Neue';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica Neue'), url('./font/Helvetica.woff') format('woff');
}

@font-face {
    font-family: 'Helvetica Neue';
    font-style: italic;
    font-weight: normal;
    src: local('Helvetica Neue Oblique'), url('./font/Helvetica-Oblique.woff') format('woff');
}

@font-face {
    font-family: 'Helvetica Neue';
    font-style: normal;
    font-weight: 300;
    src: local('Helvetica Neue Light'), url('./font/helvetica-light-587ebe5a59211.woff') format('woff');
}

@font-face {
    font-family: 'Helvetica Neue';
    font-style: normal;
    font-weight: bold;
    src: local('Helvetica Neue Bold'), url('./font/Helvetica-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Helvetica Neue';
    font-style: italic;
    font-weight: bold;
    src: local('Helvetica Neue Bold Oblique'), url('./font/Helvetica-BoldOblique.woff') format('woff');
}

@font-face {
    font-family: 'Helvetica Neue Condensed';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica Neue Condensed'), url('./font/helvetica-compressed-5871d14b6903a.woff') format('woff');
}

@font-face {
    font-family: 'Helvetica Neue Rounded';
    font-style: normal;
    font-weight: bold;
    src: local('Helvetica Neue Rounded'), url('./font/helvetica-rounded-bold-5871d05ead8de.woff') format('woff');
}

a{
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* CSS Custom Properties for better maintainability */
:root {
    --primary-gradient: linear-gradient(90deg, rgb(53, 218, 25) 0%, rgb(28, 116, 13) 100%);
    --overlay-color: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Helvetica Neue', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header styles (simplified for demo) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    position: relative;
}

.logo-img {
    width: 150px;
    height: 90px;
    object-fit: cover;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-login {
    display: block;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(112px); /* Account for header height (72px logo + 40px padding) */
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    margin: 0 20px;
}

.mobile-nav-menu .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
    color: #000!important;
}

.mobile-nav.active .mobile-nav-menu .nav-link {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav.active .mobile-nav-menu .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-menu .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-menu .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-menu .nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-menu .nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-menu .nav-link:hover {
    color: #2ecc40;
    transform: translateX(10px);
}

.mobile-login {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.35s;
    margin: 0 20px;
}

.mobile-nav.active .mobile-login {
    transform: translateY(0);
    opacity: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #fff!important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-link:hover{
    color: #2ecc40 !important;
}

.nav-link.active,
.nav-link:hover {
    color: #2ecc40;
}

.register-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.login-btn {
    background: transparent;
    border: 2px solid #2ecc40;
    border-radius: 10px;
    color: #2ecc40;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #2ecc40;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 64, 0.3);
}

/* IMPROVED HERO SECTION WITH BETTER BACKGROUND IMAGE HANDLING */
.hero {
    /* Modern approach: Multiple background layers */
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
        url('./images/bg.jpg');
    
    /* Optimal background properties */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates parallax effect */
    padding-top: 120px;
    /* Modern viewport units */
    min-height: 100dvh;    
    /* Layout properties */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Ensure content is readable */
    color: white;
}



/* Responsive background images */
.hero-responsive {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Mobile-first approach */
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
        url('./images/bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Tablet */
@media (min-width: 768px) {
    .hero-responsive {
        background-image: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
            url('./images/bg.jpg');
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-responsive {
        background-image: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
            url('./images/bg.jpg');
    }
}

/* Large screens */
@media (min-width: 1440px) {
    .hero-responsive {
        background-image: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
            url('./images/bg.jpg');
    }
}

/* hero section styling */

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-left{
    width: 100%;
}

.hero-right{
    width: 100%;
}

.hero-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: clamp(0.7rem, 1vw, 1.5rem);
    line-height: 24px;
    text-align: left;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 6px 18px 20px;
    border-radius: 30px 30px 30px 30px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.cta-button i{
    background-color: #fff;
    padding: 12px 15px 12px 15px;
    color: pink;
    margin-left: 14px;
    border-radius: 25px 25px 25px 25px;

}

/* services section styling */

.services-section {
    padding: 100px 0;
    /* background-image: url('./images/background.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    visibility: visible;
    width: 100%;
    position: relative;
}

.services-title {
    text-align: center;
    font-size: 45px;
    font-family: "Helvetica Neue Rounded", "Helvetica Neue", sans-serif;
    margin-bottom: 60px;
    color: #fff;
    font-weight: 700;
    text-shadow: 9px -4px 8px rgba(11, 12, 6, 0.9);
    background: linear-gradient(90deg, rgb(61 1 45) 0%, rgb(142 21 87) 100%);
    padding: 15px;
    border-radius: 15px;
}

.course-icon img{
    width: 65px;
}

.service-inner-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px; 
    max-height: none;
}

/* Combined styles for both service cards */
.service-left,
.service-right {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-left img,
.service-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Enhanced drop shadow */
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

/* Hover effects */
.service-left:hover img,
.service-right:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

.service-left a,
.service-right a {
    display: block;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 35px;
}

/* Optional: Add overlay effect on hover */
.service-left a::before,
.service-right a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 35px;
}

.service-left:hover a::before,
.service-right:hover a::before {
    opacity: 1;
}


/* course section  */

.course-section {
    padding: 80px 0;
    min-height: 100vh;
}

.course-inner-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.course-inner-section-left {
    flex: 1;
    max-width: 500px;
}

.course-tag {
    color: #2c5f5f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.course-title {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: 35px;
    font-weight: 650;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
}

.course-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}



.course-inner-section-right {
    flex: 1;
    max-width: 600px;
}

.course-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.course-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-image: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
    url('./images/bg.jpg');
    color: #fff;
}

.course-card:hover h3,
.course-card:hover p,
.course-card:hover .cta-button-course {
    color: #fff !important;
}

.course-card:hover .course-icon img {
    filter: brightness(1.3) contrast(1.1);
    transition: filter 0.3s ease;
}

.course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.course-card:nth-child(1) .course-icon {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #8e2de2;
}

.course-card:nth-child(2) .course-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2196f3;
}

.course-card:nth-child(3) .course-icon {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #ff6b35;
}

.course-card:nth-child(4) .course-icon {
    background: linear-gradient(135deg, #c3cfe2 0%, #c3cfe2 100%);
    color: #667eea;
}

.course-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.course-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
}
.course-card .read-more-link {
    color: #2c5f5f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.course-card .read-more-link:hover {
    color: #1e4444;
}

.cta-button-course{
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px 8px 12px;
    border-radius: 30px 30px 30px 30px;
    text-decoration: none;
}

.cta-button-course:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.cta-button-course i{
    background-color: #fff;
    padding: 5px 8px 5px 8px;
    color: pink;
    margin-left: 1px;
    border-radius: 25px 25px 25px 25px;
    font-size:14px;

}

/* why choose us section  */
.whychoose{
    padding: 100px 0 0 0;
}
.whychosemain{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whychoose-left{
    width: 100%;
}

.whychoose-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whychoose-right{
    width: 100%;
}

/* Alternative method using ::before pseudo-element for better control */
.whychoose {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.whychoose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
    
    /* Add animation */
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.whychoose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

/* Why Choose Us Section Styling */
.whychosemain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto;
    padding: 0 20px;
}

.whychoose-left {
    flex: 1;
    max-width: 500px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    /* overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

.image-container img {
    width: 100%;
    height: 600px;
    display: block;
    transition: transform 0.3s ease;
    overflow: inherit;
    transform: translateX(-70px);

}

/* .image-container:hover img {
    transform: scale(1);
} */

.whychoose-right {
    flex: 1;
    max-width: 600px;
}

.whychoose-content {
    color: white;
    z-index: 1;
    position: relative;
}

.h3 {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.elementor-widget-container {
    margin-top: 30px;
}

.elementor-icon-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.elementor-icon-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.elementor-icon-list-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.elementor-icon-list-icon {
    flex-shrink: 0;
}

.elementor-icon-list-icon i {
    background: linear-gradient(135deg, #2ecc40 0%, #27ae60 100%);
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.elementor-icon-list-item:hover .elementor-icon-list-icon i {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.elementor-icon-list-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

/* Alternative shadow styles you can try */
.shadow-soft {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.shadow-colored {
    filter: drop-shadow(0 8px 25px rgba(74, 144, 226, 0.3));
}

.shadow-dramatic {
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.3));
}

/* Demo placeholder images */
.demo-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.servicetext{
    padding: 1.2rem;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-top: 15px;
    text-align: justify;
}


/* Performance optimization classes */
.hero-optimized {
    /* Use will-change for animations */
    will-change: transform;
    
    /* Create stacking context */
    transform: translateZ(0);
    
    /* Smooth rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading state */
.hero-loading {
    background-color: #1a1a2e;
    background-image: linear-gradient(45deg, #1a1a2e 25%, #16213e 25%, #16213e 50%, #1a1a2e 50%, #1a1a2e 75%, #16213e 75%, #16213e);
    background-size: 40px 40px;
    animation: loading 2s linear infinite;
}

@keyframes loading {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}


/* FAQ and Need Help Section Styling */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faqmain {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Left Side */
.faq-left {
    flex: 1;
    max-width: 600px;
}

.faq-tag{
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.faq-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-title {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #2ecc40;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #2ecc40;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    padding: 0 25px 20px;
    margin: 0;
}

/* Need Help Right Side */
.need-help {
    flex: 1;
    max-width: 500px;
}

.help-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-title {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}


.help-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2ecc40;
    background: white;
    box-shadow: 0 0 0 3px rgba(46, 204, 64, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 300;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, #2ecc40 0%, #27ae60 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 64, 0.3);
}

.submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}


/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .hero-advanced::before {
        animation: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
}

/* about section  */

.aboutus {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: white;
}

.aboutus:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%),
    url('./images/bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
    animation: slowZoom 20s ease-in-out infinite alternate;
    opacity: 0;
}

.aboutus__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.aboutus__left {
    padding-right: 40px;
    width: 100%;
    font-size: 0.9rem;
}
.aboutus__right , .aboutus__image-container{
    width: 100%;
    font-size:0.91rem;
}
.aboutus__right-content{
    width: 100%;
}

.aboutus__tag {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.aboutus__left-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aboutus__left-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-weight: 400;
    text-align: justify;
}



/* CTA Button */
.aboutus__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(53, 218, 25, 0.3);
}

.aboutus__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(53, 218, 25, 0.4);
    color: white;
}

.aboutus__cta i {
    transition: transform 0.3s ease;
}

.aboutus__cta:hover i {
    transform: translateX(5px);
}

/* Right Side - Images */
.aboutus__right {
    position: relative;
}

.aboutus__image-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    /* overflow: hidden; */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.aboutus__main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* Contact Section Styling */
.contact {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./images/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: -2;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}


/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: #2ecc40;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc40, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 204, 64, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #27ae60, #2ecc40);
    box-shadow: 0 12px 35px rgba(46, 204, 64, 0.4);
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-card h3 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.contact-card p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 250px;
    gap: 60px;
    align-items: start;
}

/* Map Section */
.contact-map {
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */



/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero::before {
        background: rgba(0, 0, 0, 0.8);
    }
}
/* Responsive design */

@media (max-width: 1024px) {
    .course-inner-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .course-inner-section-left {
        max-width: 100%;
    }

    .course-title {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .aboutus__inner {
        gap: 60px;
    }
    
    .aboutus__left {
        padding-right: 20px;
    }

}

@media (max-width: 1024px) {
    
    .contact-map iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .aboutus__inner{
        flex-direction: column;
    }
    .aboutus {
        padding: 80px 0;
    }
    
    .aboutus__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .aboutus__left {
        padding-right: 0;
        order: 2;
    }
    
    .aboutus__right {
        order: 1;
    }
    
    .aboutus__left-title {
        font-size: 2.5rem;
    }
        
    .feature-item {
        padding: 15px;
    }
    
    .aboutus__main-image {
        height: 180px;
    }
    
    .aboutus__secondary-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
        
    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .faqmain {
        flex-direction: column;
        gap: 40px;
    }
    
    .faq-left,
    .need-help {
        max-width: 100%;
        width: 100%;
    }
    
    .faq-content,
    .help-content {
        padding: 30px 25px;
    }
    
    .faq-title,
    .help-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .course-section {
        padding: 60px 0;
    }

    .course-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .course-title {
        font-size: 28px;
    }

    .course-inner-section {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .whychosemain {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .whychoose-left,
    .whychoose-right {
        max-width: 100%;
    }
    
    .image-container img {
        height: 400px;
        transform: translateX(0);
        border-radius: 15px;
    }
    
    .h3 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 30px;
        line-height: 1.7;
    }
    
    .elementor-icon-list-item {
        padding: 12px 15px;
        margin-bottom: 10px;
    }
    
    .elementor-icon-list-text {
        font-size: 1rem;
    }
    
    .elementor-icon-list-icon i {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .service-inner-cards {
        gap: 25px;
    }
    
    .services-title {
        font-size: 38px;
    }
    
    /* Why Choose Us Section - Tablet */
    .whychosemain {
        gap: 40px;
        padding: 0 30px;
    }
    
    .whychoose-left {
        max-width: 450px;
    }
    
    .image-container img {
        height: 500px;
        transform: translateX(-50px);
    }
    
    .whychoose-right {
        max-width: 500px;
    }
    
    .h3 {
        font-size: clamp(2.2rem, 4vw, 3rem);
    }
    
    .p {
        font-size: clamp(1rem, 1.3vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .service-inner-cards {
        flex-direction: column;
        gap: 30px;
        max-height: none;
        padding: 0 20px;
    }

    .service-left,
    .service-right {
        height: auto;
        min-height: 350px;
    }

    .demo-image {
        height: 250px;
    }

    .servicetext {
        padding: 1.5rem;
        font-size: 16px;
        line-height: 1.6;
        margin-top: 15px;
    }

    .services-section {
        padding: 60px 0;
        display: block;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 28px;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .service-inner-cards {
        padding: 0 15px;
        gap: 25px;
    }

    .service-left,
    .service-right {
        min-height: 300px;
    }

    .demo-image {
        height: 200px;
    }

    .servicetext {
        padding: 1.2rem;
        font-size: 15px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .service-left img,
    .service-right img {
        border-radius: 15px;
    }

    .service-left a,
    .service-right a {
        border-radius: 15px;
    }

    .service-left a::before,
    .service-right a::before {
        border-radius: 15px;
    }

    .services-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
        
    .contact-map iframe {
        height: 250px;
    }
}
@media (max-width: 480px) {
    .aboutus {
        padding: 60px 0;
    }
    
    .aboutus__left-title {
        font-size: 2rem;
    }
    
    .aboutus__left-text {
        font-size: 1rem;
    }
            
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .aboutus__cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .faq {
        padding: 60px 0;
    }
    
    .faqmain {
        gap: 30px;
        padding: 0 15px;
    }
    
    .faq-content,
    .help-content {
        padding: 25px 20px;
    }
    
    .faq-title,
    .help-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
        
    .form-group {
        gap: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .whychosemain {
        gap: 30px;
        padding: 0 15px;
    }
    
    .image-container img {
        height: 300px;
        border-radius: 12px;
    }
    
    .h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .p {
        font-size: 0.95rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .elementor-icon-list-items {
        gap: 15px;
    }
    
    .elementor-icon-list-item {
        padding: 10px 12px;
        margin-bottom: 8px;
    }
    
    .elementor-icon-list-icon i {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .elementor-icon-list-text {
        font-size: 0.95rem;
    }
}

/* Responsive Design */

@media (max-width: 320px) {
    .whychosemain {
        gap: 25px;
        padding: 0 10px;
    }
    
    .image-container img {
        height: 250px;
        border-radius: 10px;
    }
    
    .h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .elementor-icon-list-items {
        gap: 12px;
    }
    
    .elementor-icon-list-item {
        padding: 8px 10px;
        margin-bottom: 6px;
    }
    
    .elementor-icon-list-icon i {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .elementor-icon-list-text {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }
    
    .logo-img {
        width: 80px;
        height: 55px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .desktop-nav,
    .desktop-login {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-nav.active {
        transform: translateY(95px); /* Adjusted for smaller header height */
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 10px 15px;
    }
    
    .logo-img {
        width: 70px;
        height: 48px;
    }
    
    .mobile-nav.active {
        transform: translateY(78px); /* Adjusted for smaller header height */
    }
    
    .mobile-nav-menu {
        margin: 0 15px;
    }
    
    .mobile-login {
        margin: 0 15px;
    }
    
    .mobile-nav-menu .nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: 90dvh;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-image {
        max-width: 80%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.cta-wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 40vh;
}

.cta-container {
    background: linear-gradient(140deg, #4a5eff 0%, #e91e63 100%);
    border-radius: 30px;
    padding: 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 25px -3px 56px rgba(28, 22, 18, 0.9);
z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.cta-action{
    transform: translateY(50px);
}

.cta-button {
    background-color: #ffffff;
    color: #fff;
    padding: 5px 5px 5px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-icon {
    background-color: #333;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/* Footer Section */
.footer-main {
    background-color: #1a1a2e;
    padding: 80px 20px 40px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    padding-top: 90px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.footer-column-divider {
    width: 40px;
    height: 2px;
    background-color: #e91e63;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 52px;
    width: auto;
}

.footer-description {
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #e91e63;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #fff;
}

.footer-links li:before {
    content: "•";
    color: #fff;
    margin-right: 10px;
    font-size: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-size: 14px;
}

.contact-list li svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    color: #fff;
}

/* Copyright Section */
.copyright-section {
    background: linear-gradient(90deg, rgb(61 1 45) 0%, rgb(142 21 87) 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 0 20px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-25px);
    z-index: 2;
    position: relative;
}

.copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-text {
    color: #fff;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .copyright-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links li {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }
}

/* Enhanced Mobile Responsive Styles for Footer */
@media (max-width: 480px) {
    .cta-wrapper {
        padding: 20px 15px;
        height: auto;
        min-height: 36vh;
    }

    .cta-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .cta-action {
    transform: translateY(25px);
    }
    .cta-content h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 4px 4px 4px 25px;
    }

    .cta-button-icon {
        width: 35px;
        height: 35px;
        margin-left: 12px;
    }

    .footer-main {
        padding: 60px 15px 30px;
        margin-top: -30px;
        padding-top: 70px;
    }

    .footer-container {
        gap: 25px;
    }

    .footer-column h5 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-column-divider {
        width: 30px;
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-links li {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .contact-list li {
        margin-bottom: 12px;
        font-size: 13px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-list li svg {
        width: 18px;
        height: 18px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .copyright-section {
        padding: 15px;
        margin: 0 15px 15px;
        transform: translateY(-20px);
        position: relative;
        z-index: 2;
    }

    .copyright-text {
        font-size: 12px;
    }

    .legal-links {
        gap: 20px;
    }

    .legal-links a {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .cta-content h2 {
        font-size: 22px;
    }

    .cta-container {
        padding: 25px 15px;
    }

    .footer-main {
        padding: 50px 10px 25px;
        padding-top: 60px;
    }

    .footer-container {
        gap: 20px;
    }

    .footer-column h5 {
        font-size: 14px;
    }

    .footer-description {
        font-size: 12px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .footer-links li {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .contact-list li {
        font-size: 12px;
    }

    .contact-list li svg {
        width: 16px;
        height: 16px;
    }

    .copyright-text {
        font-size: 11px;
    }

    .legal-links a {
        font-size: 11px;
    }
}





.logo-icon{
    width: 150px;
    height: 150px;
}
.logo-icon img {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #0013FF 0%, #FF007F 100%); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    /* box-shadow: 0 4px 15px rgba(0, 19, 255, 0.3); */
}

/* .paddingtp{
    padding: 0 60px
}

.logo-text {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FF007F;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.footer-section {
    position: relative;
    background: #1A0033;
    color: white;
    padding: 120px 0 60px;
    overflow: visible;
}

.footer-banner {
   
    width: 90%;
    background: linear-gradient(90deg, #0013FF 0%, #FF007F 100%);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0, 19, 255, 0.3);
    z-index: 10;

}
.paddingBlock{
padding: 100px 0;

}
.footer-banner-content {
    flex: 1;
}

.footer-banner h2 {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-banner p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-banner-cta {
    background: white;
    color: #333;
    border: 2px solid white;
    border-radius: 50px;
    padding: 15px 30px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-banner-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-banner-cta i {
    background: #333;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-banner-cta:hover i {
    background: white;
    color: #333;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 85px 50px 30px 50px;
    background: #151136;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    margin: 0 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-family: 'Helvetica Neue Rounded', 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FF007F;
    border-radius: 1px;
}

.footer-description {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    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: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FF007F;
    border-color: #FF007F;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #FF007F;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: scale(1.2);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF007F;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FF007F;
}

@media (max-width: 1024px) {
    .footer-banner {
        width: 95%;
        padding: 30px 40px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 100px 0 40px;
    }
    
    .footer-banner {
        top: -40px;
        width: 95%;
        padding: 25px 30px;
    }
    
    .footer-banner h2 {
        font-size: 1.5rem;
    }
    
    .footer-banner p {
        font-size: 1rem;
    }
    
    .footer-banner-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-banner {
        top: -30px;
        padding: 20px 25px;
    }
    
    .footer-banner h2 {
        font-size: 1.3rem;
    }
    
    .footer-banner p {
        font-size: 0.9rem;
    }
    
    .footer-banner-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footer-banner-cta i {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .footer-main {
        gap: 20px;
        margin-top: 50px;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-item i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
} */