
/* Reset and Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  max-width: 100vw;
  overflow-x: hidden;
}
html,body{
  overflow-x: hidden;
}

.hero-container {
  padding: 0 80px;
  overflow: hidden;
}

/* Enhanced Header Styles */
.header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: .5px solid rgba(228, 228, 228);
  transition: all 0.3s ease;
}

.header-container{
  padding: 0 80px;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  height: 84px;
  position: relative;
}

/* Enhanced Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding-left: 0%;
}

.logo:hover {
  transform: scale(1.02);
}

@media (max-width:1024px) {
  .logo{
    height: 106px;
    width: 28px;
  }
  
}

/* Enhanced Navigation Styles */
.nav {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 

}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0; 
}

/* Active state for both desktop and mobile */
.nav-link.active,
.mobile-slide-menu .nav-link.active {
  color: #0d0d0e;
  font-weight: 500;
}

/* Optional: Add an underline indicator */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #777777;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: #777777;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 8px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 6px 0;
  background: transparent;
  
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.25px;
  background: #777777;
  transition: width 0.3s ease;
}

.nav-link:hover::after{
  width: 100%;
}

.nav-link:hover,
/* Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-login {
  text-decoration: none;
  color: #1e293b;
  font-weight: 400;
  font-size: 17px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "Inter";
}

.btn-login:hover {
  color: #0066ff;
}

.button-primary {
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 16px 28px;
  line-height: 28px;
}

.button-primary:hover {
  background: #006DE3;
   font-weight: 500;
  font-size: 17px;
}

.button-primary-small {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}

.button-primary-small:hover {
  background: #006DE3;
  font-weight: 500;
  font-size: 17px;
}

/* Products Dropdown */
.dropdown {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding-bottom: 8px; 
  padding-top: 8px;
}

.dropdown-arrow {
  color: #64748b;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: #1e293b;
}



.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  overflow: hidden; /* Ensure children respect border-radius */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 16px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: #777;
  display: block;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: #E7F2FF;
  color: #14142B;
  position: relative;
}

.dropdown-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #007BFF; /* blue bar */
}


/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0;
}

.mobile-menu-btn:hover {
  background: rgba(0, 125, 209, 0.08);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #475569;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* Hamburger Button Styles */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10001;
  margin-top: 10px;
  transform: scale(.90); /* Reduced overall size */
  transform-origin: top;
}

.hamburger .line {
  height: 3px;
  background-color: #2C2C44;
  border-radius: 6px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Optional layout wrapper if needed */
.ham-menu-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Line widths */
.hamburger span:nth-child(1) { width: 60%; }
.hamburger span:nth-child(2) { width: 85%; }
.hamburger span:nth-child(3) { width: 60%; }

/* Checked (X transformation) */
#menuToggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
  width: 100%;
}

#menuToggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}

#menuToggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
  width: 100%;
}


/* Slide Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: white;
  padding: 100px 40px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
}

.menu-auth-buttons{
  display: flex;
  gap: 2rem;
  align-items: center;
}
.menu-auth-buttons .btn-login{
  color: #1E1E1E;
}

/* Slide menu when checkbox is checked */
#menuToggle:checked ~ .mobile-slide-menu {
  right: 0;
}

#menuToggle:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* DARK OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: 0.4s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-slide-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-slide-menu li {
  margin-bottom: 2.3rem;
}

.mobile-slide-menu a {
  text-decoration: none;
  color: #777777;
  font-size: 18px;
}

.button-primary-small-ham {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}

.button-primary-small-ham:hover {
  background: #006DE3;
  font-weight: 500;
}

/* Responsive Hamburger*/
@media (max-width: 1024px) {
  .hamburger {
    display: flex !important;
    position: absolute;
    top: 20px;
    right: 0px;
  }
  .nav {
    display: none !important;
  }

  .auth-buttons{
    display: none !important;
  }
  .header-container {
    padding: 0 35px;
  }

  /* .nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  } */
}

