/* =====================
   GENERAL RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f7fc;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* =====================
   HEADER / NAVBAR
===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

header .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00ffff;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00ffff;
}

/* =====================
   HOME SECTION
===================== */
#home {
    height: 100vh;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, #00ffff, transparent 40%);
    animation: move-bg 20s linear infinite;
    opacity: 0.4;
}

@keyframes move-bg {
    0% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
    100% { transform: translate(0,0) rotate(360deg); }
}

.home-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.home-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.home-container h1 span {
    color: #00ffff;
}

.home-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.social-links a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00ffff;
}

/* =====================
   ABOUT SECTION
===================== */

/* About Section Styling */
#about {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    color: #fff;
    z-index: 1;
  }
  
  #about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #ff4d5a, #ffb347, #6a11cb, #00c6ff);
    background-size: 400% 400%;
    filter: blur(100px);
    animation: gradientMove 15s ease infinite;
    z-index: -1;
  }
  
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* About Container */
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  /* Heading */
  .about-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    color: #fff;
  }
  
  /* Flex Layout */
  .about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* Text Section */
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .about-text h3 span {
    color: #ffd700; /* Highlighted color */
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f0f0f0;
  }
  
  .about-text .qualities li {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  /* CTA Button */
  .btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background: #ffd700;
    color: #222;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn-contact:hover {
    background: #ff4d5a;
    color: #fff;
    transform: scale(1.05);
  }
  
  /* Image Circular with Black Background */
  .about-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
  
  .about-image-wrapper .image-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    background-color: black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  .about-image-wrapper .about-image {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
  }
  
  .about-image-wrapper .about-image:hover {
    transform: scale(1.05) rotate(3deg);
  }
  

  




/* =====================
   SERVICES SECTION
===================== */

/* Services Section */
#services {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    z-index: 1;
  }
  
  #services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #ff4d5a, #6a11cb, #00c6ff, #ffb347);
    background-size: 400% 400%;
    filter: blur(120px);
    animation: gradientMoveServices 20s ease infinite;
    z-index: -1;
  }
  
  @keyframes gradientMoveServices {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Heading */
  #services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
  }
  
  /* Service Grid */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  /* Service Card */
  .service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  }
  
  /* Service Icon */
  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s;
  }
  
  .service-card:hover .service-icon {
    background: rgba(255, 215, 0, 0.7); /* gold highlight on hover */
  }
  
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #f0f0f0;
  }
  





/* =====================
   RESOURCES SECTION
===================== */

/* Resources Section */
#resources {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
  }
  
  #resources::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #a18cd1, #fbc2eb);
    background-size: 400% 400%;
    filter: blur(120px);
    animation: gradientMoveResources 25s ease infinite;
    z-index: -1;
  }
  
  @keyframes gradientMoveResources {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Heading */
  #resources h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
  }
  
  /* Resources Grid */
  .resources-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  /* Resource Card */
  .resource-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    width: 300px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  }
  
  .resource-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
  }
  
  /* Subject Cards */
  .subject-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .subject-card {
    padding: 10px 15px;
    border-radius: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  /* Different colors for each subject */
  .subject-card.math { background: #ff6b6b; }
  .subject-card.science { background: #6bc1ff; }
  .subject-card.english { background: #ffeb6b; color: #000; }
  .subject-card.social { background: #6bff95; color: #000; }
  
  .subject-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  




/* =====================
   TESTIMONIALS & ACHIEVEMENTS
===================== */

/* Testimonials Section */
#testimonials {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #05e3f3, #11f92c);
  }
  
  #testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
  }
  
  /* Testimonials Grid */
  .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  /* Testimonial Card */
  .testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    width: 300px;
    text-align: center;
    color: #171515;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  }
  
  .student-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
  }
  
  .student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .testimonial-card span {
    font-size: 14px;
    opacity: 0.8;
  }
  
  /* Bubbles Background */
  .bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  
  .bubbles span {
    position: absolute;
    bottom: -100px;
    width: 20px;
    height: 20px;
    background: rgba(229, 59, 8, 0.3);
    border-radius: 50%;
    animation: bubbleMove 15s linear infinite;
  }
  
  .bubbles span:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-duration: 12s; }
  .bubbles span:nth-child(2) { left: 20%; width: 25px; height: 25px; animation-duration: 18s; }
  .bubbles span:nth-child(3) { left: 30%; width: 20px; height: 20px; animation-duration: 16s; }
  .bubbles span:nth-child(4) { left: 40%; width: 30px; height: 30px; animation-duration: 20s; }
  .bubbles span:nth-child(5) { left: 50%; width: 25px; height: 25px; animation-duration: 15s; }
  .bubbles span:nth-child(6) { left: 60%; width: 18px; height: 18px; animation-duration: 17s; }
  .bubbles span:nth-child(7) { left: 70%; width: 22px; height: 22px; animation-duration: 19s; }
  .bubbles span:nth-child(8) { left: 80%; width: 20px; height: 20px; animation-duration: 14s; }
  
  @keyframes bubbleMove {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-800px) rotate(360deg); opacity: 0; }
  }
  



  /* Achievements Section */
