
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
header {
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #EAE4D5, #B6B09F);
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
    box-sizing: border-box;
}


body {
    /* Remove padding-top: 70px */
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
    margin: 0;
    padding: 0;
    height: 100vh; /* Use viewport height */
    overflow-x: hidden; /* Prevent horizontal scroll */
}


.footer {
    margin-top: auto;
}

.header-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px; /* Add horizontal padding */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

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

.logo img {
    height: clamp(22px, 2vw, 50px);
    margin-left: 2%;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #192642;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #36018f;
}

.contact-btn {
    background: linear-gradient(131deg, #4700bfff, #aa62daff);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 38, 38, 0.3);
}

/* Hero section styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    min-height: 80vh;
    padding: 0 30px;
    padding-left: 35px;
    background-color: #f1f1f1;
    background-size: contain;
    height: 100%;
    padding-top: 100px;
    padding-right: 35px;

}

.hero-content {
    max-width: 550px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #2e3b4fff;
    margin-bottom: 20px;
    font-family: "Merienda", cursive;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.hero-heading span {
    background: linear-gradient(135deg, #f8b300, #c77000);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-family: "Merienda", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.hero-text {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.options::-webkit-scrollbar {
    display: none;
}

.option {
    padding: 5px 15px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #004eff;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    border-right: 1px solid #ddd;
    padding-right: 25px;
}

.option:last-child {
    border-right: none;
    padding-right: 15px;
}

.option:hover {
    color: #D32626;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.know-more-btn {
    background-color: transparent;
    border: 1px solid #D32626;
    color: #D32626;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.know-more-btn:hover {
    background-color: #D32626;
    color: white;
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s forwards 0.5s;
}

.circle-bg {
    width: 450px;
    height: 450px;
    background-image: url(circle.png);
    background-size: cover;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease;
    box-shadow: rgb(1 1 1 / 34%) 1px 11px 8px 4px, rgb(0 0 0 / 35%) 1px 11px 10px 1px;
}

.circle-bg:hover{
    transform: scale(1.1);
}
.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
    margin-left: 15px;
    position: relative;
}

.mobile-menu-btn .bar {
    width: 20px;
    height: 2px;
    background-color: #192642;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 99;
    transition: right 0.3s ease;
    padding: 40px 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #192642;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #D32626;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Ripple effect for buttons */
.contact-btn, .know-more-btn, .option {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: 90px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .options {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .circle-bg {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    nav {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .contact-btn#contactBtn {
        order: 2;
        margin-left: auto;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 3;
    }
    
    .hero-heading {
        font-size: 2.8rem;
    }

    .options {
        justify-content: center;
        gap: 10px;
    }
    
    .option {
        font-size: 13px;
        padding: 5px 10px;
        border-right: 1px solid #ddd;
        padding-right: 20px;
    }
    
    .option:last-child {
        border-right: none;
    }
    
    .circle-bg {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 0.90rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .circle-bg {
        width: 250px;
        height: 250px;
    }
    
    .options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        justify-content: center;
    }
    
    .option {
        font-size: 12px;
        padding: 5px 8px;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
        margin-bottom: 5px;
    }
    
    .option:nth-child(3) {
        grid-column: span 2;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .button {
         width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    

}
     



        /* About Us Section Styles */
        .about-section {
            flex-direction: column;
            text-align: center;
            padding: 80px 0;
            overflow: hidden;
            background: linear-gradient(179deg, #f1f1f1 10%, transparent 90%);
            align-items: center;
        }


        .about-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        .about-image-cluster {
            width: 50%;
            position: relative;
            height: 550px;
            background-image: url(aboutimage.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .about-text {
            width: 45%;
            padding: 20px;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #192642;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-text p {
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        @media screen and (max-width: 1024px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-container {
        gap: 30px;
    }
    
    .about-image-cluster {
        height: 450px;
        min-height: 350px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 50px 15px;
        text-align: center;
    }
    
    .about-container {
        flex-direction:column-reverse;
        gap: 30px;
    }
    
    .about-image-cluster {
        width: 100%;
        height: 300px;
        min-height: 250px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text {
        width: 100%;
        padding: 0 10px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .about-section {
        padding: 40px 10px;
    }
    
    .about-image-cluster {
        height: 250px;
        min-height: 200px;
    }
    
    .about-text h2 {
        font-size: 1.7rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* feature-section Styles */
 .feature-section {
           width: 100%;
            text-align: center;
            position: relative;
        }

        .features-title {
            font-size: 2.8rem;
            color: #2c283e;
            margin-bottom: 60px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .features-container {
            position: relative;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            padding: 80px 40px 60px;
            box-shadow: 0 20px 60px rgba(139, 69, 255, 0.15);
            overflow: hidden;
        }

        .features-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .features-wrapper {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 40px;
            padding: 0 20px;
        }

        .feature-card {
            min-width: 380px;
            background: white;
            border-radius: 30px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(139, 69, 255, 0.1);
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 60px rgba(139, 69, 255, 0.2);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #8b45ff, #d946ef, #f97316);
            border-radius: 30px 30px 0 0;
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 25px;
        }

        .feature-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b45ff 0%, #d946ef 50%, #f97316 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .feature-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .feature-avatar.placeholder {
            font-size: 1.8rem;
            color: white;
            font-weight: bold;
        }

        .feature-info h3 {
            font-size: 1.3rem;
            color: #2d2d2d;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            letter-spacing: 3px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .feature-description {
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1rem;
            font-weight: 400;
        }

        .feature-tag {
            display: inline-block;
            background: linear-gradient(135deg, #8b45ff, #d946ef);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(139, 69, 255, 0.3);
        }

        .navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 20px;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(139, 69, 255, 0.2);
            color: #8b45ff;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            font-weight: bold;
        }

        .nav-btn:hover {
            background: #8b45ff;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(139, 69, 255, 0.4);
        }

        .nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: scale(1);
            background: rgba(255, 255, 255, 0.5);
        }

        .indicators {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(139, 69, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .indicator.active {
            background: #8b45ff;
            transform: scale(1.3);
            box-shadow: 0 0 0 4px rgba(139, 69, 255, 0.2);
        }

        .swipe-hint {
            color: rgba(75, 85, 99, 0.8);
            font-size: 1rem;
            margin-top: 30px;
            font-weight: 500;
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* Floating decorative elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(139, 69, 255, 0.1), rgba(217, 70, 239, 0.1));
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 8%;
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 10%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .feature-card {
                min-width: 350px;
            }
            
            .features-container {
                padding: 60px 30px 50px;
            }
        }

        @media (max-width: 768px) {
            .features-title {
                font-size: 2.3rem;
                margin-bottom: 40px;
            }

            .features-container {
                padding: 50px 25px 40px;
                border-radius: 30px;
            }

            .feature-card {
                min-width: 320px;
                padding: 35px 25px;
            }

            .features-wrapper {
                gap: 30px;
                padding: 0 10px;
            }

            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .navigation {
                gap: 25px;
                margin-top: 40px;
            }
        }

        @media (max-width: 480px) {
            .features-title {
                font-size: 2rem;
            }

            .feature-card {
                min-width: 280px;
                padding: 30px 20px;
            }

            .features-container {
                padding: 40px 20px 35px;
                border-radius: 25px;
            }

            .features-section {
                padding: 10px;
            }

            .feature-avatar {
                width: 50px;
                height: 50px;
            }

            .feature-avatar.placeholder {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 769px) {
            .swipe-hint {
                display: none;
            }
        }



/* course-section Styles */

  .courses-section {
      padding: 100px 0;
      background: #1926427c;
      position: relative;
      width: 100%;
      margin-top: 70px;
    }

    .course-container{
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
    }

    .section-badge {
      display: inline-block;
      background: linear-gradient(135deg, #8b5cf6, #f59e0b);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title {
      font-size: 3.2rem;
      font-weight: 800;
      color: #1a202c;
      margin-bottom: 20px;
      background:#e2e8f0;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: 1.3rem;
      color: #cbd6e6;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .courses-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .course-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      padding: 40px;
      border-radius: 25px;
      background: linear-gradient(145deg, #f8fafc, #e2e8f0);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .course-row:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15);
    }

    .course-row:nth-child(even) {
      background: linear-gradient(145deg, #fef7ff, #f3e8ff);
    }

    .course-row:nth-child(even) .course-content {
      order: 2;
    }

    .course-row:nth-child(even) .course-image {
      order: 1;
    }

    .course-row::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #8b5cf6, #f59e0b, #10b981);
    }

    .course-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 300px;
      background: #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .course-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .course-image:hover img {
      transform: scale(1.1);
    }

    .course-content {
      padding: 20px 0;
    }

    .course-category {
      display: inline-block;
      background: rgba(139, 92, 246, 0.1);
      color: #8b5cf6;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .course-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .course-description {
      color: #4a5568;
      margin-bottom: 30px;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .course-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 35px;
    }

    .highlight-tag {
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: white;
      padding: 8px 16px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 500;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }

    .course-action {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .enroll-btn {
      background: linear-gradient(135deg, #8b5cf6, #a855f7);
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
      margin: 0 auto;
    }

    .enroll-btn:hover {
      background: linear-gradient(135deg, #7c3aed, #9333ea);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
    }

    .learn-more {
      color: #8b5cf6;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .learn-more:hover {
      color: #7c3aed;
      transform: translateX(5px);
    }

    .learn-more::after {
      content: '→';
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .learn-more:hover::after {
      transform: translateX(3px);
    }

    .features-section {
      margin-top: 100px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 80px 40px;
      border-radius: 30px;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .features-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

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

    @media (max-width: 1024px) {
      .course-row {
        grid-template-columns: 1fr;
      }

      .course-row:nth-child(even) .course-content,
      .course-row:nth-child(even) .course-image {
        order: initial;
      }
    }

    @media (max-width: 600px) {
      .section-title {
        font-size: 2.2rem;
      }

      .course-title {
        font-size: 1.6rem;
      }

      .course-description {
        font-size: 1rem;
      }

      .enroll-btn {
        padding: 12px 24px;
      }
    }
        
/* Contact Section Styles */
.contact-section {
    background-image: url('./contactusback.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.contact-section .container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-info p {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.contact-details {
    position: relative;
    z-index: 2;
}
.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.3;
}
.contact-section .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.contact-section .contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1rem;
}

.contact-form {
    padding: 50px 40px;
    background: white;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-form .submit-btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Queries */
@media (max-width: 575.98px) {
    .contact-section .container {
        padding: 10px;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        margin: 5px;
        border-radius: 15px;
        max-width: 100%;
    }
    
    .contact-info, .contact-form {
        padding: 25px 20px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section .contact-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        font-size: 1rem;
    }
    
    .contact-form input, 
    .contact-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .contact-form .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .contact-section .container {
        padding: 15px;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        margin: 10px;
        border-radius: 18px;
    }
    
    .contact-info, .contact-form {
        padding: 35px 30px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .contact-form .submit-btn {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .contact-section .container {
        padding: 20px;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    
    .contact-info, .contact-form {
        padding: 40px 35px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .contact-card {
        grid-template-columns: 1fr 1.3fr;
        max-width: 850px;
    }
    
    .contact-info {
        padding: 45px 35px;
    }
    
    .contact-form {
        padding: 45px 40px;
    }
}

@media (min-width: 1200px) {
    .contact-card {
        grid-template-columns: 1fr 1.5fr;
        max-width: 950px;
    }
}

@media (min-width: 1400px) {
    .contact-card {
        max-width: 1100px;
    }
    
    .contact-info h2 {
        font-size: 2.8rem;
    }
    
    .contact-info p {
        font-size: 1.2rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .contact-section .container {
        padding: 10px;
    }
    
    .contact-card {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
    }
    
    .contact-info, .contact-form {
        padding: 20px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .contact-info p {
        margin-bottom: 20px;
    }
    
    .contact-section .contact-item {
        margin-bottom: 15px;
        padding: 10px;
    }
}

/* Footer Styles */
.footer {
            background: linear-gradient(135deg, #1a1f27, #0d1117);
            color: #f0f0f0;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
            overflow: hidden;
            width: 100%;
           padding-bottom: 0px;
            margin-top: auto;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
            
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 3rem;
            margin: 0 auto;
            padding: 4rem 2rem 3rem;
            align-items: start;
           
        }
      

        /* Brand Section */
        .footer-brand {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .zealous-logo {
            max-width: 180px;
            height: auto;
            filter: brightness(0) invert(1);
            transition: transform 0.3s ease;
        }

        .zealous-logo:hover {
            transform: scale(1.05);
        }

        .footer-tagline {
            font-size: 1rem;
            line-height: 1.7;
            color: #d1d1d1;
            margin-bottom: 1.5rem;
        }

        /* Quick Links Section */
        .footer-links {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .footer-links h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            display: inline-block;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -8px;
            left: 0;
            background: linear-gradient(90deg, #8b45ff, #d946ef, #f97316);
            border-radius: 3px;
        }

        .quick-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .footer-link {
            color: #d1d1d1;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            text-transform: capitalize;
        }

        .footer-link:hover {
            color: white;
            transform: translateX(5px);
        }

      .footer-links h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #8b45ff, #d946ef, #f97316);
            border-radius: 3px;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        /* Contact Section */
        .footer-contact {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .footer-contact h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            display: inline-block;
        }
 .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #8b45ff, #d946ef, #f97316);
            border-radius: 3px;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-icon {
            min-width: 24px;
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: #d3d9df;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details h4 {
            font-size: 1.1rem;
            margin: 0 0 0.25rem 0;
            font-weight: 500;
            color: white;
        }

        .contact-details p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #d1d1d1;
        }

        .contact-details a {
            color: #d1d1d1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #4facfe;
        }


        /* Copyright */
        .copyright {
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright p {
            margin: 0;
            font-size: 0.9rem;
            color: #a1a1a1;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-brand,
        .footer-links,
        .footer-contact {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .footer-brand { animation-delay: 0.1s; }
        .footer-links { animation-delay: 0.3s; }
        .footer-contact { animation-delay: 0.5s; }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
                padding: 3rem 1.5rem;
            }
            
            .footer-brand {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .footer-links,
            .footer-contact {
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
            
           
        }

        @media screen and (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.5rem;
            }
            
            .footer-brand,
            .footer-links,
            .footer-contact {
                text-align: center;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.5rem;
            }
            
            .contact-icon {
                margin-top: 0;
            }
            
            .footer-link:hover {
                transform: none;
            }
            
            .footer-link::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media screen and (max-width: 480px) {
            .footer-container {
                padding: 2rem 1rem;
            }

            .footer-tagline {
                font-size: 0.9rem;
            }

            .contact-details h4 {
                font-size: 1rem;
            }

            .footer-link {
                font-size: 0.95rem;
            }
        }
/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }
    
    .footer-links, .footer-contact {
        text-align: left;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        width: 30%;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-brand,
.footer-links,
.footer-contact {
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-brand { animation-delay: 0.1s; }
.footer-links { animation-delay: 0.3s; }
.footer-contact { animation-delay: 0.5s; }

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .footer-container {
        padding: 2rem 1.5rem;
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact .contact-item{
        justify-content: center;
    }

    .contact-details h4,
    .contact-details p,
    .footer-links h3,
    .quick-links li {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 1.5rem 0;
        text-align: center;
    }

    .footer-contact .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .footer-link:hover {
        transform: none;
    }

    .footer-link::after {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 2rem 1rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.95rem;
    }
}
/* Add this to your existing CSS */


a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
    cursor: text;
}


.info-content p,
.contact-details p {
    color: inherit;
    text-decoration: none;
    -webkit-text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}


.info-content p,
.contact-details p {
    pointer-events: none;
}



/* Splash Screen Styles */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.363);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash-screen img {
    max-width: 300px;
    width: 50vw;
    height: auto;
    object-fit: contain;
}

.splash-logo {
    animation: splashFadeScale 2.5s ease forwards;
}

@keyframes splashFadeScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



@media (max-width: 600px) {
    .stats-card.courses {
        top: 5%;
        right: 5%;
        transform: scale(0.85);
        animation: float 3s ease-in-out infinite;
        z-index: 5;
    }
        .stats-card.students {
        bottom: 10%;
        left: 5%;
        transform: scale(0.85);
        animation: float 3s ease-in-out infinite;
        animation-delay: 1.5s;
        z-index: 10;
    }
}

@media (max-width: 900px) {
    .stats-card.courses {
        top: 10%;
        right: -10%;
        animation: float 3s ease-in-out infinite;
        animation-delay: 0s;
        transform: scale(0.9);
        z-index: 5;
    }

    .stats-card.students {
        bottom: 15%;
        left: -15%;
        animation: float 3s ease-in-out infinite;
        animation-delay: 1.5s;
        transform: scale(0.9);
        z-index: 5;
    }

}

@media (max-width: 1024px) {
    .stats-card.courses {
        right: -5%;
        top: 5%;
    }

    .stats-card.students {
        left: -10%;
        bottom: 15%;
    }
}

@media (max-width: 1200px) {
    .stats-card.courses {
        right: -10%;
    }

        .stats-card.students {
        left: -15%;
    }
}

.stats-card.courses {
    top: 10%;
    right: -15%;
    animation-delay: 0s;
}
.stats-card.students {
    bottom: 20%;
    left: -20%;
    animation-delay: 1.5s;
}

@media (max-width: 360px) {
    .stats-card {
        padding: 0.8rem 1rem;
        transform: scale(0.75);
        animation: float 3s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .stats-card {
        padding: 0.8rem 1rem;
        transform: scale(0.75);
        animation: float 3s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    .stats-card {
        transform: scale(0.85);
    }
}

/* Stats Cards */
.stats-card {
    position: absolute;
    background: #ffffffbf;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.2rem, 3vw, 1.8rem);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stats-card.courses {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.stats-card.students {
    bottom: 20%;
    left: -20%;
    animation-delay: 1.5s;
}

.stats-icon {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: white;
}

.stats-icon.courses {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.stats-icon.students {
background: linear-gradient(135deg, #00aab7, #006080);
}

.stats-text h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
color: #00293b;
    margin: 0;
}

.stats-text p {
    color: #718096;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    margin: 0;
    font-weight: 500;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .stats-card.courses {
        right: -10%;
    }
    
    .stats-card.students {
        left: -15%;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .stats-card.courses {
        right: -5%;
        top: 5%;
    }
    
    .stats-card.students {
        left: -10%;
        bottom: 15%;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    
    .hero-image {
        order: 2;
    }
    
     .stats-card.courses {
        top: 10%;
        right: -10%;
        animation: float 3s ease-in-out infinite;
        animation-delay: 0s;
        transform: scale(0.9);
        z-index: 5;
    }
    
    .stats-card.students {
        bottom: 10%;
        left: -20%;
        animation: float 3s ease-in-out infinite;
        animation-delay: 1.5s;
        transform: scale(0.9);
        z-index: 12;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 4rem;
    }

    .hero-container {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
    
    .stats-card {
        transform: scale(0.85);
    }
}

@media (max-width: 600px) {
    .hero-container {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
   .stats-card.courses {
    top: -5%;
    right: -10%;
    transform: scale(0.85);
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}

.stats-card.students {
    bottom: 10%;
    left: 5%;
    transform: scale(0.85);
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
    z-index: 10;
}


}

@media (max-width: 480px) {
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .stats-card {
    padding: 0.8rem 1rem;
    transform: scale(0.75);
    animation: float 3s ease-in-out infinite;
}

    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .login-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        margin-left: 30%;
    }
    
    .language-selector {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .stats-card {
    padding: 0.8rem 1rem;
    transform: scale(0.75);
    animation: float 3s ease-in-out infinite;
}

    .stats-card.students {
          bottom: -12%;
        left: 4%;
        z-index: 15;
    }
    
    .hero-container {
        padding: 1rem;
    }
}

/*.background1 {
    background: linear-gradient(87deg, hsl(0deg 0% 72.59%), hsl(0, 0%, 100%));
}




<!-- socia medeia icon -->
/* Professional Social Icons */
        .social-icons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .social-icon.whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .social-icon.instagram {
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
        }

        .social-icon.gmail {
            background: linear-gradient(135deg, #ea4335, #fbbc05);
        }
        @media (max-width: 768px) {
            

            .social-icons {
                bottom: 20px;
                right: 20px;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
           

            .social-icons {
                flex-direction: row;
                bottom: 20px;
                right: 50%;
                transform: translateX(50%);
            }
        }

.about-image {
    width: 100%;
    background-image: url(aboutimage.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