/* Hover effects for interactive elements */
.btn-primary,
.btn-secondary,
.btn-signup {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-signup:hover::before {
  left: 100%;
}

.header-animate {
  opacity: 0;
  transform: translateY(69px);
}

.header-animate.header-animated {
  opacity: 1;
  animation: headerSpring 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerSpring {
  0% {
    opacity: 0;
    transform: translateY(69px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Breadcrumb Section  */

.breadcrumb{
  padding: 110px 80px 50px 80px;
}

.breadcrumb-link{
  text-decoration: none;
  color: #1E1E1E;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 133.333% */
}
.breadcrumb-separator{
  padding-right: 4px;
  padding-left: 4px;
  color: #B4B4B4;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.breadcrumb-current{
  color: #1E1E1E;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 133.333% */
}

@media (max-width:1024px) {
  .breadcrumb{
    padding: 100px 20px 24px 24px;
  }
  
}

/* Main Section  */
.main-section{
  background: #F5F5F5;
  padding: 40px 80px; /* remove 40px from other*/
}
@media (max-width:1024px) {
  .main-section{
    padding: 40px 20px;
  }
}

.blue-label {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #007BFF;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 12px;
  max-width: 0;
  opacity: 0;
}

@media (max-width: 1024px) {
  .blue-label {
      font-size: 20px;
    white-space: normal;
    max-width: 100%;
  }
}


/* Apply when scrolled into view */
.blue-label.typing {
  animation:
    fadeIn 0.3s ease forwards,
    typing 2.5s 0.3s forwards,
    blink 0.7s step-end infinite alternate;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes typing {
  to { max-width: 1000px; } /* Large enough to reveal full text */
}
@keyframes blink {
  50% { border-color: transparent; }
}


.divider {
  display: none; 
  height: 1px;
  background-color: #d9d9d9;
  border: none;
  margin: 40px 0;
   margin: 80px 70px 0px 70px ;
}


.black-heading {
  color: #1e1e1e;
  font-size: 48px;
  font-weight: 550;
  line-height: 56px;
  letter-spacing:-4%;
  font-family: "Inter";
  margin-bottom: 24px;
}
@media (max-width: 1024px){
  
  .black-heading{
   font-size: 42px;
   line-height: 52px;
   letter-spacing: -1.68px;
  }
  .divider{
    display: block;
  }
}

.grey-description {
  color: #777777;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Inter";
  letter-spacing: -0.08px;
  margin-bottom: 24px;
}
.grey-light-description {
color: #888;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: 30px; 
letter-spacing: -0.08px;
  margin-bottom: 12px;
}

@media (max-width: 1024px){
  .grey-light-description{
    font-size: 18px;
    line-height: 26px; 
  }
  .grey-description{
    font-size: 18px;
    line-height: 26px;

  }
}
.read-more-btn {
  display: inline-block;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  border: 1px solid #888888;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Inter";
  letter-spacing: 0.5px;
  background: white;
  width: fit-content;
  align-items: center;
  padding: 16px 28px;
}

.read-more-btn:hover {
  background: #007BFF;
  color: #ffffff;
   font-weight: 500;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30, 30, 30, 0.15);
}

.read-more-btn:active {
  box-shadow: 0 2px 6px rgba(30, 30, 30, 0.15);
}

@media (max-width: 1024px) {
  .read-more-btn{
      padding: 16px 20px;
      font-size: 15px;  
      line-height: 16px;
  }
}

.hero-content{
  display: flex;
  flex-direction: row;
  gap: 106px;
  justify-content: space-between;
}
.hero-main-image{
  height: 420px;
  width: 544x;
                  
}
.hero-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;

}
@media (max-width: 1024px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .hero-main-image {
    width: 100%;
    height: auto;
  }

  .hero-text {
    width: 100%;
    align-items: flex-start; /* left align content */
    text-align: left;
    padding: 0; /* optional horizontal padding */
  }
}



/* left text and right image Section */
.reporting-section{
  margin: 120px 80px 0 80px;
}


.reporting-content{
    display: flex;
    flex-direction: row;
    gap: 48px;
    justify-content: space-between;
}
.reporting-image{
  height: 600px;
  width: 632px;
}

.reporting-text{
 display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.feature-section {
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.blue-check {
  width: 24px;
  height: 18px;
  display: flex;
  margin-top: 8px;
  margin-right: 16px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .reporting-section {
   margin: 80px 20px 0 20px;
  }

  .reporting-content {
    display: flex;
    flex-direction: column-reverse;

    gap: 40px;
    align-items: center;
  }

  .reporting-image {
    width: 100%;
    height: auto;
  
  }
}


 /* left image and right text section  */
.lead-section{
  margin: 120px 80px 120px 80px;
}
.lead-content{
     display: flex;
    flex-direction: row;
    gap: 148px;
    justify-content: space-between;
}
.lead-image{
  height: 600px;
  width: 522px;
}

.lead-text{
 display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .lead-section {
   margin: 80px 20px 80px 20px;
  }

  .lead-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .lead-image {
    width: 100%;
    height: auto; 
  }
}


.Client-Management-content{
     display: flex;
    flex-direction: row;
    gap: 103px;
    justify-content: space-between;
}
.Client-Management-image{
  height: 600px;
  width: 577px;
}
@media (max-width: 1024px) {
  
  .Client-Management-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .Client-Management-image {
    width: 100%;
    height: auto; 
  }
}


.Schedule-content{
     display: flex;
    flex-direction: row;
    gap: 152px;
    justify-content: space-between;
}
.Schedule-image{
  height: 600px;
  width: 527px;
}

@media (max-width: 1024px) {
  
  .Schedule-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .Schedule-image {
    width: 100%;
    height: auto;
  }
}
.manage-content{
     display: flex;
     flex-direction: row;
     gap: 102px;
     justify-content: space-between;
}
.manage-image{  
  height: 600px;
  width: 578px;
}
@media (max-width: 1024px) {
  
  .manage-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .manage-image {
    width: 100%;
    height: auto;
  }
}

.Sports-Facilities-content{
     display: flex;
    flex-direction: row;
    gap: 180px;
    justify-content: space-between;
}
.Sports-Facilities-image{
  height: 600px;
  width: 500px;
}
@media (max-width: 1024px) {
  
  .Sports-Facilities-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .Sports-Facilities-image {
    width: 100%;
    height: auto;
  }
}


.Academy-content{
     display: flex;
    flex-direction: row;
    gap: 154px;
    justify-content: space-between;
}
.Academy-image{
  height: 600px;
  width: 526px;
}
@media (max-width: 1024px) {
  
  .Academy-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .Academy-image {
    width: 100%;
    height: auto;
  }
}
.Challenges-content{
   display: flex;
    flex-direction: row;
    gap: 98px;
    justify-content: space-between;
}
.Challenges-Image{
  height: 600px;
  width: 582px;
}

@media (max-width: 1024px) {
  
  .Challenges-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .Challenges-Image {
    width: 100%;
    height: auto; 
  }
}

.Marketing-content{
    display: flex;
    flex-direction: row;
    gap: 153px;
    justify-content: space-between;
}
.Marketing-image{
  height: 600px;
  width: 526px;
}
@media (max-width: 1024px) {
  
  .Marketing-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .Marketing-image {
    width: 100%;
    height: auto;
  }
}

.Profiles-Packages-content{
    display: flex;
    flex-direction: row;
    gap: 151px;
    justify-content: space-between;
}
.Profiles-Packages-image{
  height: 600px;
  width: 529px;
}

@media (max-width: 1024px) {
  
  .Profiles-Packages-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .Profiles-Packages-image {
    width: 100%;
    height: auto; 
  }
}
.Payment-Gateway-content{
    display: flex;
    flex-direction: row;
    gap: 99px;
    justify-content: space-between;
}
.Payment-Gateway-image{
  height: 600px;
  width: 581px;
}

@media (max-width: 1024px) {
  
  .Payment-Gateway-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .Payment-Gateway-image {
    width: 100%;
    height: auto; 
  }
}

.Meta-Integration-content{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}
.Meta-Integration-image{
  height: 600px;
  width: 600px;
}

@media (max-width: 1024px) {
  
  .Meta-Integration-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .Meta-Integration-image {
    width: 100%;
    height: auto; 
  }
}

.ivr-integration-content{
   display: flex;
    flex-direction: row;
    gap: 180px;
    justify-content: space-between;
}
.ivr-integration-image{
  height: 600px;
  width: 500px;
}

@media (max-width: 1024px) {
  
  .ivr-integration-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .ivr-integration-image {
    width: 100%;
    height: auto;
 
  }
}
.iframes-content{
   display: flex;
    flex-direction: row;
    gap: 118px;
    justify-content: space-between;
}
.iframes-image{
  width: 562px;
  height: 600px;

}
@media (max-width: 1024px) {
  
  .iframes-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .iframes-image {
    width: 100%;
    height: auto;
  }
}

.inbody-content{
   display: flex;
    flex-direction: row;
    gap: 180px;
    justify-content: space-between;
}
.inbody-image{
  width: 500px;
  height: 600px;
}

@media (max-width: 1024px) {
  
  .inbody-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .inbody-image {
    width: 100%;
    height: auto;

  }
}
.essl-content{
   display: flex;
    flex-direction: row;
    gap: 180px;
    justify-content: space-between;
}
.essl-image{
  width: 500px;
  height: 600px;
}
@media (max-width: 1024px) {
  
  .essl-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .essl-image{
    width: 100%;
    height: auto;
  }
}
.ai_test-content{
   display: flex;
    flex-direction: row;
    gap: 180px;
    justify-content: space-between;
}
.ai_test-image{
  width: 500px;
  height: 600px;
}
@media (max-width: 1024px) {
  
  .ai_test-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .ai_test-image{
    width: 100%;
    height: auto; 
  }
}
.comprehensive-content{
  display: flex;
    flex-direction: row;
    gap: 132px;
    justify-content: space-between;
}
.comprehensive-image{
  width: 548px;
  height: 600px;

}

@media (max-width: 1024px) {
  
  .comprehensive-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .comprehensive-image{
    width: 100%;
    height: auto;
  }
}

/* Request Demo Section */
.request-demo-section {
  background: url('../assets/svg_demo/RequestDemobg.webp') center center/cover no-repeat;
  height: 416px;
}
.demo-container {
  height: 416px;
}
.demo-content {
  height: 416px;
  padding-top: 60px;
  padding: 60px 200px 60px 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.demo-content.request-demo-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.demo-content-mask {
  height: auto; 
  position: relative;
}

@media (max-width: 1024px) {
 
  .request-demo-section {
    background: url('../assets/svg_demo/request_demo_bg_mob.webp') center center/cover no-repeat;
    height: 690px;
  }
  .demo-content{
    padding: 100px 20px;
  }
}











/* Footer Styles */
.footer {
  background: #007BFF;
  padding: 54px 100px 64px 100px;
}
.copy-right{
  color: #F2F2F7;
  margin-top: 20px;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.powerd-by{
  color: #F2F2F7;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-socials {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}
.footer-title {
  color:  #F2F2F7;
font-family: "Inter";
font-size: 20px;

font-weight: 600;
line-height: 24px; 

}
.footer-links a {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  color: #F4F4F4;
 font-family: "Inter";
 text-decoration: none;
 font-size: 16px;
 font-weight: 300;
}
.footer-links a:hover {
  color: #ffffff; 
  font-weight: 400;

}
.footer-col ul li a:hover {
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 1024px) {
  .footer {
    padding: 80px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-col {
    width: 100%;
  }

  .footer-logo {
    margin-top: 0;
  }

  .footer-socials {
    margin-top: 16px;
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .copy-right {
    font-size: 14px;
    margin-top: 24px;
    line-height: 24px;
  }
}

.right-image-animate  .main-section,
.right-image-animate  .lead-section{
  opacity: 0;
  transform: translateX(-100vw);
}
.right-image-animate.right-image-animated {
  opacity: 1;
  animation: rightImageSlideIn 0.4s ease-in forwards;
}


@keyframes rightImageSlideIn {
  0% {
    opacity: 1;
    transform: translateX(-60vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



.left-image-animate .reporting-section{ 
  opacity: 0;
  transform: translateX(100vw);
}
.left-image-animate.left-image-animated {
  opacity: 1;
  animation: leftImageSlideIn 0.4s ease-in forwards;
}


@keyframes leftImageSlideIn {
  0% {
    opacity: 1;
    transform: translateX(60vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.hero-title-mask {
  overflow: hidden;
  height: auto; 
}

.hero-title-animate {
  opacity: 0;
  transform: translateY(100%);
}
.hero-title-animate.hero-title-animated {
  opacity: 1;
  animation: heroTitleRevealSpring 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroTitleRevealSpring {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  20% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Demo Poup */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem; /* adds spacing inside on small screens */
}


.modal-content {
  background: #ffffff;
  position: relative;
  border-radius: 8px;
}
.modal-top{
  display: flex;
  flex-direction: row;
  padding-bottom: 24px;
  border-bottom: 1px solid #E4E4E4;
}
.model-title {
  color: #1E1E1E;
  font-family: "Inter";
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-left: 1rem;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1000;
}
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }


.form-wrapper {
  background: #ffffff;
  width: 90vw;
  max-width: 750px;
  border-radius: 8px;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-250px);
  }
}

#demoModal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#demoModal.fade-in {
  animation: modalFadeIn 0.3s ease-out forwards;
}

#demoModal.fade-out {
  animation: modalFadeOut 0.3s ease-in forwards;
}

@keyframes navbarFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes navbarFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#navbar.fade-in {
  animation: navbarFadeIn 0.3s ease forwards;
  display: block;
}

#navbar.fade-out {
  animation: navbarFadeOut 0.3s ease forwards;
}



@media (max-width: 1024px) {
  .contact-form-section{
    padding: 0;
  }
  .contact-form-container{
    padding: 100px 20px;
  }
  .form-wrapper{
    width: 100%;
    padding: 24px;
  }
  .submit-btn{
    margin-top: 4px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: #1e1e1e;
  margin-bottom: 8px;
  text-align: left;
  font-family: "Inter" ;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #212121;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter" ;
  background: #ffffff;
}

.form-input:focus {
  outline: none;
  border: 1.5px solid #007BFF;
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #212121;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter" ;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  resize: vertical;
  min-height: 100px;
}

.form-textarea:focus {
  outline: none;
  border-color: #0d8cff;
  box-shadow: 0 0 0 3px rgba(13, 140, 255, 0.1);
}

.form-textarea:hover {
  border-color: #0d0d0e;
}

.form-textarea::placeholder {
  color: #94a3b8;
  font-style: italic;
}

.submit-btn {
  color: #ffffff;
  font-weight: 400;
  width: 100%;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 16px 28px;
}

.submit-btn:hover {
 background: #006DE3;
   font-weight: 500;
  font-size: 17px;
}
.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: 100%;
}

.toast {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-left: 4px solid;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  max-width: 100%;
}

.toast-success {
  border-left-color: #10b981;
}

.toast-error {
  border-left-color: #ef4444;
}

.toast-show {
  opacity: 1;
  transform: translateX(0);
}

.toast-hide {
  opacity: 0;
  transform: translateX(100%);
}

.toast-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-success .toast-icon {
  color: #10b981;
}

.toast-error .toast-icon {
  color: #ef4444;
}

.toast-message {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  color: #6b7280;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .toast-content {
    padding: 14px 16px;
  }
  
  .toast-message {
    font-size: 13px;
  }
}

/* Animation for multiple toasts */
.toast:nth-child(1) { animation-delay: 0ms; }
.toast:nth-child(2) { animation-delay: 100ms; }
.toast:nth-child(3) { animation-delay: 200ms; }
.toast:nth-child(4) { animation-delay: 300ms; }
.toast:nth-child(5) { animation-delay: 400ms; }











