/* -------------------------
   VARIABLES & BASE RESET
   ------------------------- */
:root {
  --bg: #f7fbff;
  --card: #ffffff;
  --primary: #0b67ff;
  --primary-600: #074dd6;
  --muted: #6b7280;
  --accent: #06b6d4;
  --ff: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --base: 1rem;
  --scale: 1.125;
  --container: 1200px;
  --gap: 1.25rem;
  --radius: 14px;
  --card-shadow: 0 8px 30px rgba(15,23,42,0.08);
}

/* Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: var(--base);
  line-height: 1.45;
  background: #d5f4ff9e;
  color: #0b1220;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* -------------------------
   HEADER & NAV
   ------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(15,23,42,0.03);
  z-index: 70;
  transition: all .3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--card-shadow);
}
.brand {
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: 0.2px;
}
/* --- Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 60;
}

/* --- Slide-in Nav --- */
.main-nav {
  position: fixed;
  top: 0;
  right: -240px; /* start hidden */
  width: 240px;
  height: 1000rem;
  background: #ffffff;
  box-shadow: -6px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 1.25rem 1.25rem;
  transition: right 0.35s ease;
  z-index: 70;
  border-radius: 12px 0 0 12px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.main-nav a:hover {
  background: rgba(11, 103, 255, 0.08);
  color: #0b67ff;
  padding-left: 0.9rem;
}

/* Open/close state */
.nav-open .main-nav { right: 0; }
.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

/* --- Close Button (Cut) --- */
.nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #666;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s ease;
}
.nav-close:hover {
  color: #fff;
  background: #0b67ff;
  transform: rotate(90deg);
}

/* --- CTA group --- */
.cta-group {
  margin-left: auto;
  display: flex;
  gap: .6rem;
  align-items: center;
  border-radius:10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 10px;
  padding: .55rem 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0b67ff, #074dd6);
  color: #fff;
  box-shadow: 0 6px 20px rgba(11,103,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11,103,255,0.35);
}

.btn-outline {
  background: transparent;
  border-color: rgba(11,17,32,0.12);
  color: #555;
}
.btn-outline:hover {
  border-color: #0b67ff;
  color: #0b67ff;
  background: rgba(11,103,255,0.05);
}

.btn.large {
  padding: 0.95rem 1.25rem;
  font-size: 1.05rem;
}

/* --- Mobile toggle --- */
.nav-toggle {
  display: inline-flex;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: #555;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.nav-toggle:hover {
  color: #0b67ff;
  background: rgba(11,103,255,0.08);
}
 .hero {
  padding: 60px 20px;
  background: #f0f8ff;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
#typing span {
  border-right: 5px solid #007bff; /* Cursor */
  animation: blink 0.6s step-end infinite alternate;
}

@keyframes blink {
  50% { border-color: transparent; }
}
.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.hero-text h1 span {
  color: #007bff;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.hero-text strong {
  color: #007bff;
  font-size: 1.05rem;
}

.hero-text .btn {
  display: inline-block;
  background: linear-gradient(45deg, #00fffc, #007bff);
  font-weight: bold;
  color: black;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-text .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}
   /*--cards--*/ 

 .cards-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
     /* Mobile: 2 columns */
    max-width: 1200px;
    padding:20px;
    margin: auto;
  }
  .card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
  .card-content {
    padding: 15px;
  }
  .card-content h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #333;
  }
  .card-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
  }

  /* Desktop: 5 columns */
  @media (min-width: 1024px) {

    .cards-container {
      grid-template-columns: repeat(1, 1fr);

    }
  }

    /* ---slider-- */

  .slider {
    position: relative;
    width: 30rem;
    height: 200px;
    margin:auto;
    margin-top:50px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: transparent;
  }
  .slides {
    display: flex;
    width: 100%; /* 4 slides */
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }
  .slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }
@media (min-width: 1024px){
slides{
    display: flex;
    width: 400%; /* 4 slides */
    height: 200%;
    transition: transform 0.5s ease-in-out;
    }
  }
  /* Navigation Buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transition: background 0.3s ease;
  }
  .nav-btn:hover {
    background: rgba(0,0,0,0.8);
  }
  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }

  /* Responsive */
  @media (max-width: 450px) {
    .slider {
      width: 90vw;
      height: 220px;
    }
  }

  /*--------branches----------*/

  .notesbranchescontainer {
    max-width: 700px;
    margin: 80px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

/* Heading */
.notesbranchescontainer h2 {
    text-align: center;
    color: #333;
    font-size: 2rem;
}

/* List Style */
.notesbranchescontainer .list {
    list-style: none;
    padding: 0;
}

.notesbranchescontainer .list li {
    background: #007BFF;
    color: white;
    padding: 0.7rem;
    margin: 8px 0;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* icon & text spacing */
}

.notesbranchescontainer .list li:hover {
    background: #0056b3;
}

.notesbranchescontainer .hidden {
    display: none;
}

.notesbranchescontainer .fade {
    animation: fadeIn 0.4s ease;
}

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

/* Back Button */
.notesbranchescontainer .back-btn {
    display: inline-block;
    margin-bottom: 15px;
    color: #007BFF;
    cursor: pointer;
    font-weight: bold;
}

/* ---------- RESPONSIVE STYLING ---------- */

/* For tablets and below */
@media (max-width: 768px) {
    .notesbranchescontainer {
        margin-top:5rem;
        padding: 15px;
    }

    .notesbranchescontainer h2 {
        font-size: 1.5rem;

    }

    .notesbranchescontainer .list li {
        font-size: 0.95rem;
        padding: 0.6rem;
    }
}

/* For mobile screens */
@media (max-width: 480px) {
    .notesbranchescontainer {
        margin:5rem 1rem 1rem 1rem;
        padding: 20px;
        border-radius: 8px;
    }

    .notesbranchescontainer h2 {
        font-size: 1.2rem;
    }

    .notesbranchescontainer .list li {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .notesbranchescontainer .back-btn {
        font-size: 1rem;
    }
}
/*notes section*/
  .containerx {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    
    .card {
      flex: 1 1 300px;
      max-width: 400px;
      border-radius: 20px;
      padding: 30px 25px;
      color: white;
      transition: 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    /* Gradient backgrounds for each card */
    .card.diploma { background: linear-gradient(135deg, #00c6ff, #0072ff); }
    .card.btech { background: linear-gradient(135deg, #ff7e5f, #feb47b); }
    .card.matric { background: linear-gradient(135deg, #43cea2, #185a9d); }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    }
    .card h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
      font-size: 1.8rem;
      color: white;
    }
    .links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .links a {
      text-decoration: none;
      padding: 14px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      background: rgba(255,255,255,0.15);
      color: white;
      border: 1px solid rgba(255,255,255,0.3);
      transition: 0.3s;
    }
    .links a i {
      font-size: 1.2rem;
    }
    .links a:hover {
      background: rgba(255,255,255,0.35);
      transform: translateX(6px);
    }
    }
  /* Updates */

     .updates-container {
      max-width: 700px;
      margin: 50px auto;
      background: none;
      padding: 25px;




    .updates-container h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 24px;
      color: #333;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    .update {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      margin: 12px 0;
      padding: 15px 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      border-radius: 12px;
      transition: all 0.3s ease;
      border-left: 5px solid gold;
    }

    .update:hover {
      background: #eef5ff;
      transform: translateY(-3px);
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
      a{
          color:black;
      }
    }

    .update a {
      font-size: 16px;
      color: white;
      font-weight: 500;
      text-decoration: none;
    }

    .update a:hover {
      color: #4a90e2;
      text-decoration: underline;
    }

    .date {
      font-size: 13px;
      color:silver;
      margin-left: 15px;
      white-space: nowrap;
    }
    }
    
    /*about container*/
    
 .about {
  padding: 60px 20px;
  background:none;
}

.about-container {
  max-width: 1100px;
  margin: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text h2 span {
  color: #ffcc00;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #444;
}

.about-text i {
  color: #2575fc;
  margin-right: 8px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}
  /* footer */

  .join-groups {
  text-align: center;
  padding: 1rem;
  background: none;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1000px;
}

.join-groups h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.join-groups p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.groups-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.group-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
}

.group-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.group-card i {
  font-size: 40px;
  margin-bottom: 15px;
}

.group-card h3 {
  margin: 10px 0;
  color: #222;
}

.group-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.join-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp i { color: #25D366; }
.telegram i { color: #0088cc; }

.whatsapp .join-btn {
  background: #25D366;
}

.telegram .join-btn {
  background: #0088cc;
}

.join-btn:hover {
  opacity: 0.85;
}
/* base footer */
 
  .footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ccc;
    padding: 30px 40px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    border-top: 3px solid #1e90ff;
  }

  .footer-left {
    max-width: 60%;
    font-size: 0.9rem;
  }

  .footer-left p {
    margin: 8px 0;
  }

  .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #1e90ff;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
  }

  .footer-links a:hover {
    color: #1e90ff;
    transform: translateY(-2px);
  }

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

  .footer-right {
    display: flex;
    gap: 15px;
    font-size: 1.4rem;
  }

  .footer-right a {
    color: #ccc;
    transition: all 0.3s ease;
  }

  .footer-right a:hover {
    color: #1e90ff;
    transform: scale(1.2);
  }

  .footer-right a i {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .footer-right a:hover i {
    background: rgba(30,144,255,0.2);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }
    .footer-left {
      max-width: 100%;
    }
  }/* Floating Feedback Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 16px;
  background: linear-gradient(135deg,#00f2fe,#4facfe);
  border: none;
  color: white;
  font-size: 24px;
  padding: 17px 19px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 20px rgba(79,172,254,0.6);
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
}
.floating-btn:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 30px rgba(0,242,254,0.8);
}

/* Popup Overlay */
.feedback-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn .4s ease;
}

/* Popup Box */
.feedback-box {
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  width: 380px;
  color: #fff;
  position: relative;
  animation: slideUp .5s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(79,172,254,0.3);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg,#ff0844,#ffb199);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 10px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform .3s ease, background .3s ease;
}
.close-btn:hover {
  transform: rotate(180deg) scale(1.1);
  background: linear-gradient(135deg,#ffb199,#ff0844);
}

/* Form Styling */
.feedback-box h2 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(135deg,#00f2fe,#4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feedback-box input,
.feedback-box textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  margin-bottom: 15px;
  transition: 0.3s;
}
.feedback-box input:focus,
.feedback-box textarea:focus {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 10px #4facfe;
}
.feedback-box textarea { resize: none; height: 100px; }

/* Send Button */
.send-btn {
  background: linear-gradient(135deg,#43e97b,#38f9d7);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(67,233,123,0.4);
}
.send-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg,#38f9d7,#43e97b);
  box-shadow: 0 6px 20px rgba(56,249,215,0.6);
}

/* Thank You Message */
.thank-you {
  display: none;
  text-align: center;
  margin-top: 20px;
  animation: fadeIn .5s ease;
}
.thank-you i {
  font-size: 60px;
  color: #4ade80;
  margin-bottom: 12px;
  animation: pop .6s ease;
}
.thank-you p {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg,#00f2fe,#4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feedback List */
.feedback-list {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  padding: 18px;
  margin: 25px auto;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  animation: fadeInUp 0.7s ease;
  transition: 0.3s;
}
.feedback-list:hover {
  box-shadow: 0 8px 30px rgba(79,172,254,0.3);
}

.feedback-list h3 {
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.5px;
  position: relative;
}
.feedback-list h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  margin: 6px auto 0;
  border-radius: 2px;
}

/* Feedback Items */
.feedback-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feedback-list li {
  background: rgba(255, 255, 255, 0.9);
  margin: 10px 0;
  padding: 12px 14px;
  border-radius: 12px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  font-size: 12px;
}
.feedback-list li:hover {
  transform: translateY(-3px);
  border-left: 4px solid #4facfe;
  box-shadow: 0 6px 15px rgba(79,172,254,0.25);
}

/* Email Style */
.feedback-list li .email {
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Message Style */
.feedback-list li .message {
  font-size: 12px;
  color: #1f2937;
  line-height: 1.2;
}



/* Animations */
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes slideUp { from{transform:translateY(60px);opacity:0;} to{transform:translateY(0);opacity:1;} }
@keyframes fadeInUp { 0%{opacity:0;transform:translateY(20px);} 100%{opacity:1;transform:translateY(0);} }
@keyframes pop { 0%{transform:scale(0.5);opacity:0;} 100%{transform:scale(1);opacity:1;} }/* Go To Top Button */
    #goTopBtn {
      position: fixed;
      bottom: 90px;
      right: 22px;
      z-index: 100;
      font-size: 18px;
      background: rgba(255, 255, 255, 0.85);;
      color: black;
      border: none;
      outline: none;
      padding: 12px 18px;
      border-radius: 1rem;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      display: none; /* Hidden by default */
      transition: 0.3s;
    }

    #goTopBtn:hover {
      background: #4affff;
      color:black;
    }.chatbase-bot-button {
  animation: glowBlink 1.5s infinite;
}

@keyframes glowBlink {
  0% { box-shadow: 0 0 10px #00ffcc; }
  50% { box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc; }
  100% { box-shadow: 0 0 10px #00ffcc; }
}
