body {
  font-family: "Inter", sans-serif;
  background-color: #f5f7f8;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

.circle{
  position: absolute;
  border-radius: 50%;
  background: #bab1ff;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
}

.small{
  z-index: -1;
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.medium{
  z-index: -1;
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.large{
  z-index: -1;
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xlarge{
  z-index: -1;
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.xxlarge{
  z-index: -1;
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}

.shade1{
  opacity: 0.2;
}
.shade2{
  opacity: 0.5;
}

.shade3{
  opacity: 0.7;
}

.shade4{
  opacity: 0.8;
}

.shade5{
  opacity: 0.9;
}

@keyframes ripple{
  0%{
    transform: scale(0.8);
  }
  
  50%{
    transform: scale(1.2);
  }
  
  100%{
    transform: scale(0.8);
  }
}


/* Navbar Section */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f5f7f8;
  box-shadow: 0px 4px 8px rgba(165, 155, 168, 0.495);
  z-index: 10; /* Add a z-index to ensure it stays on top */
  position: relative; /* Ensure the navbar is positioned relative to other elements */
}

.navbar .logo {
  flex: 1;
}

.navbar .logo img {
  width: 160px;
  margin-left: 155px;
  margin-top: 15px;
}

.nav-links {
  flex: 2;
  display: flex;
  gap: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center; /* Center the navigation links */
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #211951;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Inter", Sans-serif;
}

.nav-links a:hover {
  color: #8576ff; /* Change color on hover */
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #8576ff;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%; /* Underline expands on hover */
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  z-index: 1000;
  border-radius: 5px;
  overflow: hidden;
  list-style: none; /* Remove list dots */
  padding: 0; /* Remove padding */
  margin: 0;
  white-space: nowrap; /* Prevent line break */
}

.nav-links .dropdown-menu li {
  display: block; /* Display list items in a block */
  /* padding: 10px; */
  margin-top: 0.7rem;
  padding: 10px 1.3rem;
  font-family: "Inter", Sans-serif;
}

.nav-links .dropdown-menu li:hover {
  background-color: #8576ff; /* Purple background on hover */
}

.nav-links .dropdown-menu li:hover a {
  color: #ffffff; /* White text on hover */
}

.nav-links .dropdown-menu a {
  color: #211951;
  font-weight: normal;
  display: block; /* Display links in a block */
  font-family: "Inter", Sans-serif;
  text-decoration: none; /* Remove underline */
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #000;
  margin-bottom: 4px;
  font-family: "Inter", Sans-serif;
}

/* Active Nav Link */
.nav-links a.active {
  color: #8576ff; /* Purple color for active tab */
}

/* Display hamburger menu in mobile view */
@media (max-width: 768px) {
  .navbar{
    max-width: 100%;
  }
  .hamburger {
    display: flex;
    margin-right: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0; /* Reset gap for mobile view */
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #f5f7f8;
    box-shadow: 0px 4px 8px rgba(165, 155, 168, 0.495);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    padding: 15px 0;
    width: 100%;
    display: block;
  }

  .nav-links .dropdown-menu {
    position: static;
    background-color: #f5f7f8;
  }

  .nav-links .dropdown-menu li {
    padding: 10px;
  }
  
}

/* Contact page */
.container {
  padding-right: 7rem;
  width: 100%;
  /* background-color: #f5f7f8; */
  box-sizing: border-box;
  /* max-width: 40%; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* align-items: flex-start; */
}
.image {
  width: 600px;
  position: relative;
  margin-top: 40px;
  margin-right: 90px;
}
.container-text h1 {
  color: #211951;
  font-size: 90px;
  font-weight: 700;
  position: relative;
  margin: 20px 150px;
  /* color: transparent; 
  -webkit-text-stroke: 1px #211951; 
  color: #8576FF; */
}

.container-text p {
  font-size: 1.3rem;
  line-height: 2rem;
  margin-right: 7rem;
  margin: 20px 150px;
  
}

.container-text{
  /* margin-top: 8rem; */
  margin-left: 3rem;
}

/* _________________________HOVER EFFECT START______________________________*/
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 1px 4px 8px rgba(255, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover,
.hvr-glow:focus,
.hvr-glow:active {
  box-shadow: 8px 8px 8px 8px #211951ba;
}
/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz-out:hover,
.hvr-buzz-out:focus,
.hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* _________________________HOVER EFFECT END______________________________*/
.container-contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: 0px;
  padding: 0px;
  /* background: #f5f7f8; */
  border-radius: 10px;
}
.faq-section h1 img {
  width: 60px;
  height: 60px;
}
.faq-section-container {
  width: 35%;
  margin-left: 130px;
  margin-top: 70px;
  padding-left: 70px;
}
.faq-section h2 {
  color: #211951;
}
.faq-section h3 {
  color: #211951;
  font-weight: 300;
}

.faq-section {
  margin-bottom: 20px;
  padding: 0px;
  padding-top: 60px;
}

.faq-question {
  cursor: pointer;
  /* background: #f5f7f8; */
  color: #211951;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 10px 0;
  border-bottom: 1px solid #211951;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f5f7f8;
}

.faq-answer {
  display: none;
  background: #8576ff;
  color: #ffffff;
  padding: 10px 15px;
  margin: 10px 0;
  animation: fadeIn 0.9s ease;
}

.faq-section p {
  line-height: 2rem;
}
.contact-form {
  width: 30%;
  margin-top: 90px;
  margin-right: 190px;
  margin-bottom: 100px;
  padding-top: 60px;
  padding-left: 30px;
  padding-bottom: 50px;
  background-color: #8576ff;
  border-radius: 50px;
  color: #ffffff;
  font-size: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  padding: 15px 10px;
  padding-bottom: 5px;
  margin-right: 30px;
  margin-bottom: 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #211951;
  font-size: 16px;
  outline: none;
  color: white;
}

.contact-form button {
  width: 95%;
  padding: 10px;
  margin-right: 30px;
  margin-bottom: 10px;
  background-color: #f5f7f8;
  color: #211951;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  outline: none;
  border: none;
  /* border: 2px solid #211951; */
}
.container-contact img {
  top: 40px;
  width: 80px;
  height: 40px;
}
.contact-form:hover {
  box-shadow: 0 0 50px #2600ff90;
}
.address img {
  width: 30px;
  height: 24px;
}
.address a {
  color: #21195184;
  text-decoration: none;
}

.address a:hover{
  color: #8576ff;
  font-weight: 600;
}

@media (max-width: 480px) {
  .navbar{
    max-width: 100%;
  }
  .navbar .logo img {
    width: 100px;
    margin-left: 50px;
    margin-top: 15px;
  }
  .container {
    padding: 0;
    width: 100%;
    text-align: center; /* Center the text inside the container */
  }
  .image {
    display: none;
  }

  .container-text{
    margin-left: 20px;
    margin-right: 20px;
  }
  .container-text h1 {
    font-size: 30px;
    top: 10px; /* Adjusted position */
    text-align: left;
    /* left: 30px; */
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    padding: 0;
  }
  .container-contact {
    flex-direction: column;
    align-items: left;
    padding: 0 0px; /* Add padding for better spacing */
  }

  .container-text p{
    /* left: 30px; */
    font-size: 20px;
    text-align: left;
    margin-left: 10vh;
    margin-right: 10vh;
    position: relative;
  }

 
  .circle{
    position: absolute;
    border-radius: 50%;
    background: #bab1ff;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
  }
  
  .small{
    z-index: -1;
    width: 100px;
    height: 100px;
    left: -50px;
    bottom: 100px;
  }
  
  .medium{
    z-index: -1;
    width: 200px;
    height: 200px;
    left: 50px;
    bottom: 100px;
  }
  
  .large{
    z-index: -1;
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: 50px;
  }
  
  .xlarge{
    z-index: -1;
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: 0px;
  }
  
  .xxlarge{
    z-index: -1;
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -50px;
  }
  .faq-section-container,
  .contact-form {
    width: 80%;
    margin: 10px;
    justify-content: center;
    align-items: center;
    padding: 0 10px; /* Add padding for better spacing */
  }
  .contact-form {
    margin-top: 20px;
    margin-left: 30px;
    justify-content: center;
    align-items: center;
    padding: 5px 0px; /* Adjust padding */
  }
  .container-contact h2{
    font-size: 20px;
  }
  .container-contact label{
    margin-left: 20px ;
    font: 16px;
  }
  .contact-form input,
  .contact-form textarea {
    width: 80%;
    margin-left: 20px;
    margin-right: 20px;
  }
  .contact-form button {
    width: 80%;
    margin-left: 10%;
    border-radius: 40px;
  }
  .faq-question,
  .faq-answer {
    font-size: 0.9em;
  }
  .container-text p {
    margin: 0;
  }
}


/* Footer section */
/*wrapper*/
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F5F7F8;
}

.footer {
  background-color: #F5F7F8;
  color: #8576FF;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  /* Change font family */
  position: relative;
  /* Position relative for absolute positioning */
}

.footer-divider {
  position: absolute;
  top: -1px;
  /* Position above the footer */
  right: 0;
  left: 0;
  height: 1px;
  /* Height of the divider */
  background-color: #8576FF;
  /* Divider color */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Align items vertically top */
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  /* Reduce the gap between sections */
  position: relative;
  /* Position relative for absolute positioning */
}

.footer-divider-vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(29% - 1px);
  /* Position at the end of the left column */
  width: 1px;
  /* Width of the divider */
  background-color: #8576FF;
  /* Divider color */
}

.footer-right {
  flex: 2.9;
  /* Right content covers 3/4 of the container */
}

.footer-left {
  /* flex: 1.1; Left content covers 1/4 of the container */
  display: flex;
  /* Display columns side by side */
  gap: 20px;
  /* Gap between columns */
}

.footer-content {
  display: flex;
  align-items: center;
}

.footer-img {
  margin-right: 20px;
  /* Space between image and content */
}

.footer-img img {
  width: 100px;
  /* Adjust image width as needed */
  height: auto;
  /* Maintain aspect ratio */
  margin-right: 3px;
  /* Space between image and content */
}

.content {
  flex: 1;
  /* Take remaining space */
  padding: 0 10px;
}

.content h3 {
  line-height: 25px;
  font-size: 20px;
  /* Increase font size */
  font-weight: 500;
  /* Make text bold */
  /* line-height: 1.2;  */
  text-wrap: stable;
}

.contact-box {
  display: flex;
  gap: 20px;
  /* Space between contact items */
  margin: 10px;
}

.contact-box1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.contact-item {
  background-color: #fcfcfd;
  color: #333;
  padding: 10px 20px;
  border: 2px solid #8576ff;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.contact-item span {
  font-weight: bold;
  margin-right: 5px;
  /* Space between label and content */
}

.contact-item:hover {
  background-color: #8576ff;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  border-top: 1px solid #8576ff;
}

.footer-bottom i {
  color: #8576FF;
  margin: 5px;
  font-size: larger;
}

.footer-bottom a {
  color: #211951;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #8576ff;
  text-decoration: underline;
}

.footer-column {
  flex: 1;
  /* Each column takes equal space */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Arrange items in column direction */
}

.footer-column ul li {
  margin-bottom: 10px;
  display: block;
  /* Ensure each item is displayed as a block element */
}

.footer-column ul li a {
  color: #211951;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  /* Ensure each link is displayed as a block element */
}

.footer-column ul li a:hover {
  color: #8576FF;
}

/* Media Queries */
@media (max-width: 1024px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      text-align: center;
  }

  .footer-divider-vertical {
      display: none;
  }

  .footer-right,
  .footer-left {
      flex: 1;
      width: 100%;
  }

  .contact-box {
      flex-direction: column;
      align-items: center;
  }

  .contact-box1 {
      margin-left: 0;
  }

  .content h3,
  .footer-column h3 {
      font-size: 22px;
  }

  .contact-item span {
      display: block;
      /* Ensure each label is on a new line */
  }

  .contact-box1 .contact-item {
      text-align: center;
      font-size: 14px;
      /* Adjust font size for better readability */
  }
}

@media (max-width: 768px) {
  .footer {
      padding: 30px 15px;
  }

  .footer-content {
      flex-direction: column;
      align-items: center;
  }

  .footer-img {
      margin-right: 0;
      margin-bottom: 15px;
  }

  .footer-img img {
      width: 80px;
  }

  .contact-item {
      padding: 8px 16px;
      font-size: 14px;
  }

  .content h3,
  .footer-column h3 {
      font-size: 20px;
  }

  .contact-box1 .contact-item {
      font-size: 14px;
      text-align: center;
      line-height: 1.5;
      /* Ensure the text wraps properly */
      white-space: normal;
      /* Allow text to wrap */
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 20px 10px;
  }

  .footer-content {
      align-items: center;
  }

  .footer-img img {
      width: 60px;
  }

  .contact-item {
      padding: 6px 12px;
      font-size: 16px;
  }

  .content h3,
  .footer-column h3 {
      font-size: 18px;
  }

  .footer-bottom {
      padding: 5px;
  }

  .footer-bottom i {
      font-size: medium;
  }

  .contact-box1 .contact-item {
      font-size: 16px;
      text-align: center;
      line-height: 1.5;
      /* Ensure the text wraps properly */
      white-space: normal;
      /* Allow text to wrap */
  }
}