#achievements {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    overflow: hidden;
  }
  
  #achievements h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
  }
  
  /* Achievements Grid */
  .achievements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  /* Achievement Card */
  .achievement-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    width: 250px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
  }
  
  .achievement-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  }
  
  .achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
    transition: transform 0.4s;
  }
  
  .achievement-card:hover .achievement-icon {
    transform: scale(1.2) rotate(10deg);
  }
  
  .achievement-icon img {
    width: 50%;
    height: 50%;
  }
  
  /* Achievement Card Titles and Description */
  .achievement-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .achievement-card p {
    font-size: 14px;
    opacity: 0.8;
  }
  
  /* Floating Bubbles/Particles */
  .achievement-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  
  .achievement-bubbles span {
    position: absolute;
    bottom: -50px;
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatUp 12s linear infinite;
  }
  
  .achievement-bubbles span:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-duration: 15s; }
  .achievement-bubbles span:nth-child(2) { left: 25%; width: 15px; height: 15px; animation-duration: 12s; }
  .achievement-bubbles span:nth-child(3) { left: 40%; width: 25px; height: 25px; animation-duration: 18s; }
  .achievement-bubbles span:nth-child(4) { left: 55%; width: 18px; height: 18px; animation-duration: 16s; }
  .achievement-bubbles span:nth-child(5) { left: 70%; width: 22px; height: 22px; animation-duration: 20s; }
  .achievement-bubbles span:nth-child(6) { left: 85%; width: 17px; height: 17px; animation-duration: 14s; }
  .achievement-bubbles span:nth-child(7) { left: 30%; width: 20px; height: 20px; animation-duration: 13s; }
  .achievement-bubbles span:nth-child(8) { left: 60%; width: 18px; height: 18px; animation-duration: 19s; }
  
  @keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-800px) rotate(360deg); opacity: 0; }
  }
  






/* =====================
   FEE SECTION
===================== */
/* Fees Section */
#fees {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ab151a, #282f2f);
    overflow: hidden;
  }
  
  #fees h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
  }
  
  /* Fees Grid */
  .fees-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  
  /* Fee Card */
  .fee-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    width: 180px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
  }
  
  .fee-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  
  .fee-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
    transition: transform 0.3s;
  }
  
  .fee-card:hover .fee-icon {
    transform: scale(1.3) rotate(15deg);
  }
  
  .fee-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .fee-card p {
    font-size: 14px;
    opacity: 0.85;
  }
  
  /* Floating Bubbles / Particles */
  .fees-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  
  .fees-bubbles span {
    position: absolute;
    bottom: -50px;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatUp 12s linear infinite;
  }
  
  .fees-bubbles span:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-duration: 14s; }
  .fees-bubbles span:nth-child(2) { left: 20%; width: 12px; height: 12px; animation-duration: 12s; }
  .fees-bubbles span:nth-child(3) { left: 30%; width: 18px; height: 18px; animation-duration: 16s; }
  .fees-bubbles span:nth-child(4) { left: 40%; width: 20px; height: 20px; animation-duration: 18s; }
  .fees-bubbles span:nth-child(5) { left: 50%; width: 15px; height: 15px; animation-duration: 15s; }
  .fees-bubbles span:nth-child(6) { left: 60%; width: 18px; height: 18px; animation-duration: 20s; }
  .fees-bubbles span:nth-child(7) { left: 70%; width: 12px; height: 12px; animation-duration: 13s; }
  .fees-bubbles span:nth-child(8) { left: 80%; width: 20px; height: 20px; animation-duration: 17s; }
  .fees-bubbles span:nth-child(9) { left: 90%; width: 15px; height: 15px; animation-duration: 19s; }
  .fees-bubbles span:nth-child(10) { left: 35%; width: 18px; height: 18px; animation-duration: 16s; }
  
  @keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-800px) rotate(360deg); opacity: 0; }
  }
  

/* Subjects List */
.subjects-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
  }
  
  .subjects-list li {
    background: rgba(255,255,255,0.2);
    margin: 5px 0;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 13px;
    color: #fff;
    transition: background 0.3s;
  }
  
  .subjects-list li:hover {
    background: rgba(255,255,255,0.4);
  }
  
  /* Extra Info */
  .extra-fees-info {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
  }
  




