

/*----------------------------------------- Navbar underline animation -------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/
.nav-link {
  position: relative;
  color: black;
  padding-bottom: 7px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-link:hover::after{
  transform: scaleX(1);
  transform-origin: bottom left;
}


/*----------------------------------------- Header dropdown ------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

/* Show dropdown menu on hover */
li.relative:hover .absolute {
    margin-top: 5px;
    display: block;
    z-index: 999; /* Set a higher z-index */
}

 /* Sticky header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; /* Adjust the background color as needed */
  z-index: 999; /* Ensure it's above other elements */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a shadow for better visibility */
}

/* Show desktop navigation on larger screens */
@media (min-width: 768px) {
  #mobile-menu-toggle {
    display: none;
  }
  #desktop-nav {
    display: flex;
  }
}

/* JavaScript (add this to your existing script) */


body {
            padding-top: 80px; /* Adjust according to header height */
        }



/* ------------------------------------------- Try Now Button Animation -----------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #fff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #fff;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}


/* ------------------------------------------- Login and Register button hover underline animation --------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

.cta {
  border: none;
  background: none;
  cursor: pointer;
}

.cta a {
  font-family: 'Lato', sans-serif;
  padding-bottom: 7px;
  letter-spacing: 2px;
  font-size: 14px;
  padding-right: 15px;
  font-weight: bold;
  
}

.hover-underline-animation {
  position: relative;
  color: black;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
  transform: scaleX(0.8);
  transform-origin: bottom left;
}


/* ------------------------------------------- Chat Section -------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/
.chat-bg{
  background-image: repeating-linear-gradient(0deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),repeating-linear-gradient(90deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
}

.chat-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #4942e4;
  box-shadow: 0 0 0 2px #4942e4;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-button svg {
  position: absolute;
  width: 24px;
  fill: #4942e4;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-button .arr-1 {
  right: 16px;
}

.chat-button .arr-2 {
  left: -25%;
}

.chat-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #4942e4;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.chat-button:hover .arr-1 {
  right: -25%;
}

.chat-button:hover .arr-2 {
  left: 16px;
}

.chat-button:hover .text {
  transform: translateX(12px);
  color: #fff;
}

.chat-button:hover svg {
  fill: #fff;

}

.chat-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #4942e4;
}

.chat-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* Media query for screens smaller than 768px (mobile devices) */
@media screen and (max-width: 767px) {
  .chat-section {
    display: block;
    
  }
}

/* ------------------------------------------- View All ----------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

.viewall {
  width: 20%;
  height: 50px;
  border-radius: 8px;
  background-color: #4942e4;
  color: #fff;
}


/*--------------------------------------------------------------------------------------------------------------------------------- 
------------------------------------------- Event Section ----------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/
.event-bg{
  background-image: repeating-linear-gradient(0deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),repeating-linear-gradient(90deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
}

/* Media query for screens smaller than 768px (mobile devices) */
@media screen and (max-width: 767px) {
  .event-section {
    display: block;
    
  }
}
/* ------------------------------------------- Event button ----------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

.event-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #4942e4;
  box-shadow: 0 0 0 2px #4942e4;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-button svg {
  position: absolute;
  width: 24px;
  fill: #4942e4;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-button .arr-1 {
  right: 16px;
}

.event-button .arr-2 {
  left: -25%;
}

.event-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #4942e4;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.event-button:hover .arr-1 {
  right: -25%;
}

.event-button:hover .arr-2 {
  left: 16px;
}

.event-button:hover .text {
  transform: translateX(12px);
  color: #fff;
}

.event-button:hover svg {
  fill: #fff;

}

.event-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #4942e4;
}

.event-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.text-right {
    text-align: right;
}

.pr-10 {
    padding-right: 2.5rem; /* Adjust padding as needed */
}


