/* 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%;
  height: 800px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.banner .dotted-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner .bulb {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 800px;
  z-index: 2;
}

/* Left + Right sections */
.left-section,
.right-section {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.left-section {
  left: 8%;
  top: 30%;
  text-align: left;
}

.right-section {
  right: 10%;
  text-align: left;
}

.headline {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 6vw, 80px);
  font-weight: 300;
  color: #000;
  margin-bottom: 5px;
  line-height: 1.0; 
}

.p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 20px;
}

.tag {
  position: absolute;
  width: 200px;
  z-index: 4;
}

.fee-management {
  bottom: 180px;
  left: 8%;
}

.library-management {
  top: 400px;
  left: 20%;
}

.exam-management {
  top: 180px;
  right: 27%;
}

.subject-management {
  bottom: 200px;
  right: 12%;
}

/* Responsive: stack in mobile */
@media (max-width: 768px) {
  .left-section {
    width: 90%;
    position: absolute;
    top: 20px;          
    left: 10px;         
    transform: none;    
    text-align: left; 
    margin-top: 0;
  }

  .right-section {
    width: 90%;
    position: absolute;
    bottom: 20px;      
    right: 10px;       
    transform: none;    
    text-align: right;  
    margin-top: 0;
  }

    .left-section p,
  .right-section p {
    display: block;       /* moves to new line */
    margin-top: 15px;
  }



  /* Adjusted mobile bulb size */
  .banner .bulb {
    width: 450px;
    top: 0px;
  }

  .tag {
    position: relative;
    margin: 10px auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 150px;
  }
}

/* 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: linear-gradient(180deg, #F0E5FF 0%, #FFFFFF 35.06%);
    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   */
.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-first{
  display: flex;
  gap: 24px;
  margin-bottom: -35px;
}

.feature-card {
  position: relative;
  width: 406px;
  height: 225px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.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;
}

.middle-col {
  padding-left: 0px;
}

.chart-card {
  width: 830px;
  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;
}

.bottom-grid .feature-card {
  width: 406px;
  height: 225px;
}

/* ======== Stats Section Layout ======== */
.stats-section {
  margin-top: 30px;
}

/* 2 Column Layout */
.stats-grid {
  padding-left: 38px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 40px;
}

.vectorrrr {
  padding-left: 66px;
}

