 body {
        margin: 0;
        font-family: Arial, sans-serif;
        background: #fff;
    }
    .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px; /* Reduced padding */
    background-color: #ffffff;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    height: 70px; /* Fixed height */
}
 
.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 80px; /* Reduced size */
    height: 40px; /* Reduced size */
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 30px; /* Reduced margin */
}

.nav-links li {
    margin-left: 20px; /* Reduced spacing */
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 1.4rem; /* Smaller font size (~17.6px) */
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #f58e49;
}
.logo-text {
    font-size: 1.8rem; /* Reduced from 3.8rem (~28.8px) */
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}
/* Mobile styles */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        
    }
    
     .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
  }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
        margin-right: 0;
        
    }
    
    .nav-links.active {
        display: flex;
        background-color: bisque;
       
    }
    
    .nav-links li {
        margin: 10px 0;
        margin-left: 0;
    }
    
     section {
    min-height: auto !important;  /* allow natural height */
    height: auto !important;
    display: block;              /* remove forced flex gaps */
    padding: 20px 10px;          /* smaller padding */
  }

  section + section {
    margin-top: 0; /* remove extra gap between stacked sections */
  }

  .section-one,
  .section-two,
  .section-five {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
            height: 181vh !important;
        width: 335vh !important;
  }
}  