/* =====================
   CONTACT SECTION
===================== */
/* Contact Section Container */
.contact-container {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #c205db, #2575fc);
    color: #fff;
    overflow: hidden;
    border-radius: 20px;
    margin: 50px auto;
  }
  
  /* Heading & Info */
  .contact-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .contact-info {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
  }
  
  /* Contact Grid */
  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  /* Contact Details */
  .contact-details {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
  }
  
  .social-contact {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-contact a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
  }
  
  .social-contact a:hover {
    transform: scale(1.2);
    background: rgba(255,255,255,0.5);
  }
  
  /* Contact Form */
  .contact-form {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 14px;
  }
  
  .contact-form textarea {
    resize: none;
    min-height: 120px;
  }
  
  .contact-form button {
    background: #ff6a00;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .contact-form button:hover {
    background: #ff9a00;
    transform: translateY(-3px);
  }
  
  /* Dynamic Bubbles */
  .contact-bubbles span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: bubble 20s linear infinite;
  }
  
  .contact-bubbles span:nth-child(1) { left: 10%; animation-duration: 15s; }
  .contact-bubbles span:nth-child(2) { left: 30%; animation-duration: 20s; }
  .contact-bubbles span:nth-child(3) { left: 50%; animation-duration: 18s; }
  .contact-bubbles span:nth-child(4) { left: 70%; animation-duration: 22s; }
  .contact-bubbles span:nth-child(5) { left: 90%; animation-duration: 19s; }
  
  @keyframes bubble {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0.7; }
    50% { opacity: 0.3; }
    100% { transform: translateY(-50vh) scale(1); opacity: 0; }
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .contact-grid { flex-direction: column; gap: 30px; }
  }
  




/* =====================
   FLOATING BOOK DEMO BUTTON
===================== */

/* Free Demo Button */
#bookDemoBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6a00, #ff9a00, #ffcc00);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
  }
  
  /* Hover Effects */
  #bookDemoBtn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  }
  
  /* Floating Animation */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  /* Responsive for Mobile */
  @media (max-width: 768px) {
    #bookDemoBtn {
      bottom: 20px;
      right: 20px;
      padding: 12px 20px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    #bookDemoBtn {
      bottom: 15px;
      right: 15px;
      padding: 10px 18px;
      font-size: 14px;
    }
  }
  






/* =====================
   CHATBOT
===================== */

/* Chatbot container */
/* Chatbot container */
#chatbot {
    position: fixed;
    bottom: 80px;
    left: 20px; /* Left side */
    width: 320px;
    max-height: 450px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: fadeIn 0.6s;
    font-family: 'Poppins', sans-serif;
    color: white;
  }
  
  /* Header */
  #chatHeader {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  
  /* Close button */
  #chatClose {
    font-size: 18px;
    cursor: pointer;
  }
  
  /* Body */
  #chatBody {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    overflow-y: auto;
  }
  
  /* Messages */
  #chatMessages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
  }
  
  #chatMessages .bot-msg,
  #chatMessages .user-msg {
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    max-width: 75%;
    word-wrap: break-word;
  }
  
  #chatMessages .bot-msg {
    background: rgba(255,255,255,0.2);
    align-self: flex-start;
  }
  
  #chatMessages .user-msg {
    background: rgba(0,0,0,0.3);
    align-self: flex-end;
  }
  
  /* Input */
  #chatInput {
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    outline: none;
    width: 100%;
    margin-top: auto;
    font-size: 14px;
  }
  
  /* Floating button */
  #chatToggleBtn {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Left side */
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: transform 0.3s;
  }
  
  #chatToggleBtn:hover {
    transform: scale(1.1);
  }
  
  /* Animations */
  @keyframes fadeIn {
    0% {opacity:0; transform: translateY(20px);}
    100% {opacity:1; transform: translateY(0);}
  }
  







  
  /* Animation */
  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
  }
  






/* =====================
   ANIMATIONS / SCROLL
===================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   MEDIA QUERIES
===================== */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: rgba(0,0,0,0.9);
        transition: left 0.3s ease;
    }

    nav ul.active {
        left: 0;
    }

    #bookDemoBtn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    #chatbot {
        width: 250px;
        max-height: 350px;
    }

    .about-flex {
        flex-direction: column;
    }
}
/* About Image Circular with Black Background */
.about-image-wrapper {
    position: relative;
    width: 200px; /* Adjust size as needed */
    height: 200px;
    margin: 20px auto;
  }
  
  .about-image-wrapper .image-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;  /* Slightly larger than image */
    height: 220px;
    background-color: black;
    border-radius: 50%; /* Makes it circular */
    transform: translate(-50%, -50%);
    z-index: 1; /* Behind the image */
  }
  
  .about-image-wrapper .about-image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Makes image circular */
    object-fit: cover; /* Ensures image fills circle */
    z-index: 2;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.5); /* Optional: adds depth */
  }
  



  .book-demo-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
  }
  
  .book-demo-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  }
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    .book-demo-btn {
      bottom: 15px;
      right: 15px;
      padding: 12px 18px;
      font-size: 14px;
    }
  }
  


  