/* Left big vector card with nested stats */
.vector-card {
  position: relative;
  width: 838px;
  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 {
  margin-left: -7px;
}

.bootoom {
  margin-top: -10px;
  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 */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between cards */
  flex-wrap: wrap;
}

/* Pricing Cards */
.pricing-card {
  background: #EBEBEB;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 24px;
  text-align: left;
  width: 100%;
  max-width: 412px;
  min-height: 915px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #000; 
}

.pricing-header {
  font-family: 'DM Serif Text', serif;
  font-size: 32px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}


/* Elite Card */
.pricing-card.elite {
  background: linear-gradient(156.62deg, #9C5BF1 6.61%, #611CBA 95.46%);
  color: #fff !important; /* force white text */
  position: relative;
}

.features-section.pt-5,
.pricing-card.elite {
  background: #9C5BF1;
}


.pricing-card.elite .plan-subtitle,
.pricing-card.elite .features-title,
.pricing-card.elite li,
.pricing-card.elite p {
  color: #fff !important;
}

/* Header */
.plan-name {
  font-family: 'DM Serif Text', serif;
  font-size: 43px;
  font-weight: 400;
}

.plan-subtitle {
  font-size: 1rem;
  color: #555;
}

/* Buttons */
.cta-button {
  background: #6522BB;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 6px;
}


.cta-button.secondary {
  font-family: 'Inter', serif;
  margin-top: 15px;
  background: #6522BB;
  color: #fff;
}

.cta-button.primary {
  font-family: 'Inter', serif;
  margin-top: 15px;
  background: #6522BB;
  color: #fff;
}

.demo-note {
  font-family: 'Inter', serif;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  color: #777;
}

.pricing-card.elite .demo-note {
  color: #eee;
}

/* hover effects for pricing */
.pricing-card.starter:hover,
.pricing-card.pro:hover {
  background-color: #9C5BF1;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.pricing-card.starter:hover *:not(.cta-button),
.pricing-card.pro:hover *:not(.cta-button) {
  background-color: transparent !important; 
  color: #fff !important;
}

.cta-button.secondary {
  background-color: #6C2BD9;
  color: #fff;
  transition: background-color 0.3s ease-in-out;
}

.cta-button.secondary:hover {
  background-color: #8745e6; /* lighter shade of #6C2BD9 */
}



/* Features */
.features-section {
  margin-top: 16px;
}

.features-section.pt-3{
  background-color: #EBEBEB;
  margin-top: -20px;
}

.features-title {
  font-family: 'Inter', serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C2C2C;
  margin-bottom: 12px;
}

.features-list li {
  font-family: 'Inter', serif;
  font-weight: 400;
  color: #2C2C2C;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 16px;
}

.checkmark {
  margin-right: 8px;
  color: #000;
  font-weight: bold;
}

.pricing-card.elite .checkmark {
  color: #fff;
}

/* Recommended Label */
.recommended {
  position: absolute;
  top: -12px;
  right: 12px;
  background: black;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}


/* Smart Usage Modules Section */
.smart-modules {
  background-color: #0E0020;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.smart-modules .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.smart-modules .container-module {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  column-gap: 40px;
  gap: 25px;
}

.module-card {
  position: relative;
  padding: 40px 20px 40px 100px;
  text-align: left;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.module-number {
  position: absolute;
  top: 50%;
  left: -30px; 
  transform: translateY(-50%);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  line-height: 1;
  z-index: 0;


  background: linear-gradient(
    180deg,
    rgba(100, 162, 255, 0.1) 0%,
    rgba(23, 0, 52, 0.1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.module-icon {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.module-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  text-overflow: ellipsis;
}

.module-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
  z-index: 1;
  position: relative;
}


/* 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;
}

/* Extra large screens (desktops > 1600px) */
@media (max-width: 1600px) {
  .headline {
    font-size: clamp(24px, 5vw, 70px);
  }
  .left-section {
    left: 6%;
  }
  .right-section {
    right: 6%;
  }
}

/* Large screens (laptops ~1200px–1599px) */
@media (max-width: 1400px) {
  .headline {
    font-size: clamp(22px, 4.5vw, 60px);
  }
  .banner {
    height: 650px;
  }
  .bulb {
    width: 450px;
    height: auto;
  }

  .problem .cards {
    gap: 20px;
  }
  .problem .card {
    width: clamp(220px, 30%, 280px);
    flex: 1 1 30%;
  }
  

}

/* Medium devices (tablets landscape, ~992px–1199px) */
@media (max-width: 1200px) {
  .headline {
    font-size: clamp(20px, 4vw, 50px);
  }
  .banner {
    height: auto;
    padding: 40px 20px;
  }
  .left-section,
  .right-section {
    position: relative;
    transform: none;
    text-align: center;
    margin: 20px 0;
  }
  .bulb {
    position: static;
    margin: 0 auto;
    display: block;
    width: 350px;
  }
  .tag {
    display: none;
  }

  /* Problem section: 2 per row */
  .problem {
    padding: 40px 40px 80px;
  }
  .problem .cards {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .problem .card {
    width: clamp(220px, 45%, 280px);
    flex: 1 1 45%;
  }
}

/* Tablet & small laptops (~768px–1024px) */
@media (max-width: 1024px) {
  /* Problem section: stack vertically */
  .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;
    text-align: center;
  }
}

/* Mobile phones (<768px) */
@media (max-width: 768px) {
  .problem {
    padding: 40px 20px 60px;
  }
  .problem .text-wrapper {
    font-size: 24px;
  }
  .problem .cards {
    flex-direction: column;
    gap: 20px;
  }
  .problem .card {
    width: 100%;
    max-width: 350px;
    padding: 24px;
  }
}

/* Small Mobile (<480px) */
@media (max-width: 480px) {
  .problem {
    padding: 30px 16px 40px;
  }
  .problem .text-wrapper {
    font-size: 22px;
  }
  .problem .card {
    padding: 20px;
    max-width: 320px;
  }
}


/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {

  .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;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Newest file */