@media (max-width: 413px) {
    .hLogo {
        display: none;
    }
    
    .logo-img {
        width: 60px;
        height: 30px;
    }
     section {
    min-height: auto !important;  /* allow natural height */
    height: auto !important;
    display: block;              /* remove forced flex gaps */
    padding: 20px 10px;          /* smaller padding */
  }

  section + section {
    margin-top: 0; /* remove extra gap between stacked sections */
  }

  .section-one,
  .section-two{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 25vh !important;
     width: 47vh !important;
    overflow-y: scroll;
  }
   .section-five {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 25vh !important;
     width: 47vh !important;
    overflow-y: scroll;
    
  }
}
.sec1 {
  position: relative;       /* so circles can be absolutely placed */
  display: flex;            /* ✅ put text + logo side by side */
  align-items: center;      /* vertical alignment */
  justify-content: space-between; /* push text left, logo right */
  padding: 50px;
  min-height: 100vh;        /* full screen height */
  overflow: hidden;         /* prevent scrollbars from circles */
}
    section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
         
        background: linear-gradient(135deg, #f7f7f7, #ffffff);
        overflow: hidden;
    }
 .logo-section img {
          
  z-index: 2;
  position: relative;
        z-index: 2; /* ensure logo is above circles */
    }
    /* space between sections */
    section + section {
        margin-top: 50px;
    }

    /* Background circles */
    .circle {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
    }

    /* Section 1 circles */
    .sec1 .circle1 { width: 300px; height: 300px; background: #6e88ff; top: 50px; right: 150px; }
    .sec1 .circle2 { width: 100px; height: 100px; background: linear-gradient(135deg, #ae00ff, #6e88ff); top: 0; right: 50px; }
    .sec1 .circle3 { width: 200px; height: 200px; background: #36d4a4; bottom: 80px; left: 500px; }
    .sec1 .circle4 { width: 80px; height: 80px; background: #d455b4; bottom: 30px; left: 400px; }
    .sec1 .circle5 { width: 250px; height: 250px; background: rgba(200, 200, 200, 0.15); top: 100px; left: 100px; }

    /* Section 2 circles (different positions to match slide 2) */
    .sec2 .circle1 { width: 200px; height: 200px; background: rgba(200, 200, 200, 0.15); top: 80px; right: 50px; }
    .sec2 .circle2 { width: 80px; height: 80px; background: #36d4a4; top: 150px; left: 60%; }
    .sec2 .circle3 { width: 250px; height: 250px; background: #6e88ff; bottom: 50px; left: 65%; }
    .sec2 .circle4 { width: 100px; height: 100px; background: #d455b4; bottom: 60px; left: 40px; }
    .sec2 .circle5 { width: 80px; height: 80px; background: rgba(200, 200, 200, 0.15); top: 50px; left: 20px; }

    /* Text section */
    .text-section {
        z-index: 1;
        max-width: 500px;
    }

    .text-section h2 {
      margin-top: 20px;
        font-size: 28px;
        font-weight: bold;
        color: black;
    }

    .text-section h2 span {
        color: black;
        font-weight: bold;
        text-decoration: underline red;
    }

    .btn {
        background: linear-gradient(90deg, #a832ff, #6b00ff);
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        display: inline-block;
        margin-top: 20px;
        font-weight: bold;
        font-size: 16px;
    }

    .btn a {
        color: #ffffff;
        text-decoration: underline;
    }

.sec2 {
    display: flex;
    
    flex-direction: column;
    align-items: center;
    gap: 40px; /* space between top row and logo */
}
.sec2-text p span {
    color: red;
    text-decoration: underline;
    font-weight: bold;
}
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px; /* keeps content from stretching too wide */
}

.quote-section {
    flex: 1;
    max-width: 45%;
    font-size: 1.2rem;
    font-style: italic;
    color: #8a00ff;
}

.sec2-text {
    flex: 1;
    max-width: 45%;
}

.logo-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-row img {
    max-width: 500px;
}

.sec3 {
    background: #fff;
    padding: 50px 20px;
    position: relative;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* Left column */
.left-column {
    flex: 1;
    max-width: 45%;
    position: relative;
    z-index: 1;
}

.left-column h2 {
    color: #7a00ff;
    font-size: 2rem;
    font-weight: bold;
}

.left-column .subtitle {
    font-size: 1rem;
    margin: 10px 0 20px;
    color: #000;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.comparison-table th {
    background: #7a00ff;
    color: #fff;
    padding: 10px;
    text-align: left;
}

.comparison-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.comparison-table th:first-child {
    background: #a569bd;
}

/* Decorative circles */
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 0;
    margin-top: 90px;
}

.green-circle {
    background: linear-gradient(#4cd137, #00a8ff);
    width: 120px;
    height: 120px;
    bottom: 80px;
    left: 40px;
}

.pink-circle {
    background: #e84393;
    width: 70px;
    height: 70px;
    bottom: 20px;
    left: 0;
}

.blue-circle {
    background: #0984e3;
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 180px;
}

/* Right column */
.right-column {
    flex: 1;
    max-width: 50%;
    position: relative;
    padding-left: 40px;
}

.purple-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: #7a00ff;
    border-top-left-radius: 30px;
    z-index: 0;
}

.card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
    width:70%;
}

.card .dot {
    width: 14px;
    height: 14px;
    background: #7a00ff;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 8px;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.9rem;
    color: #555;
}
.section4 {
  background: #fff;
  padding: 60px 20px;
  position: relative;
}

.section4 .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.section4 .left {
  flex: 1;
  max-width: 45%;
}

.section4 .title {
  color: #7a00ff;
  font-size: 2rem;
  font-weight: bold;
}

.section4 .subtitle {
  font-size: 1rem;
  margin: 10px 0 30px;
  color: #000;
}

.section4 .card-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.section4 .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 15px;
  margin-top: 6px;
}

.section4 .circle.purple {
  background: #7a00ff;
}

.section4 .circle.blue {
  background: #0984e3;
}

.section4 .card {
  background-color: white;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    min-height: 100px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.section4 .card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: bold;
}

.section4 .card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.section4 .right {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section4 .right img {
  max-width: 80%;
  height: auto;
  margin-left: 180px;
}

/* Decorative background circles (only for section 4) */
.section4 .bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.section4 .bg-circle.green {
  background: #36d4a4;
  width: 120px;
  height: 120px;
  top: 40px;
  left: 20px;
}

.section4 .bg-circle.pink {
  background: #e84393;
  width: 80px;
  height: 80px;
  bottom: 50px;
  right: 200px;
}
.card-container {
  display: flex;
  gap: 20px;
  position: absolute;
}
.section-five {
  height: 100vh; /* full screen height */
  width: 100%;
  background-image: url('images/Screenshot\ 2025-08-14\ 173301.png'); /* replace with your image path */
  background-size:contain; /* make image cover the whole section */
  background-position: center; /* center the image */
  background-repeat: no-repeat;
   
}
.section-one {
  height: 100vh; /* full screen height */
  width: 100%;
  background-image: url('images/slide1.png'); /* replace with your image path */
  background-size:cover; /* make image cover the whole section */
  background-position: center; /* center the image */
  background-repeat: no-repeat;
   
}
.section-two {
  height: 100vh; /* full screen height */
  width: 100%;
  background-image: url('images/slide2.png'); /* replace with your image path */
  background-size:contain; /* make image cover the whole section */
  background-position: center; /* center the image */
  background-repeat: no-repeat;
   
}
.section-six {
  padding: 60px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-six .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.section-six .text-side h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.section-six .text-block {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.section-six ul {
  margin-left: 20px;
}

.section-six .image-side img {
  width: 150%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-left: 40px;
}

html, body {
  overflow-x: hidden;
}

    .section7 {
      position: relative;
      width: 80%;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      overflow: hidden;
      padding: 50px;
      padding-left: 295px; /* Adjusted padding for text alignment */
    }

    /* Circles */
    .circle1, .circle2, .circle3 {
      position: absolute;
      border-radius: 50%;
      filter: blur(2px);
      opacity: 0.9;
    }

    .circle1 {
      top: 40px;
      right: 100px;
      width: 70px;
      height: 70px;
      background: linear-gradient(to right, #34d399, #14b8a6);
    }

    .circle2 {
      bottom: 80px;
      right: 200px;
      width: 50px;
      height: 50px;
      background: #ec4899;
    }

    .circle3 {
      bottom: 30px;
      left: 100px;
      width: 100px;
      height: 100px;
      background: #d1d5db;
    }

    /* Content */
    .content {
      position: relative;
      max-width: 900px;
      align-content: center;
      line-height: 1.6;
      padding: 20px;
       
    }

    /* Quote mark */
    .quote {
      position: absolute;
      top: -60px;
      left: -60px;
      font-size: 140px;
      font-weight: bold;
      color: #9333ea;
      opacity: 0.8;
      user-select: none;
    }

    /* Main paragraph */
    .content p {
      font-size: 22px;
      font-weight: bold;
      color: #6b21a8;
    }

    .highlight {
      color: #4c1d95;
      font-weight: 900;
    }

    .underline {
      text-decoration: underline;
      text-decoration-color: #9333ea;
      font-weight: 600;
    }
  .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 50px;
    padding: 0 80px;
    margin-bottom: 0px;
    text-align: center;
  
    background: #ffffff;
  }
.banner-content a{
  font-size: 20px;
  font-weight: 500;
  color: black;
  transition: all 0.5s;
  
  }
  .banner-content a:hover{
  
  text-decoration: none;
  color:#f58e49 ;
  
  }
  
  .banner > img {
    width: 60vw;
    transition: 0.1s linear;
  }
  
  .banner h1 {
    font-weight: 500;
    font-size: 30px;
    margin: 0 0 10px;
  }
    @media (width >= 648px) {
    .banner {
      text-align: left;
      flex-direction: row;
      justify-content: space-between;
    }
  
    .banner > img {
      width: 10vw;
      left: 100px;
    }
  }
  
  .waves > use {
    animation: move-forever 2s -2s linear infinite;
  }
  
  .waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 6s;
  }
  .waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
  }
  
  @keyframes move-forever {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
 .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  justify-content: space-between;
  
  }
  
  
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #fff;
    transition: background-color 0.3s ease;
    border: 1px solid #f58e49;
    transition: all ease-out 0.5s;
  }
  
  
  .social-icon:hover {
    background-color: #f58e49;
    text-decoration: none;
    color: white;
  }
  
  .social-icon i {
    color: #000000;
    font-size: 20px; /* Set the font size to 50px */
  }
 svg {
    display: block;
    overflow: visible;
    background-color: white;
    height: 175px;
    width: 100%;
  }
  
   