
nav {
  padding: 9px 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 35px;
  width: auto;
  margin-right: 10px;
}
/* nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */





.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100vh;
  padding: 15% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


@media screen and (max-width: 790px) {
  .hamburger, .btn-orange {
    display: block;
    justify-content: right;
  }
  .carousel{
    display: block;
  }
/* .btn-orange{
    display: flex;
    justify-content: end;
} */
  nav ul {
    display: none;
  }
}




.btn-orange { width: 100% !important; }



.btn-orange {
  background: linear-gradient(90deg,#ff8c00,#ff3d3d);
  color: white;
}


.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  /* margin-top: 10px; */
  transition: 0.14s ease;
}


/* corousel*/

.carousel {
  width: 100vw;
  height: 85vh; /* Default for desktop */
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 6px rgba(223, 192, 192, 0.2);
}

.slides {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  transition: 1s ease-in-out all;
}

.slides .slide {
  min-width: 100%;
  overflow: hidden;
}

.slides .slide img {
   width: 100%;
  height: auto;
  object-fit: contain;   /* FIT inside without cropping */
  background: #f2f2f2;   /* optional: shows grey around image */
  display: block;
}


@media (max-width: 768px) {
  .slides .slide img {
    height: 220px;      
    object-fit: cover; 
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .slides .slide img {
    height: 180px;     
  }
}
/* Controls */
.slides:hover .controls {
  opacity: 1;
}

.carousel .controls {
  width: 90%;      /* reduce from 100% → less inside spacing */
  margin: 0 auto;  /* center align */
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  /* opacity: 0px; */
}

.carousel .control {
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.5;
  transition: ease 0.3s;
  cursor: pointer;
}
.carousel-head {
  position: absolute;
  top: 45%;
  left: 15%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px; /* keep text neat */
}

.carousel-head .corousel-head-text {
  font-size: 47px;
  font-weight: 700;
  line-height: 1.2;
    margin: 3px;  
}

.carousel-head .corousel-sub-head {
  font-size: 40px;
  color: orangered;
  font-weight: 600;
  margin-top: 10px;
    /* margin: 0;          */
  line-height: 1.1;
}


@media (max-width: 768px) {
  .carousel-head {
    left: 5%;
    top: 45%;
    transform: translateY(-50%);
  }

  .carousel-head .corousel-head-text {
    font-size: 28px;
  }

  .carousel-head .corousel-sub-head {
    font-size: 22px;
  }
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
  .carousel {
    height: 50vh; /* Reduce height on mobile */
  }

  .slides .slide {
    min-height: 200px; /* Optional: ensure smaller height works */
  }
}

@media screen and (max-width: 480px) {
  .carousel {
    height: 25vh; /* Mobile-friendly height */
  }

  .slides {
    position: relative; /* remove absolute positioning */
    top: auto;
    transform: none; /* stop vertical centering */
  }

  .slides .slide {
    min-height: 150px;
    height: 100%; /* make slide fill the carousel height */
  }
}

html, body {
  overflow-x: hidden;
}

.about-blobs {
  position: relative;
  padding: 30px 10px;
  overflow: hidden;
  background: #f7f8ff;
}

.content-area {
  max-width: 1150px;
  margin: auto;
  text-align: center;
  position: relative;
  /* z-index: 10; */
}

.content-area h2 {
  font-size: 30px;
  font-weight: 800;
  color: #222;
}

@media screen and (max-width: 480px) {
 .content-area h2{
    font-size: 25px;
 }
}
.sub-text {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 15px auto 50px;
  line-height: 1.7;
}

/* FEATURE CARDS */
.cards-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.info-card {
  width: 280px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.info-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* COLORED BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobMove 10s infinite alternate;
}

.blob1 {
  width: 350px;
  height: 350px;
  background: #ff6ec4;
  top: -50px;
  left: -80px;
}

.blob2 {
  width: 300px;
  height: 300px;
  background: #6a93ff;
  bottom: -40px;
  right: -60px;
}

.blob3 {
  width: 250px;
  height: 250px;
  background: #26e6a3;
  top: 40%;
  left: 65%;
}

@keyframes blobMove {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, -40px)}

  }

  .footer{
    text-align: center;
    padding: 5px;
    background-color: #666;
    font-size: 15px;
    font-weight: 600;
    color: white;
  }

  