/* ------------------------------------------- Category Label Bg ----------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

.category-bg {
  background-color: #f3f3f3;
  color: #4942e4;
  font-family: 'Lato', sans-serif;
  font-weight: bold;

}

/* ------------------------------------------- Read more Button --------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

 .learn-more {
 position: relative;
 display: inline-block;
 float: right;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
 margin-top: 20px;
}

.learn-more {
 width: 12rem;
 height: auto;
}

.learn-more .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: #282936;
 border-radius: 1.625rem;
}

.learn-more .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}

.learn-more .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}

.learn-more .circle .icon.arrow::before {
 position: absolute;
 content: "";
 top: -0.29rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}

.learn-more .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: #282936;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

.learn-more:hover .circle {
 width: 100%;
}

.learn-more:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
 color: #fff;
}

/* ------------------------------------------- Event Description overflow ----------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

.event-overflow {
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

/* ------------------------------------------- Card Box Shadow overflow ----------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------*/

.card{
  border: 1px solid lightgrey;
  transition: 0.3s;
}
.card:hover {
  box-shadow:0px 5px 20px 0px lightgrey;
}


/*------------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------- About Section ----------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------*/
.about {
  background-image: repeating-linear-gradient(0deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),repeating-linear-gradient(90deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
}

.about h3 {
  font-size: 30px;
  font-weight: bolder;
}
.about p{
  font-size: 20px;
}



/*------------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------- Contact Section ----------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------*/
.contact-bg{
  background-image: repeating-linear-gradient(0deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),repeating-linear-gradient(90deg, rgba(219, 219, 219,0.2) 0px, rgba(219, 219, 219,0.2) 1px,transparent 1px, transparent 21px),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
}

.contact-card{
  padding: 30px;
  width: 70%;
  border: 1px solid lightgrey;
  border-radius: 20px;
  background-color: white;
  
}

.material-symbols-rounded {
        display: inline-block;
        width: 40px; /* Adjust size as needed */
        height: 40px; /* Adjust size as needed */
        border-radius: 50%;
        text-align: center;
        line-height: 40px; 
        background-color: #4942e4;
        color: #fff; 
    }

.contact-txt{
  margin-top: 5px;
}

form{
  width: 600px;
  border: 1px solid lightgrey;
  border-radius: 40px;
  padding: 40px;
  box-shadow: none;
  background-color: white;
}


input[type="text"],
input[type="email"],
input[type="password"] {
    height: 48px; /* Change this value as desired */
    border-radius: 5px; /* Change this value as desired */
    border: 2px solid #ccc; /* Change default border color */
    transition: border-color 0.3s; /* Add transition for smooth effect */
    box-shadow: none;


  }

/* Change border color when input fields are focused */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #4942e4; /* Change border color when focused */
    outline: none; /* Remove default focus outline */
    
}
textarea {
  border-radius: 5px; /* Change this value as desired */
    border: 2px solid #ccc; /* Change default border color */
    transition: border-color 0.3s; /* Add transition for smooth effect */
    box-shadow: none;
}
textarea:focus{
  border-color: #4942e4;
  outline: none;
}
.contact-btn{
  margin-top: 5px;
  width: 100%;
  height: 50px;
  background-color: #4942e4;
  transition: 0.3s ease-in;
}
.contact-btn:hover{
  color: #000;
  background-color: #f3f3f3;
}

/* Media query for screens smaller than 768px (mobile devices) */
@media screen and (max-width: 767px) {
  .contact-section {
    display: block;
    
  }
}
/*------------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------- Footer Section ----------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------------*/

.site-footer {
    margin-top: 30px;
    background-color: #222222;
    padding: 30px 0;
}

.site-footer h3 {
    color: #fff;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.social-links {
    padding: 0;
}

.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
}

.social-links i {
    font-size: 20px;
}

.social-icon{
  background-color: none;
  border: 2px solid #fff;
  transition: 0.3s ease-in;
}
.social-icon:hover{
  color: #000;
  background-color: #fff;
}

.divider{
  border-color: grey;
}

.footer-head{
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: bolder;
  font-size: 30px;
  margin-bottom: 5px;
}
.footer-subhead {
  color: #fff;
  font-family: 'Lato',sans-serif;
  margin-bottom: 30px;
}
.footer-title {
  font-weight: bolder;
  font-family: 'Lato', sans-serif;
  font-size: 25px;
}

.footer-description{
  color: #fff;
  
}

/* Media query for screens smaller than 768px (mobile devices) */
@media screen and (max-width: 767px) {
  .footer-section {
    display: block;
  }
  .links-footer{
    display: none;
  }
  .about-footer{
    margin-top: 25px;
  }
  .social-footer{
    margin-top: 25px;
  }
}