/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  overflow-x: hidden;
}

.floating-menu {
  position: static;
  background: transparent;
  box-shadow: none;
}

.floating-menu .menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.floating-menu .menu li a {
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #000;
}

.floating-menu.sticky {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.6); 
  backdrop-filter: blur(12px);        
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}


  .floating-menu .menu li {
    display: flex;
    align-items: center;
  }
  
  .floating-menu .text-wrapper {
    position: static;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    letter-spacing: -0.06px;
    line-height: normal;
  }
  
  .floating-menu .home-wrapper {
    position: static;
    width: auto;
    height: auto;
  }
  
  .floating-menu .div {
    position: static;
    width: auto;
    height: auto;
  }
  
  .floating-menu .menu-2 {
    position: static;
    width: auto;
    height: auto;
  }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 80px;
  height: 71px;
  border-bottom: 1px solid transparent;
  position: relative;
  z-index: 10;
}

.campus-suite-logo {
  display: flex;
  align-items: center;
  flex-direction: column; 
}

  .header .overlap {
    position: relative;
    width: 78px;
    height: 78px;
    top: -22px;
    left: -3px;
  }
  
  .header .element {
    position: absolute;
    width: 68px;
    height: 56px;
    top: 22px;
    left: 3px;
  }
  
  .header .overlap-group {
    position: relative;
    width: 59px;
    height: 4px;
    top: 51px;
    left: 5px;
  }
  
  .header .vector {
    position: absolute;
    width: 59px;
    height: 1px;
    top: 2px;
    left: 0;
  }
  
  .header .text-wrapper {
    position: absolute;
    top: 0;
    left: 19px;
    font-family: 'DM Serif Text', serif;
    font-weight: 800;
    color: var(--accent-500);
    font-size: 3.2px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .header .div {
    position: absolute;
    top: 59px;
    left: 7px;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: var(--accent-1000);
    font-size: 13.8px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .header .icon-cam-cap {
    position: absolute;
    width: 59px;
    height: 59px;
    top: 10px;
    left: 10px;
    transform: rotate(155.00deg);
  }
  
  .header .overlap-2 {
    position: relative;
    height: 59px;
  }
  
  .header .overlap-group-wrapper {
    position: absolute;
    width: 59px;
    height: 59px;
    top: 0;
    left: 0;
  }
  
  .header .mask-group-wrapper {
    position: relative;
    width: 78px;
    height: 64px;
    top: 5px;
    left: -10px;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .header .mask-group {
    position: absolute;
    width: 78px;
    height: 64px;
    top: 0;
    left: 0;
    mix-blend-mode: color;
  }
  
  .header .img-wrapper {
    position: relative;
    width: 78px;
    height: 64px;
    top: 5px;
    left: -10px;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .header .overlap-3 {
    position: relative;
    width: 78px;
    height: 64px;
    top: 5px;
    left: -10px;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .header .overlap-4 {
    position: relative;
    width: 78px;
    height: 64px;
    top: 5px;
    left: -10px;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .header .overlap-5 {
    position: relative;
    width: 78px;
    height: 64px;
    top: 5px;
    left: -10px;
    background-size: cover;
    background-position: 50% 50%;
  }
  
  .header .img {
    position: absolute;
    width: 78px;
    height: 64px;
    top: 0;
    left: 0;
    mix-blend-mode: overlay;
  }
  
.header .book-a-demo-CTA {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #6522BB; 
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
}



.header .book-a-demo-CTA:hover {
    background-color: #511a99;
}

.header .text-wrapper-2 {
    font-family: "Inter", Helvetica, sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;
}

/* banner css */

  .banner {
    width: 100%;
    max-width: 100vw;
    height: 800px;
    overflow-x: hidden;
    background-color: #fff;
  }
  
  .banner .overlap-group {
    position: relative;
    width: 100%;
    height: 729px;
  }
  
  .banner .vectors {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .banner .vector {
    margin-top: -71.00px;
    position: relative;
    width: 1px;
    height: 728.5px;
  }
  
  .banner .img {
    position: relative;
    width: 1px;
    height: 728.5px;
  }
  
  .banner .vector-2 {
    margin-right: -0.50px;
    position: relative;
    width: 1px;
    height: 728.5px;
  }
  
  .banner .text {
    display: flex;
    flex-direction: column;
    width: 860px;
    max-width: 90%;
    align-items: center;
    gap: 32px;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .banner .headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
  }
  
  .banner .text-wrapper {
  margin-top: -1px;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  color: #000;
  font-size: 50px;
  text-align: center;
  letter-spacing: -1px;
}
  
 .banner .div {
  margin-top: 3px;
  background: linear-gradient(
    90deg,
    rgba(138, 56, 245, 1) 31%,
    rgba(81, 33, 143, 1) 85%
  );
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "DM Serif Text", serif;
  font-style: italic;
  font-size: 45px;
  text-align: center;
  letter-spacing: -0.9px;
}
  
  .banner .p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #1b1b1b;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
}

.banner .CT-as {
  display: inline-flex;
  justify-content: center;
  gap: 32px;
}
  
  .banner .start-your-free {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #6422bb;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.banner .text-wrapper-2 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
}
  
  .banner .img-2 {
    position: relative;
    width: 20px;
    height: 20px;
  }
  
  .banner .schedule-a-demo-CTA {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid #6422bb;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
}

.banner .text-wrapper-3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #6422bb;
  font-size: 16px;
  white-space: nowrap;
}
  
  .banner .icon {
    display: flex;
    width: 96px;
    height: 96px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 46px;
    right: 100px;
    background-color: #f2baef;
    border-radius: 100px;
  }
  
  .banner .img-3 {
    position: relative;
    width: 30px;
    height: 30px;
  }
  
  .banner .edit-list-check-wrapper {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16.25px;
    position: absolute;
    top: 593px;
    right: 150px;
    background-color: #5f8cff;
    border-radius: 162.5px;
  }
  
  .banner .edit-list-check {
    position: relative;
    width: 26px;
    height: 26px;
  }
  
  .banner .icon-dashboard-wrapper {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 34px;
    left: 25%;
    background-color: #fceea5;
    border-radius: 100px;
  }
  
  .banner .img-4 {
    position: relative;
    width: 24px;
    height: 24px;
  }
  
  .banner .book-wrapper {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 627px;
    left: 5%;
    background-color: #94c8ce;
    border-radius: 100px;
  }
  
  .banner .teacher-wrapper {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 8.33px;
    position: absolute;
    top: 419px;
    left: 10%;
    background-color: #ceffae;
    border-radius: 83.33px;
  }
  
  .banner .teacher {
    position: relative;
    width: 28px;
    height: 28px;
  }
  
  .banner .profile-wrapper {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 6.25px;
    position: absolute;
    top: 549px;
    left: 30%;
    background-color: #acc3ff;
    border-radius: 187.5px;
  }
  
  .banner .user-tag-wrapper {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 168px;
    left: 4%;
    background-color: #ff8cfb;
    border-radius: 100px;
  }
  
  .banner .card-receive-wrapper {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 236px;
    right: 20%;
    background-color: #caffdd;
    border-radius: 100px;
  }
  
  .banner .note-wrapper {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 565px;
    right: 40%;
    background-color: #ceaafe;
    border-radius: 100px;
  }
  
  .banner .microphone-wrapper {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 66px;
    left: 48%;
    background-color: #ffa3ac;
    border-radius: 100px;
  }
  
  .banner .tag {
    top: 443px;
    right: 20%;
    background-color: #d1fbff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 16px;
    position: absolute;
    border-radius: 20px;
  }
  
  .banner .text-wrapper-4 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Inter", Helvetica;
    font-weight: 600;
    color: #00b5c5;
    font-size: 14px;
    letter-spacing: -0.07px;
    line-height: normal;
  }
  
  .banner .attendance-leave-wrapper {
    top: 109px;
    left: 5%;
    background-color: #f3ddff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 16px;
    position: absolute;
    border-radius: 20px;
  }
  
  .banner .attendance-leave {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Inter", Helvetica;
    font-weight: 600;
    color: #812dff;
    font-size: 14px;
    letter-spacing: -0.07px;
    line-height: normal;
  }
  
  .banner .div-wrapper {
    top: 90px;
    right: 27%;
    background-color: #ffe0ce;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 16px;
    position: absolute;
    border-radius: 20px;
  }
  
  .banner .text-wrapper-5 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Inter", Helvetica;
    font-weight: 600;
    color: #f26918;
    font-size: 14px;
    letter-spacing: -0.07px;
    line-height: normal;
  }
  
  .banner .tag-2 {
    top: 651px;
    left: 42%;
    background-color: #d1ebff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 16px;
    position: absolute;
    border-radius: 20px;
  }
  
  .banner .text-wrapper-6 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Inter", Helvetica;
    font-weight: 600;
    color: #0031d3;
    font-size: 14px;
    letter-spacing: -0.07px;
    line-height: normal;
  }
  
  .banner .tag-3 {
    top: 314px;
    left: 11%;
    background-color: #ffe5c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 16px;
    position: absolute;
    border-radius: 20px;
  }
  
  .banner .text-wrapper-7 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Inter", Helvetica;
    font-weight: 600;
    color: #9b580c;
    font-size: 14px;
    letter-spacing: -0.07px;
    line-height: normal;
  }
  
  .banner .icon,
  .banner .edit-list-check-wrapper,
  .banner .icon-dashboard-wrapper,
  .banner .book-wrapper,
  .banner .teacher-wrapper,
  .banner .profile-wrapper,
  .banner .user-tag-wrapper,
  .banner .card-receive-wrapper,
  .banner .note-wrapper,
  .banner .microphone-wrapper,
  .banner .tag,
  .banner .attendance-leave-wrapper,
  .banner .div-wrapper,
  .banner .tag-2,
  .banner .tag-3 {
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  
  .banner .icon img,
  .banner .edit-list-check-wrapper img,
  .banner .icon-dashboard-wrapper img,
  .banner .book-wrapper img,
  .banner .teacher-wrapper img,
  .banner .profile-wrapper img,
  .banner .user-tag-wrapper img,
  .banner .card-receive-wrapper img,
  .banner .note-wrapper img,
  .banner .microphone-wrapper img {
    width: 72px;
    height: 72px;
    display: block;
    margin: 0 auto;
  }
  
  .nav-link {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.2s;
  }
  
  .nav-link:hover {
    color: #6422bb;
  }

/* Problem Section */
.problem {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 44px;
  padding: 60px 80px 100px;
  position: relative;
  background-color: #0d0020;
}

.problem .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "DM Serif Display", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 32px;
  text-align: center;
  letter-spacing: -0.64px;
  line-height: normal;
}

.problem .cards {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.problem .card {
  position: relative;
  width: 310px;
  height: 205px;
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}

.problem .div {
  position: absolute;
  top: 161px;
  left: 50px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 16px;
  letter-spacing: -0.50px;
  line-height: 24px;
  white-space: nowrap;
}

.problem .image {
  position: absolute;
  width: 310px;
  height: 149px;
  top: 0;
  left: 0;
}

/* Solution section */
.solution {
    background-color: #e9d8ff;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Heading */
.heading {
    text-align: center;
    margin-bottom: 80px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    width: 100%;
}

.sparkle-text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.main-title {
    font-family: 'DM Serif Text', serif;
    font-size: 56px;
    font-weight: 400;
    color: #000;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 40px 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto; 
    gap: 50px 100px;
    max-width: 1100px;
    width: 100%;
    justify-items: center;
    align-items: start;
    margin: 0 auto;
}

/* Individual Feature Box */
.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
    width: 100%;
}

/* Icon Styling */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #fff; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text Styling */
.feature-text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    margin: 0;
}

/* FEATURE SECTION   */
/* FEATURE SECTION   */
.features-section {
  background-color: #0E0020;
  color: #fff;
  padding: 60px 20px;
}

.container {
  max-width: 1440px;
  margin: auto;
}

.headerr {
  text-align: center;
  margin-bottom: 40px;
}

.features-btn {
  background-color: #4e2ecf;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.main-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 600;
}

.features-grid {
  padding-left: 100px;
  display: grid;
  grid-template-columns: 426px auto;
  gap: 24px;
  align-items: flex-start;
}

.left-col {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  position: relative;
  width: 406px;
  height: 225px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Split card into two sections */
.card-top {
  position: relative;
  width: 406px;
  height: 130px;
  background-color: #170034;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-left: 16px;     
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-top .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.card-top .icon {
  width: 71px;
  height: 71px;
  z-index: 2;
  position: relative;
}

.card-bottom {
  width: 406px;
  height: 95px;
  background-color: #170034;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.card-bottom::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}


.card-bottom h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  font-family: 'DM Serif Display', serif;
  margin: 0 0 8px;
}

.card-bottom p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}

/* ======== Chart (Middle Column) ======== */
.middle-col {
  padding-left: 0px;
}

.chart-card {
  width: 790px;
  height: 472px;
  background: #fff;
  color: #000;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.chart-card h3 {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
}

.chart-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
}

/* ======== Bottom Grid Cards ======== */
.bottom-grid {
  padding-right: 60px;
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.bottom-grid .feature-card {
  width: 406px;
  height: 225px;
}

/* ======== Stats Section Layout ======== */
.stats-section {
  margin-top: 30px;
}

/* 2 Column Layout */
.stats-grid {
  padding-left: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.vectorrrr {
  padding-left: 66px;
}

/* Left big vector card with nested stats */
.vector-card {
  position: relative;
  width: 843px;
  height: 225px;
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vector-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Inside 3 stat images */
.stats-inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.stat-img1,
.stat-img2,
.stat-img3 {
  width: 240px;
  height: auto;
  border-radius: 2.9px;
  position: absolute;
}

.stat-img1 {
  top: 21px;
  left: 22px;
}

.stat-img2 {
  top: 83px;
  left: 297px;
}

.stat-img3 {
  top: 124px;
  left: 576px;
}

.lefty {
  padding-right: 100px;
}

.bootoom {
  padding-left: 100px;
}

/* Bottom cards reuse */
.bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 406px);
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}


/* PRICING SECTION   */
/* PRICING SECTION - Updated */
.pricing-section {
padding: 80px 20px;
background-color: #ffffff;
min-height: 100vh;
display: flex;
align-items: center;
}

.pricing-section .container {
max-width: 1200px;
margin: 0 auto;
width: 100%;
}

.pricing-header {
text-align: center;
margin-bottom: 60px;
}

.pricing-title {
font-size: 48px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 40px;
letter-spacing: -0.5px;
line-height: 1.2;
font-family: 'DM Serif Display', serif;
}

.toggle-container {
display: inline-flex;
background-color: #f1f3f4;
border-radius: 8px;
padding: 4px;
gap: 4px;
}

.toggle-btn {
padding: 12px 24px;
border: none;
border-radius: 6px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
background: transparent;
color: #6b7280;
}

.toggle-btn.active {
background-color: #8b5cf6;
color: white;
box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
font-family: 'Inter', sans-serif;
font-weight: 500;
font-size: 16px;
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 60px;
}

.pricing-card {
background: #ffffff;
border-radius: 16px;
padding: 32px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
border: 1px solid #e5e7eb;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}

.pricing-card.featured {
background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
color: white;
transform: scale(1.05);
border: none;
box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured:hover {
transform: scale(1.05) translateY(-4px);
}

.card-header {
margin-bottom: 32px;
}

.plan-name {
font-size: 32px;
font-weight: 700;
margin-bottom: 8px;
color: #4b0082;
font-family: 'DM Serif Text', sans-serif;
}

.pricing-card.featured .plan-name {
color: #ffffff;
}

.plan-subtitle {
font-size: 16px;
color: #6b7280;
margin-bottom: 24px;
}

.pricing-card.featured .plan-subtitle {
color: rgba(255, 255, 255, 0.85);
}

.price {
font-size: 36px;
font-weight: 700;
color: #1a1a1a;
display: flex;
align-items: baseline;
gap: 8px;
flex-wrap: wrap;
}

.pricing-card.featured .price {
color: white;
}

.period {
font-size: 18px;
font-weight: 400;
color: #6b7280;
}

.period-small {
font-size: 14px;
font-weight: 400;
color: rgba(255, 255, 255, 0.7);
}

.info-icon {
font-size: 16px;
color: rgba(255, 255, 255, 0.7);
cursor: help;
}

.cta-button {
width: 100%;
padding: 16px 24px;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-bottom: 32px;
border: none;
}

.cta-button.primary {
background: white;
color: #000;
border: 2px solid white;
font-family: 'Inter', sans-serif;
font-weight: 500;
font-size: 16px;
}

.cta-button.secondary {
background: #6522BB;
color: white;
border: 2px solid #8b5cf6;
font-family: 'Inter', sans-serif;
}

.cta-button.secondary:hover {
background: #9147F2;
border-color: #7c3aed;
transform: translateY(-2px);
}

.pricing-card .features-section {
border-top: 1px solid #e5e7eb;
padding-top: 24px;
background: transparent;
}

.pricing-card.featured .features-section {
border-top-color: rgba(255, 255, 255, 0.2);
background: transparent;
}

.pricing-card .features-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: #1a1a1a;
font-family: 'Inter', sans-serif;
}

.pricing-card.featured .features-title {
color: white;
}

.pricing-card .features-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
background: transparent;
}

.pricing-card .feature-item {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 15px;
color: #4b5563;
line-height: 1.5;
font-family: 'Inter', sans-serif;
background: transparent;
}

.pricing-card.featured .feature-item {
color: rgba(255, 255, 255, 0.9);
background: transparent;
}

.pricing-card .checkmark {
color: #10b981;
font-weight: 600;
font-size: 16px;
flex-shrink: 0;
width: 20px;
height: 20px;
background: rgba(16, 185, 129, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 2px;
}

.pricing-card.featured .checkmark {
color: white;
background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
/* ---------------- Hero Section ---------------- */
.hero-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-family: 'DM Serif Text', 'DM Serif Display', serif; /* safe fallback */
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.4;
}

.talk-to-sales-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

/* ---------------- Footer Section ---------------- */

.footer-section {
  background: #0E0020;
  color: white;
  padding: 80px 0 40px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; 
  margin-bottom: 80px;
}

.footer-left {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  padding-left: -40px;
}

.logo-section {
  margin-top: -15px;
}

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

.logo-img {
  width: 83px;
  height: 70px;
  display: block;
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links-title {
  font-size: 14px;
  font-weight: 600;
  color:white;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.footer-right {
  padding-right: -10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-tagline {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  text-align: right;
  letter-spacing: -0.5px;
  font-family: 'DM Serif Text', 'DM Serif Display', serif;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

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

.bottom-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}



/* Tablet Styles - Up to 1024px */
@media (max-width: 1024px) {
  /* Header Responsive */
  .header {
    padding: 0 40px;
  }

  .floating-menu .menu {
    gap: 20px;
    flex-direction: row; 
  }

  .floating-menu .text-wrapper {
    font-size: 14px;
  }

  .banner .text {
    width: 90%;
    top: 150px;
  }

  .banner .text-wrapper {
    font-size: 42px;
  }

  .banner .div {
    font-size: 38px;
  }

  .banner .p {
    font-size: 14px;
    padding: 0 20px;
  }

  .banner .CT-as {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Problem Section Responsive - Center card content */
  .problem {
    padding: 40px 40px 60px;
  }

  .problem .text-wrapper {
    font-size: 28px;
  }

  .problem .cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .problem .card {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .image{
    padding-left: 90px;
  }
  .div{
    padding-left: 50px;
  }

  /* Features Section Responsive */
  .features-grid {
    padding-left: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .left-col {
    padding-left: 0;
  }

  .middle-col {
    padding-left: 0;
  }

  .chart-card {
    width: 100%;
    max-width: 600px;
  }

  .stats-grid {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vector-card {
    width: 100%;
    max-width: 100%;
  }

  .vectorrrr {
    padding-left: 25px;
  }

  .lefty{
    padding-left: 250px;
  }

  .bottom-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 20px;
  }

  .bootoom {
    padding-left: 40px;
  }

  /* Pricing Section Responsive */
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-section.pt-3.border-top {
    padding-left: 0px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-title {
    font-size: 40px;
  }

  /* Hero Section Responsive */
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }


  .footer-content {
    gap: 40px;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
  }

  .footer-tagline {
    font-size: 28px;
  }

  .footer-right {
    justify-content: flex-end;
  }
}

/* Mobile Styles - Up to 768px */
@media (max-width: 768px) {
  .header {
    padding: 0 20px;
    height: auto;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .floating-menu {
    margin-top: 16px;
  }

  .floating-menu .menu {
    flex-direction: row; 
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap; 
  }

  .floating-menu .text-wrapper {
    font-size: 13px; 
    padding: 8px 12px; 
  }

  .header .book-a-demo-CTA {
    align-self: flex-end;
    margin-top: 10px;
  }

  /* Banner Mobile */
  .banner {
    height: auto;
    min-height: 600px;
  }

  .banner .overlap-group {
    height: auto;
    min-height: 600px;
  }

  .banner .text {
    width: 95%;
    top: 100px;
    gap: 24px;
  }

  .banner .text-wrapper {
    font-size: 32px;
    line-height: 1.2;
  }

  .banner .div {
    font-size: 28px;
    line-height: 1.2;
  }

  .banner .p {
    font-size: 14px;
    padding: 0 10px;
  }

  .banner .CT-as {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .banner .start-your-free,
  .banner .schedule-a-demo-CTA {
    width: 100%;
    max-width: 280px;
  }

  /* Hide floating elements on mobile */
  .banner .icon,
  .banner .edit-list-check-wrapper,
  .banner .icon-dashboard-wrapper,
  .banner .book-wrapper,
  .banner .teacher-wrapper,
  .banner .profile-wrapper,
  .banner .user-tag-wrapper,
  .banner .card-receive-wrapper,
  .banner .note-wrapper,
  .banner .microphone-wrapper,
  .banner .tag,
  .banner .attendance-leave-wrapper,
  .banner .div-wrapper,
  .banner .tag-2,
  .banner .tag-3 {
    display: none;
  }

  /* Problem Section Mobile - Better centered content */
  .problem {
    padding: 40px 20px 60px;
  }

  .problem .text-wrapper {
    font-size: 24px;
    text-align: center;
  }
  

  .problem .cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .problem .card {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
  }

  .image{
    padding-right: 50px;
  }

  .div.div{
    padding-left: 30px;
  }

  /* Solution Section Mobile */
  .solution {
    padding: 60px 20px;
  }

  .main-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 300px;
  }

  /* Features Section Mobile */
  .features-section {
    padding: 40px 20px;
  }

  .features-grid {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .chart-card {
    width: 100%;
    max-width: 100%;
    padding: 0px;
  }

  .stats-grid {
    padding-left: 0;
  }

  .vector-card {
    width: 100%;
    height: 180px;
  }

  .vectorrrr{
    padding-left: 50px;
  }

  .stat-img1,
  .stat-img2,
  .stat-img3 {
    width: 80px;
    height: auto;
  }

  .stat-img1 {
    top: 15px;
    left: 15px;
  }

  .stat-img2 {
    top: 60px;
    left: 120px;
  }

  .stat-img3 {
    top: 90px;
    left: 220px;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 20px;
  }

  .bootoom {
    padding-left: 0;
  }

  .lefty{
    padding-left: 100px;
  }

  /* Pricing Section Mobile */
  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-title {
    font-size: 32px;
  }

  .toggle-container {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .toggle-btn {
    width: 100%;
    text-align: center;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .pricing-card {
    padding: 24px;
  }

  .plan-name {
    font-size: 24px;
  }

  .price {
    font-size: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

   .features-section.pt-3.border-top {
    padding-left: 0px;
  }

  /* Hero Section Mobile */
  .hero-section {
    height: 300px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .talk-to-sales-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Footer Mobile - Single column but centered */
  .footer-section {
    padding: 40px 0 20px;
    --top-band-height: 340px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    align-items: center;
  }

  .footer-left {
    order: 1;
  }

  .footer-right {
    order: 2;
    justify-content: center;
  }

  .footer-tagline {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .bottom-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* Small Mobile Styles - Up to 480px */
@media (max-width: 480px) {
  /* Header Small Mobile */
  .header {
    padding: 0 16px;
  }

  /* Keep floating menu horizontal even on small screens */
  .floating-menu .menu {
    gap: 12px;
  }

  .floating-menu .text-wrapper {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Banner Small Mobile */
  .banner .text-wrapper {
    font-size: 28px;
  }

  .banner .div {
    font-size: 24px;
  }

  .banner .p {
    font-size: 13px;
  }

  /* Problem Section Small Mobile - Enhanced centering */
  .problem {
    padding: 30px 16px 40px;
  }

  .problem .text-wrapper {
    font-size: 22px;
    text-align: center;
  }

  .problem .card {
    padding: 20px;
    max-width: 320px;
  }

  /* Solution Section Small Mobile */
  .solution {
    padding: 40px 16px;
  }

  .main-title {
    font-size: 28px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .feature-text {
    font-size: 14px;
  }

  /* Features Section Small Mobile */
  .features-section {
    padding: 30px 16px;
  }

  .feature-card {
    padding: 20px;
    height: auto;
    min-height: 180px;
  }

  .chart-card {
    padding: 16px;
  }

  .vector-card {
    height: 150px;
  }

  /* Pricing Section Small Mobile */
  .pricing-section {
    padding: 40px 16px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .pricing-card {
    padding: 20px;
  }

  /* Hero Section Small Mobile */
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  /* Footer Small Mobile */
  .footer-container {
    padding: 0 16px;
  }

  .footer-tagline {
    font-size: 24px;
  }
}

/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {
  .banner {
    height: auto;
    min-height: 500px;
  }

  .banner .text {
    top: 80px;
  }

  .hero-section {
    height: 250px;
  }

  /* Adjust floating menu for landscape */
  .floating-menu .menu {
    gap: 14px;
  }

  .floating-menu .text-wrapper {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* High DPI / Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-circle img,
  .chart-img,
  .hero-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .header,
  .banner .icon,
  .banner .edit-list-check-wrapper,
  .banner .icon-dashboard-wrapper,
  .banner .book-wrapper,
  .banner .teacher-wrapper,
  .banner .profile-wrapper,
  .banner .user-tag-wrapper,
  .banner .card-receive-wrapper,
  .banner .note-wrapper,
  .banner .microphone-wrapper,
  .banner .tag,
  .banner .attendance-leave-wrapper,
  .banner .div-wrapper,
  .banner .tag-2,
  .banner .tag-3,
  .footer-section {
    display: none;
  }

  .banner,
  .problem,
  .solution,
  .features-section,
  .pricing-section {
    page-break-inside: avoid;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .pricing-card {
    border: 2px solid #000;
  }

  .feature-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}

/* Additional improvements for better responsive behavior */
@media (max-width: 1200px) and (min-width: 1025px) {
  /* Large tablet / small desktop adjustments */
  .features-grid {
    padding-left: 20px;
  }
  
  .bootoom {
    padding-left: 20px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .floating-menu .text-wrapper {
    font-size: 11px;
    padding: 5px 8px;
  }
  
  .banner .text-wrapper {
    font-size: 24px;
  }
  
  .banner .div {
    font-size: 20px;
  }
  
  .problem .text-wrapper {
    font-size: 20px;
  }
  
  .footer-tagline {
    font-size: 20px;
  }
}


/* Newest file */