* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color:  #e8f0fe;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(90deg, #5b0ca8, #7d1fad);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:white;
}

.navbar img.logo-img {
    height: 75px;
    border-radius: 8px;
    background-color: #5b0ca8; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-header {
    background: linear-gradient(90deg, #5b0ca8, #7d1fad);
    color: white;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 40% 10%;
    border-bottom-right-radius: 40% 10%;
    z-index: 0;
}

.hero-header h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-header p {
    font-size: 1.2rem;
}

.bn30 {
    border: 5em;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    -webkit-transform: translate(0);
    transform: translate(0);
    background-image: linear-gradient(45deg, #4568dc, #b06ab3);
    padding: 0.7em 2em;
    border-radius: 65px;
    box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.438);
    -webkit-transition: box-shadow 0.25s;
    transition: box-shadow 0.25s;
    color: white;
}

.bn30 .text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(45deg, #4568dc, #b06ab3);
}

.bn30:after {
    content: "";
    border-radius: 18px;
    position: absolute;
    margin: 4px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: #0e0e10;
}

.bn30:hover {
    background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
    box-shadow: 0 12px 24px rgba(128, 128, 128, 0.1);
}

.bn30:hover .text {
  background-image: linear-gradient(-45deg, #4568dc, #b06ab3);
}

.carousel {
    padding: 4rem 2rem;
    background-color:  #e8f0fe;
    text-align: center;
    overflow:hidden;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature-box {
    flex: 1 0 calc(33.333% - 2rem); 
    margin: 0 1rem;
    min-width: 250px;               
    background-color: #f1f1f1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    padding-bottom:5%;
}

.feature-box h3 {
    color: #111111;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.carousel-slide {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-buttons button {
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.carousel-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
  .box {
    flex: 1 0 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .box {
    flex: 1 0 100%;
    margin: 0 5px;
  }
}

.about {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #e8f0fe;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer {
  background-color: #6A0DAD;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.custom-shape-divider-bottom-1744844981 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1744844981 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 240px;
}

.custom-shape-divider-bottom-1744844981 .shape-fill {
  fill: #8C3EC9;
}

.cta-section {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.cta-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-align: center;
  padding-left: 3rem;
}

.cta-title .text-light {
  color: #fff;
}

.cta-title span {
  display: inline-block;
  margin: 0 0.25rem;
}

.gradient-text {
  background: linear-gradient(to right, #6dd5ed, #2193b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}

.cta-box {
  flex: 1 1 33.33%;
  background-color: #111;
  border-left: 1px solid #666;
  border-right: 1px solid #666;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  min-height: 200px;
}

.cta-box i {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
}

.cta-box p {
  font-weight: 500;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.1);
}

.cta-box i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
  display: block;
}

.cta-box p {
  font-size: 1rem;
  font-weight: 500;
}

.footer {
  background-color: #0a0a0a;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer .footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.footer .footer-menu {
  margin-bottom: 1rem;
}

.footer .footer-menu a {
  color: #aaa;
  margin: 0 1rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer .footer-menu a:hover {
  color: #fff;
}