
    
        * {
          
            font-family: Arial, sans-serif;
        }

        body {
            background: url('./pics/a.avif') no-repeat center center fixed;
            background-size: cover;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* For responsiveness */
  gap: 30px;
  margin-bottom: 40px;
}

.header-container img {
  width: 150px; /* adjust as needed */
  height: auto;
}

.gzname {
  font-size: 36px;
  font-weight: bold;
  color: white;
  white-space: nowrap;
}

.center-container {
  position: relative;
  width: 350px;
  height: 350px;
  flex-shrink: 0;
}



        .orbit {
            position: absolute;
            width: 100%;
            height: 100%;
            animation: rotate 23s linear infinite;
            transform-origin: center;
        }

        .orbit.paused {
            animation-play-state: paused;
        }

        .orbit a {
            position: absolute;
            width: 50px;
            height: 50px;
            background: transparent;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            border: 2px solid white;
        }

        .orbit a::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }
@media (max-width: 768px) {
  .orbit {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .orbit a {
    font-size: 1.2rem;
    padding: 0.6rem;
    margin: 0.5rem;
  }

  .gzname {
    font-size: 1.4rem;
  }

  .logo {
    width: 90px;
  }

  .timeline {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .orbit a {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .timeline {
    font-size: 0.95rem;
  }
}


        .orbit a:hover::after {
            opacity: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .timeline {
            font-size: 45px;
            font-style: italic;
            text-decoration: underline;
            color: rgb(210, 139, 150);
        }

        /* Positioning icons in a circular path */
        .orbit a:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
        .orbit a:nth-child(2) { top: 15%; left: 85%; transform: translate(-50%, -50%); }
        .orbit a:nth-child(3) { top: 50%; left: 100%; transform: translate(-50%, -50%); }
        .orbit a:nth-child(4) { top: 85%; left: 85%; transform: translate(-50%, -50%); }
        .orbit a:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%); }
        .orbit a:nth-child(6) { top: 85%; left: 15%; transform: translate(-50%, -50%); }
        .orbit a:nth-child(7) { top: 50%; left: 0; transform: translate(-50%, -50%); }
        .orbit a:nth-child(8) { top: 15%; left: 15%; transform: translate(-50%, -50%); }
        /* Responsive Styles */
        @media (max-width: 768px) {
            .gzname {
                font-size: 30px;
            }
            .center-container {
                width: 250px;
                height: 250px;
            }
            .orbit a {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            .timeline {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .gzname {
                font-size: 24px;
            }
            .header-container img {
                width: 150px;
            }
            .center-container {
                width: 200px;
                height: 200px;
            }
            .orbit a {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            .timeline {
                font-size: 20px;
            }
        }
    /* ----courses page styles--- */
    
    #coursesbody {
        font-family: Arial, sans-serif;
        background-image: url('./pics//cour3.png');
        text-align: center;
        margin: 0;
        padding: 0;
    }
    #coursesbody h1 {
        color: #333;
        margin: 20px 0;
    }
    .home-icon {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 40px;
        color: #333;
        cursor: pointer;
        transition: color 0.3s ease;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #333;
        border-radius: 50%;
        background: transparent;
    }
    .home-icon:hover {
        color: #ff758c;
        border-color: #ff758c;
    }
    .courses-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        flex-wrap: wrap;
    }
    .course-card {
        background: linear-gradient(135deg, #ff7eb3, #ff758c);
        color: white;
        padding: 20px;
        border-radius: 10px;
        width: 250px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }
    .course-card:hover {
        transform: scale(1.05);
    }
    .course-card i {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .course-card p:last-child {
        margin-top: 15px;
        font-weight: bold;
        color: #fff;
        text-decoration: underline;
        cursor: pointer;
    }
    .course-details {
        margin-top: 20px;
        padding: 20px;
        font-size: 18px;
        background: #fff;
        border-radius: 10px;
        width: 50%;
        margin: auto;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
/* ---------contact page------------ */


#contactbody {
    background: #000;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.home-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: color 0.3s ease, border-color 0.3s ease;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.home-icon:hover {
    color: #ff758c;
    border-color: #ff758c;
}

.header-container {
    margin-bottom: 40px;
    animation: slideIn 1.5s ease-out;
}

.header-container h1 {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(90deg, #fff, #ff758c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#contactbody form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(255, 117, 140, 0.5);
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#contactbody form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

#contactbody form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    outline: none;
}

#contactbody form button {
    background: #ff758c;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s ease;
}

#contactbody form button:hover {
    background: #e05275;
}
/* ---------------services page-------- */
#serbody {
    background: #000;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.home-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.home-icon:hover {
    color: #ff758c;
    border-color: #ff758c;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideIn 1.5s ease-out;
}

.header-container img {
    width: 100px;
    height: auto;
}

.gzname {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(90deg, #fff, #ff758c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 80%;
    max-width: 1200px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
.service-card:nth-child(5) { animation-delay: 1s; }

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 117, 140, 0.5);
}

.service-card i {
    font-size: 40px;
    color: #ff758c;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #ddd;
}
/* --------------team page---- */
#teambody {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: white;
    margin: 0;
    margin-top: 50px;
    padding:0;
    display: flex;
    flex-direction: column; /* Allow content to stack vertically */
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent only horizontal scrolling */
  }
  
  
  .team-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .team-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: white;
    position: relative;
    display: inline-block;
  }
  
  .team-section h2 span {
    color: #ff758c;
  }
  
  .team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff758c;
    border-radius: 2px;
  }
  
  .team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .team-card {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(45deg, #ff758c, #ff7eb3);
    padding: 5px;
  }
  
  .team-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 117, 140, 0.7);
  }
  
  .team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
  }
  
  .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .team-card:hover .team-img img {
    transform: scale(1.1);
    opacity: 0.3;
  }
  
  .team-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    text-align: center;
    transition: opacity 0.3s ease;
  }
  
  .team-card:hover .team-info {
    opacity: 1;
  }
  
  .team-info h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: white;
  }
  
  .team-info p {
    font-size: 1rem;
    color: #ddd;
  }
  
  .social-links {
    margin-top: 10px;
  }
  
  .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #ff758c;
  }
  .tooltip {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.8);
      color: rgb(255, 255, 255);
      padding: 10px;
      border-radius: 10px;
      font-size: 0.9rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      white-space: nowrap;
    }
  
    .team-card:hover .tooltip {
      opacity: 1;
      visibility: visible;
    }
    .testimonial-container {
      width: 80%;
      overflow: hidden;
      position: relative;
      white-space: nowrap;
      display: flex;
      justify-content: center;
      margin-top: 50px; /* Ensure space between sections */
      color: black;
      background-color: rgba(255, 255, 255, 0.1); /* Temporary background to check */
      padding: 20px 0;
  }
  
  .testimonial-slider {
      display: flex;
      animation: scroll 15s linear infinite;
  }
  
  .testimonial {
      width: 300px;
      margin: 10px;
      padding: 20px;
      background: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      text-align: center;
      flex-shrink: 0; 
      white-space: normal; /* ✅ Allows text to wrap */
      word-wrap: break-word; /* ✅ Ensures long words break */
      overflow-wrap: break-word;
  }
  
  @keyframes scroll {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(-50%);
      }
  }
  .Testimonial h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: white;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  
  .Testimonial h2 span {
    color: #ff758c;
  }
  
 .Testimonial h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff758c;
    border-radius: 2px;
  }
  /* ----about page---- */
  #aboutbody {
    margin: 0;
     margin-top: 50px;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    line-height: 1.6;
    
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

#aboutbody h1 {
    font-size: 3rem;
    margin: 0;
}

/* Typing Effect */
.typing-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff477e;
}

/* Sections */
.container {
    width: 80%;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
    
}

#aboutbody h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#aboutbody ul {
    list-style: none;
    padding: 0;
}

/* Services Section */

.service-cards {
    
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    background: linear-gradient(135deg, #ff477e, #ff8a47);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 300px;
    box-shadow: 0 4px 10px rgba(255, 71, 126, 0.3);
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(255, 71, 126, 0.5);
}
/* Hide all course items initially */
.course-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Show the current active course */
.course-item.active {
    opacity: 1;
    transform: translateY(0);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#aboutbody h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service p, .service ul {
    font-size: 1rem;
    line-height: 1.5;
}

.service ul {
    list-style: none;
    padding: 0;
}

.service ul li {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
}

/* Mission Section */
.mission {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('./pics/a.avif') center/cover no-repeat;
    position: relative;
    text-align: center;
}

.mission::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.mission-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 71, 126, 0.4);
    text-align: center;
    width: 900px;
    transition: transform 0.3s ease-in-out;
}

.mission-card:hover {
    transform: scale(1.05);
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff477e;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
}
/* Why Choose Us Section */
.why-choose {
    background: url('./pics/a.avif') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.why-choose::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    color: #ff477e;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 71, 126, 0.4);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.why-card:hover {
    transform: scale(1.05);
}

.why-card i {
    font-size: 2rem;
    color: #ff477e;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 1.1rem;
    color: white;
}
/* CTA Section */
.cta {
    background: #ff477e;
    padding: 40px 20px;
    text-align: center;
}

.cta-btn {
    background: #fff;
    color: #ff477e;
    border: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #f3f3f3;
}
    