body {
  margin: 0px;
  background-color: #000000;
  font-family: "Poppins", sans-serif;
  height: auto;

  position: relative;
}

button {
  font-family: "Poppins", sans-serif;
  border: none;
  background-color: transparent;
  font-size: 15px;
  margin: 0;
  cursor: pointer;
}

html {
  -webkit-font-smoothing: antialiased;
}

a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  font-size: 15px;
  margin: 0;
  display: flex;
  grid-gap: 12px;
  padding: 12px 24px;
  border-radius: 15px;
  box-sizing: border-box;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;

  width: fit-content;
  align-items: center;
}

.primary-btn {
    color: #32323b;
    background-image: linear-gradient(to bottom, 
        rgba(255, 255, 0, 0.8), 
        rgba(255, 236, 54, 0.8));
    border: 1px solid rgba(255, 236, 168, 1);
    backdrop-filter: blur(10px);
    transform: skewX(-10deg);
    width: fit-content;
    height: 50px;
    padding: 0 24px;
    border-radius: 20px 5px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.4), 
                0 5px 15px rgba(255, 255, 0, 0.4), 
                inset 0 1px rgba(255, 236, 168, 1), 
                inset 0 -1px rgba(255, 236, 168, 1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: "";
    display: block;
    width: calc(100% - 12px);
    height: calc(100% - 8px);
    position: absolute;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px 3px 15px 3px;
    box-shadow: inset 0 0 20px 0 rgba(255, 236, 168, 0.5);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    box-shadow: 0 0 50px rgba(255, 255, 0, 0.6), 
                0 5px 20px rgba(255, 255, 0, 0.6), 
                inset 0 1px rgba(255, 236, 168, 1), 
                inset 0 -1px rgba(255, 236, 168, 1);
    transform: skewX(-10deg) translateY(-2px);
}

.primary-btn:hover::before {
    box-shadow: inset 0 0 30px 0 rgba(255, 236, 168, 0.7);
}

.primary-btn:active {
    transform: skewX(-10deg) translateY(1px);
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.4), 
                0 2px 10px rgba(255, 255, 0, 0.4), 
                inset 0 1px rgba(255, 236, 168, 1), 
                inset 0 -1px rgba(255, 236, 168, 1);
}

/* If your button contains an icon, adjust its position */
.primary-btn img, 
.primary-btn svg {
    margin-left: 12px;
    transform: skewX(10deg); /* Counter the button skew for the icon */
}

/* Adjust the text to counter the button skew */
.primary-btn span {
    transform: skewX(10deg);
    display: inline-block;
}

@media (max-width: 800px) {
  .primary-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-weight: bold;
  color: white;
}

@media (max-width: 1240px) {
  h1 {
    font-size: 39px;
  }
}

@media (max-width: 1050px) {
  h1 {
    font-size: 33px;
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  color: white;
  font-weight: 600;
}

@media (max-width: 1050px) {
  h2 {
    font-size: 27px;
  }
}

@media (max-width: 800px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  color: #32323b;
  font-weight: bold;
}

@media (max-width: 1240px) {
  h3 {
    font-size: 30px;
  }
}

@media (max-width: 1050px) {
  h3 {
    font-size: 27px;
  }
}

@media (max-width: 800px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  color: #32323b;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: bold;
}

h4 strong {
  color: #ffff00;
}

@media (max-width: 1050px) {
  h4 {
    font-size: 36px;
  }
}

@media (max-width: 800px) {
  h4 {
    font-size: 27px;
  }
}

p {
  font-size: 25px;
  color: #ffff00;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

p strong {
  color: white;
  font-weight: 600;
}

p.black-p {
  color: #6a6b73;
  font-weight: 500;
}

p.black-p strong {
  color: #32323b;
  font-weight: 700;
}

.logo-a {
  display: grid;
  align-items: center;
}

.color-white {
  color: white;
}

.white-bg {
  background-color: rgb(0, 0, 0);
}
header {
  display: flex;
  justify-content: space-between;

  background: #0000008a;
  backdrop-filter: blur(12px);
  padding-left: 21px;
  padding-right: 42px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  margin-top: 33px;

  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 12px;

  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 800px) {
  header {
    padding-left: 15px;
    padding-right: 21px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

header img {
  max-width: 250px;
  width: 100%;
  display: block;
  height: auto;
}

@media (max-width: 800px) {
  header img {
    max-width: 120px;
  }
}

.header-links {
  display: flex;
  grid-gap: 42px;
}

@media (max-width: 1050px) {
  .header-links {
    display: none;
  }
}

.header-links a {
  display: inline-block;
  padding: 0;
  margin: 0;
  height: fit-content;
  width: fit-content;
  color: white;
  font-weight: 500;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header-links a.active-nav-link {
  color: #ffff00;
}

.header-links a:hover {
  color: #ffff00;
}

.logo-a {
  padding: 0;
  margin: 0;
}

.container-top-home {
  padding-bottom: 320px;
  padding-top: 100px;
  background-image: url(img/Home-bg-top2.webp);
  background-size: cover;
  object-fit: contain;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 500px;


  margin-bottom: 140px;
  position: relative;
}

@media (max-width: 1050px) {
  .container-top-home {
    padding-bottom: 240px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-bottom: 120px;
  }
}

@media (max-width: 800px) {
  .container-top-home {
    padding-bottom: 140px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-bottom: 80px;
  }
}

@media (max-width: 599px) {
  .container-top-home {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-bottom: 100px;
  }
}

.navbar {
  position: fixed;
  width: 100%;
  top: 33px;
  padding: 0 24px;
  box-sizing: border-box;
  z-index: 99;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.navbar.hide {
  transform: translateY(-120%);
  transition: transform 0.3s ease-in-out;
}

/* NAV MENU BEGINS */

.nav-toggle {
  display: grid !important;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height: 20px;
  width: 26px;
  cursor: pointer;
  z-index: 100;
  outline: none;
  align-content: space-between;
  grid-gap: 5px;
  padding: 0;
  margin-top: 6px;
}

.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 0;
  background-color: #ffff00;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Improve animation for burger menu */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  position: absolute;
  z-index: 9;
  top: -33px;
  right: -24px;
  height: 100%;
  max-width: 100%;
  width: 80%;
  padding: 100px 0 0 0;
  overflow-y: auto;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.5s cubic-bezier(0.8, 0.1, 1, 1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100vw;
  height: 100vh;
}

@media (max-width: 599px) {
  .nav-mobile {
    top: -24px;
    width: 100%;
  }
}

.nav-toggle:hover .spanic {
  background-color: #ffff00;
}

.menu-right {
  display: flex;
  align-items: center;
  grid-gap: 12px;
}

.menu-right h4 {
  padding: 0;
  letter-spacing: 2.4px;
}
@media (max-width: 800px) {
  .menu-right h4 {
    display: none;
  }
}

.nav-mobile.show {
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.8, 0.1, 1, 1);
}

.nav-mobile {
  display: grid;
  justify-content: center;
  align-content: center;
}

.main-ul {
  display: grid;
  grid-gap: 33px;
  justify-items: center;
  width: 100%;
}

@media (max-width: 1050px) {
  .main-ul {
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
    grid-gap: 30px;
  }
}

.part-1 {
  display: flex;
  grid-gap: 33px;
  justify-items: center;
  flex-direction: column;
  width: 100%;
}

@media (max-width: 1050px) {
  .part-1 {
    display: grid;
    grid-gap: 30px;
  }
  
  .part-1 a {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .part-1 a:hover,
  .part-1 a.active-nav-link {
    color: #ffff00;
    background: rgba(255, 255, 0, 0.1);
    transform: translateY(-2px);
  }
}

.part-1 a {
  font-weight: 600;
  font-size: 24px;
  color: #6a6b73;

  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

@media (max-width: 1050px) {
  .part-1 a {
    font-size: 18px;
  }
}

.part-1 a:hover {
  color: #01a998;
}
/* NAV MENU ENDS */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 5% auto; /* Reduced top margin */
  padding: 20px;
  border: 1px solid #888;
  width: 90%; /* Increased width */
  max-width: 1000px; /* Increased max-width */
  box-sizing: border-box;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#videoContainer {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
}

.nav-afi-links {
  display: none;
}

@media (max-width: 1050px) {
  .nav-afi-links {
    display: block;
  }
}

footer {
  background-image: url(img/bg-footer2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: contain;
  background-position: center center;
  position: relative;
  z-index: 5;
}

.container-footer {
  max-width: 1336px;
  width: 100%;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 1050px) {
  .container-footer {
    grid-template-columns: 1fr 1fr;
    grid-gap: 42px;
    grid-row-gap: 80px;
  }
}

@media (max-width: 800px) {
  .container-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 599px) {
  .container-footer {
    grid-template-columns: 1fr;
    grid-row-gap: 27px;
  }
}

.first-footer-div .footer-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
}

.copyright {
  border-top: 1px solid #000000;
  padding: 48px 45px;
  margin-top: 90px;
}

@media (max-width: 599px) {
  .copyright {
    margin-top: 51px;
    padding: 42px 24px;
  }
}

.container-copy {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1050px) {
  .container-copy {
    display: grid;
    grid-gap: 60px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 599px) {
  .container-copy {
    justify-content: start;
    text-align: left;
    grid-gap: 51px;
  }
}

.right-part-links {
  display: flex;
  grid-gap: 42px;
}

@media (max-width: 599px) {
  .right-part-links {
    display: grid;
    grid-gap: 27px;
  }
}

.right-part-links a {
  padding: 0;
  margin: 0;
  font-weight: 500;
  color: #6a6b73;
}

.right-part-links a:hover {
  color: #ffff00;
}

.social-div {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 599px) {
  .social-div {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 18px;
    width: fit-content;
    display: grid;
  }
}

.social-div a {
  padding: 10px;
  background-color: rgb(19, 19, 19);
  border-radius: 9px;
  box-shadow: 0px 13px 15px -17px rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.social-div a:hover {
  box-shadow: none;
  background-color: #ffff00;
  transform: translateY(-3px);
  transition: all 0.2s ease;
}

.social-div a:hover img {
  filter: brightness(0) invert(0);
}

.info-div {
  display: flex;
  grid-gap: 12px;
  align-items: center;
}

.info-div a {
  margin: 0;
  padding: 0;
  color: #ffff00;
  font-weight: 600;
}

.info-div a:hover {
  color: #32323b;
}

.footer-links {
  display: grid;
  grid-gap: 27px;
}

.footer-links a {
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffff00;
}

footer h5 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  padding-bottom: 24px;
  margin: 0;
}

.second-footer-div {
  display: grid;
  justify-content: center;
  padding-right: 48px;
}

.newsletter-part {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    135deg,
    #ffff00 0%,
    #000000 100%
  );
  border-radius: 24px;
  padding: 24px 30px 30px 30px;
  margin-bottom: 51px;
  box-shadow: 0px 57px 34px -55px rgba(0, 0, 0, 0.42);
}


@media (max-width: 599px) {
  .newsletter-part {
    padding: 18px;
    padding: 24px 15px;
    border-radius: 15px;
  }
}

.newsletter-part h5 {
  padding-bottom: 15px;
}

.newsletter-part p {
  padding-bottom: 27px;
}

.input-div {
  display: grid;
  grid-gap: 24px;
}

.input-div input {
  outline: none;
  border: none;
  padding: 15px;
  border-radius: 9px;
  font-family: "Poppins", sans-serif;
  color: #84858e;
  font-size: 15px;
}

.footer-logo {
  padding-bottom: 27px;
}

.p-first {
  padding-bottom: 15px;
}

.info-outter {
  display: grid;
  grid-gap: 24px;
}

.first-footer-div {
  padding-top: 120px;
}

@media (max-width: 599px) {
  .first-footer-div {
    padding-top: 80px;
  }
}

.second-footer-div {
  padding-top: 120px;
}

@media (max-width: 599px) {
  .second-footer-div {
    padding-top: 0;
    padding-right: 0;
    justify-content: start;
    padding-top: 33px;
    padding-bottom: 36px;
  }
}

.third-footer-div {
    position: relative;
    z-index: 5;
    /* Adjusting the transform to ensure the element is fully visible */
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .third-footer-div {
        transform: none;
        grid-column: 1 / -1;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 599px) {
  .third-footer-div {
    margin-left: 0;
  }
}

.btns-download {
  display: flex;
  grid-gap: 21px;
}

@media (max-width: 599px) {
  .btns-download {
    display: grid;
    grid-gap: 12px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #ffff00;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ffff00;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 1);
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 1);
}
/* Scrollbar ENDS*/
.hero-section {
  max-width: 1336px;
  padding: 100px 48px 40px 48px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 51px;
  box-sizing: border-box;
}

.left-side-hero h1 {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: textGlow 2s ease-in-out infinite alternate;
}

.left-side-hero h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffff00, transparent);
  animation: underlineGlow 2s ease-in-out infinite;
}

.left-side-hero p {
  color: #ffff00;
  opacity: 0.9;
  animation: textPulse 3s ease-in-out infinite;
}

.right-side-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.right-side-hero img {
  
  width: 100%;
  max-height: 800px;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}

.right-side-hero::before,
.right-side-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
}

.right-side-hero::before {
  background: radial-gradient(circle, rgba(255, 255, 0, 0.2) 0%, rgba(255, 255, 0, 0) 70%);
  animation: haloEffect 4s ease-in-out infinite;
  z-index: 1;
}

.right-side-hero::after {
  background: radial-gradient(circle, rgba(255, 255, 0, 0.1) 0%, rgba(255, 255, 0, 0) 60%);
  animation: haloEffect 4s ease-in-out infinite 2s;
  z-index: 1;
}

.right-side-hero:hover img {
  transform: scale(1.05);
}

@keyframes haloEffect {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

@media (max-width: 800px) {
  .right-side-hero img {
    max-width: 420px;
    margin: 0 auto;
  }
}

.btns-middle {
  display: flex;
  grid-gap: 18px;
  margin-top: 30px;
}
.btns-middle {
    display: flex;
    align-items: center;
    grid-gap: 18px;
    margin-top: 30px;
}

.video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, 
        rgba(255, 255, 0, 0.8), 
        rgba(255, 236, 54, 0.8));
    border: 1px solid rgba(255, 236, 168, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #32323b;
    font-weight: 600;
    font-size: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-btn::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: inset 0 0 10px 0 rgba(255, 236, 168, 0.5);
    transition: all 0.3s ease;
}

.video-btn img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.video-btn:hover {
    width: auto;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.6), 
                0 5px 15px rgba(255, 255, 0, 0.6);
}

.video-btn:hover::before {
    border-radius: 25px;
    box-shadow: inset 0 0 20px 0 rgba(255, 236, 168, 0.7);
}

.video-btn:hover img {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .btns-middle {
        flex-direction: column;
        align-items: stretch;
    }

    .video-btn {
        width: auto;
        height: 50px;
        border-radius: 25px;
        font-size: 14px;
        padding: 0 20px;
    }

    .video-btn::before {
        border-radius: 25px;
    }

    .video-btn img {
        margin-right: 8px;
    }
}

.below-part {
  display: flex;
  grid-gap: 15px;
  margin-top: 40px;
}

.soc-foot-link {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.soc-foot-link:hover {
  background-color: #ffff00;
  transform: translateY(-5px);
}

.soc-foot-link:hover img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(18%) saturate(509%)
    hue-rotate(202deg) brightness(95%) contrast(85%);
}

.why-TimeCounts {
  max-width: 1336px;
  padding: 60px 48px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.why-TimeCounts h3 {
  color: #ffff00;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-TimeCounts p {
  color: #ffffff;
  max-width: 600px;
  line-height: 1.6;
}

@keyframes textGlow {
  0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
  100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 0, 0.3); }
}

@keyframes underlineGlow {
  0%, 100% { width: 0; opacity: 0; }
  50% { width: 100%; opacity: 1; }
}

@keyframes textPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

@keyframes haloEffect {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

@media (max-width: 1050px) {
  .hero-section {
    grid-gap: 18px;
  }
  
  .btns-middle {
    display: grid;
  }
}

@media (max-width: 800px) {
  .hero-section {
    padding: 42px 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .right-side-hero {
    grid-row: 1;
  }

  .btns-middle, .below-part {
    justify-content: center;
  }

  .why-TimeCounts {
    padding: 40px 24px;
    text-align: center;
  }

  .why-TimeCounts p {
    margin: 0 auto;
  }
}

@media (max-width: 599px) {
  .hero-section {
    grid-gap: 0;
  }

  .btns-middle {
    display: grid;
  }

  .below-part .soc-foot-link {
    padding: 10px;
  }
}

/* Features Section */
/* Swiper Slider */
.swiper {
  width: 100%;
  height: 100%;
}
/* Swiper Slider ENDS */

/* CHART BEGINS */

/* CHART ENDS */

/* AI Section Starts */
.features-AI-section {
    background: #000000;
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.features-AI-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 46px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.section-subtitle {
    font-size: 25px;
    text-align: center;
    margin-bottom: 60px;
    color: #F4FF36;
    font-weight: 500;
}

.features-AI-showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.feature-AI-column {
    flex: 0 0 30%;
}

.feature-AI-item {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.feature-AI-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature-AI-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-AI-item p {
    font-size: 14px;
    color: #ffffff;
}

.app-AI-showcase {
    flex: 0 0 40%;
    position: relative;
    display: flex;
    justify-content: center;
}

.app-AI-screen {
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.app-screen-image {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slideshow 10s infinite;
}

.app-screen-image:nth-child(1) {
    animation-delay: 0s;
}

.app-screen-image:nth-child(2) {
    animation-delay: 5s;
}

@keyframes slideshow {
    0%, 45%, 100% { opacity: 0; }
    50%, 95% { opacity: 1; }
}

.app-AI-screen::after {
    content: "";
    display: block;
    padding-bottom: 216.67%; /* Assuming a 9:16 aspect ratio for the phone screen */
}

.floating-element {
    position: absolute;
    padding: 15px;
    background-image: linear-gradient(to bottom, 
        rgba(244, 255, 54, 0.9), 
        rgba(255, 236, 54, 0.9));
    border: 1px solid rgba(255, 236, 168, 1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(244, 255, 54, 0.6),
                0 5px 15px rgba(244, 255, 54, 0.6),
                inset 0 1px rgba(255, 236, 168, 1),
                inset 0 -1px rgba(255, 236, 168, 1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-element::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: inset 0 0 15px 0 rgba(255, 236, 168, 0.5);
    animation: pulse 2s infinite alternate;
}

.productivity {
    left: 0;
    top: 20%;
    width: 100px;
    height: 100px;
}

.ai-powered {
    right: 0;
    top: 50%;
    width: 80px;
    height: 80px;
}

.productivity-text, .ai-text {
    font-size: 0.8rem;
    text-align: center;
    color: #2A2B36;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

/* Hover effect */
.floating-element:hover {
    box-shadow: 0 0 50px rgba(244, 255, 54, 0.8),
                0 5px 20px rgba(244, 255, 54, 0.8),
                inset 0 1px rgba(255, 236, 168, 1),
                inset 0 -1px rgba(255, 236, 168, 1);
    transform: scale(1.05);
}

.floating-element:hover::before {
    box-shadow: inset 0 0 25px 0 rgba(255, 236, 168, 0.7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .floating-element {
        position: relative;
        margin: 20px auto;
    }
    
    .productivity, .ai-powered {
        left: auto;
        right: auto;
        top: auto;
    }
}

/* New Stylized Button Styles */

@keyframes breath {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0.95); }
}

@keyframes breath2 {
    0% { transform: translateX(-50%) skewX(-10deg) scaleX(1); }
    100% { transform: translateX(-50%) skewX(-10deg) scaleX(0.95); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-AI-showcase {
        flex-direction: column;
    }
    
    .feature-AI-column, .app-AI-showcase {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .app-AI-screen {
        margin: 0 auto;
    }

    .app-screen-image {
        position: relative;
        opacity: 1;
        animation: none;
    }

    .app-screen-image:nth-child(2) {
        display: none;
    }

    .floating-element {
        position: relative;
        margin: 20px auto;
    }

    @keyframes breath2 {
        0% { transform: skewX(-10deg) scaleX(1); }
        100% { transform: skewX(-10deg) scaleX(0.95); }
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }
}
/* AI Section end */

.right-side-banner {
  padding: 30px;
  display: grid;
  justify-content: center;
}

.right-side-banner img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.banner-container {
  max-width: 1336px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-sizing: border-box;
  padding: 200px 48px 120px 48px;
  align-items: center;
  align-content: center;
}

.banner-container h1 {
  margin: 0;
  padding: 0;
  padding-bottom: 24px;
}

.banner-container p {
  max-width: 350px;
  padding-bottom: 42px;
}

.banner-innerpage {
  background-image: url(img/bg-innerpage.jpg);
  background-size: cover;
  object-fit: contain;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 150px;
  position: relative;
  margin-bottom: 120px;
}

@media (max-width: 1050px) {
  .banner-innerpage {
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }
}

@media (max-width: 599px) {
  .banner-innerpage {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

@media (max-width: 800px) {
  .banner-container {
    grid-template-columns: 1fr;
    grid-gap: 48px;
    justify-content: center;
    justify-items: center;
    text-align: center;
    padding: 180px 24px 120px 24px;
  }

  .left-side-banner {
    display: grid;
    justify-content: center;
    justify-items: center;
  }
}

.img-600 {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(2, 2);
    opacity: 0;
  }
}

@keyframes scroll-dot {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}

/*App Showcase */

.app-showcase {
    background: #000000;
    padding: 80px 0;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    color: #ffff00;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.showcase-carousel {
    position: relative;
    overflow: hidden;
}

.showcase-slide {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase-slide.active {
    display: grid;
    opacity: 1;
}

.showcase-item {
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    max-width: 100%;
    margin: 0 auto;
}

.showcase-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.showcase-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 0, 0.9);
    color: #000000;
    padding: 20px;
    border-radius: 15px;
    opacity: 0;
    transform: rotateY(180deg);
    transition: opacity 0.5s, transform 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backface-visibility: hidden;
}

.showcase-item:hover .showcase-info {
    opacity: 1;
    transform: rotateY(0deg);
}

.showcase-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000000;
}

.showcase-info p {
    font-size: 16px;
    color: #000000;
}

.showcase-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.nav-button {
    background: rgba(255, 255, 0, 0.2);
    border: none;
    color: #ffff00;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 0, 0.4);
}

.nav-indicator {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    border-radius: 2px;
    overflow: hidden;
}

.nav-indicator::before {
    content: '';
    display: block;
    width: var(--progress, 25%);
    height: 100%;
    background: #ffff00;
    transition: width 0.3s ease;
}

/* Responsive Styles */

/* Desktop: 4 items per slide */
@media (min-width: 769px) {
    .showcase-slide {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet: 2 items per slide */
@media (max-width: 768px) and (min-width: 481px) {
    .showcase-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 item per slide */
@media (max-width: 480px) {
    .showcase-slide {
        grid-template-columns: 1fr;
    }

    .showcase-slide.active {
        display: grid;
        opacity: 1;
    }

    .showcase-carousel {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .showcase-slide {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .showcase-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .showcase-info {
        background: rgba(255, 255, 0, 0.9);
        color: #000000;
    }
}

/* Features Page Styles */
.feature-item {
    margin-bottom: 40px;
}

.feature-item h3 {
    color: #ffff00;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.feature-list li {
    color: #6a6b73;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    
    .feature-item h3 {
        font-size: 20px;
    }
}

/* Social media icons styling */
.social-div a img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0 120px;
}

/* Style for the banner heading */
.banner-innerpage .left-side-banner h1 {
    color: #ffff00;
    margin-bottom: 20px;
    text-shadow: none;
}

.banner-innerpage .left-side-banner p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

.contact-container {
    max-width: 1336px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 30px;
}

.contact-info p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-highlights {
    margin: 40px 0;
}

.contact-highlights h3 {
    color: #ffff00;
    font-size: 24px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.highlight-item img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    object-fit: contain;
}

.highlight-item-content h4 {
    color: #ffff00;
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight-item-content p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.info-card h3 {
    color: #ffff00;
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

select.form-control {
    appearance: none;
    background-image: url('img/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

/* Add gradient text effect for the contact page heading */
.gradient-text {
    background: linear-gradient(to right, #ffffff, #ffff00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
    font-weight: 700;
    animation: gradientPulse 3s ease-in-out infinite alternate;
}

@keyframes gradientPulse {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.gradient-text {
    background-size: 200% 200%;
    background: linear-gradient(to right, #ffffff 0%, #f4ff36 50%, #ffff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

/* Responsive adjustments for contact page */
@media (max-width: 1024px) {
    .contact-container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 800px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-section {
        padding: 40px 0 80px;
    }
    
    .highlight-item img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-item img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Fix for subscribe box in footer */
.third-footer-div {
    position: relative;
    z-index: 5;
}

.cta-section {
    position: relative;
    z-index: 1;
    margin-bottom: 30px; /* Add space between CTA and footer */
}

.newsletter-part {
    position: relative;
    z-index: 10;
    background: linear-gradient(
        135deg,
        #ffff00 0%,
        #000000 100%
    );
    /* Other existing properties */
}

footer {
    position: relative;
    z-index: 5;
}

.instruction-card li { margin-bottom:15px }

.instruction-card p {
    color: white;
    line-height: 1.6;
}

.instruction-card a {
    color: #f4ff36;
    text-decoration: underline;
}

/* Hero Video Container */
.hero-video-container {
    width: 100%;
    height: 0;
    padding-bottom: 66.25%; /* 16:9 aspect ratio */
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments for hero section with video */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    
    .right-side-hero {
        margin-top: 30px;
        width: 100%;
    }
    
    .hero-video-container {
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Enhanced responsive styles for features page */

@media (max-width: 768px) {
    /* Better banner on mobile */
    .banner-innerpage {
        margin-bottom: 60px;
    }
    
    .banner-container {
        padding: 140px 24px 80px 24px;
    }
    
    .banner-container h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .banner-container p {
        max-width: 100%;
        text-align: center;
        font-size: 18px;
    }
    
    /* Fix tabs on mobile */
    .tab-button {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card h3 {
        font-size: 20px;
    }
    
    .feature-list li {
        font-size: 14px;
    }
    
    /* Fix CTA section on mobile */
    .cta-container {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .banner-container h1 {
        font-size: 28px;
    }
    
    .banner-container p {
        font-size: 16px;
    }
    
    .right-side-banner img {
        max-width: 260px;
    }
    
    /* Optimize feature items for small screens */
    .feature-item h3 {
        font-size: 18px;
    }
    
    /* Better handling of tabs on very small screens */
    .tabs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-button {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* Additional responsive fixes for tab content */
.tab-content.active {
    display: block;
}

.user-quote {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

/* Additional mobile menu improvements */
body.overlay {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

body.overlay::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 8;
}

/* Logo styles when menu is open */
body.overlay .logo {
  position: relative;
  z-index: 10;
}

/* Improve mobile nav appearance */
.nav-mobile {
  padding-top: 120px;
}

.nav-mobile .part-1 a {
  position: relative;
  overflow: hidden;
}

.nav-mobile .part-1 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffff00;
  transition: width 0.3s ease;
}

.nav-mobile .part-1 a:hover::after,
.nav-mobile .part-1 a.active-nav-link::after {
  width: 100%;
}

/* Hide navbar improvements */
.navbar.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.navbar {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

/* Mobile UX Improvements */
@media (max-width: 768px) {
  /* Hero section improvements */
  .hero-section {
    padding: 60px 24px 40px 24px;
  }
  
  .left-side-hero .top-part h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .left-side-hero .top-part p {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .middle-side h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  /* Video container improvements */
  .hero-video-container {
    margin-top: 30px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Better spacing around sections */
  section {
    padding: 60px 0;
  }
  
  section:first-of-type {
    padding-top: 40px;
  }
  
  /* Core Capabilities section */
  .features-AI-section {
    padding: 60px 0 30px;
  }
  
  .features-AI-container {
    padding: 0 24px;
  }
  
  .section-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  /* Stacked feature columns on mobile */
  .features-AI-showcase {
    flex-direction: column;
    gap: 30px;
  }
  
  .feature-AI-column {
    width: 100%;
  }
  
  .feature-AI-item {
    margin-bottom: 20px;
  }
  
  /* App showcase improvement */
  .app-AI-showcase {
    order: -1; /* Show app showcase first on mobile */
    margin-bottom: 20px;
  }
  
  .device-iphone, .device-android {
    transform: none;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 auto;
  }
  
  /* Better touch targets */
  .primary-btn, 
  button,
  .soc-foot-link,
  .footer-links a {
    min-height: 44px; /* Apple's recommended minimum touch target */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Fix why-TimeCounts section on mobile */
  .why-TimeCounts {
    padding: 40px 24px;
    margin-top: -80px;
  }
  
  .why-TimeCounts h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .why-TimeCounts p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Improved footer for mobile */
  .container-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
  
  /* Newsletter improvements */
  .newsletter-part {
    padding: 24px;
  }
  
  .input-div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .input-div input {
    width: 100%;
    height: 50px;
    font-size: 16px; /* Prevents iOS zoom */
    padding: 12px 15px;
  }
  
  /* CTA improvements */
  .cta-content {
    flex-direction: column;
  }
  
  .cta-text-container {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .cta-text-container h3 {
    font-size: 24px;
  }
  
  .cta-text-container p {
    font-size: 16px;
  }
  
  /* Social share improvements */
  .below-part {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 240px;
    margin: 30px auto;
  }
  
  /* Fix safe area for notched devices */
  .container-top-home {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  
  /* Fix potential form field zoom issues on iOS */
  input, textarea, select {
    font-size: 16px !important;
  }
}

/* Additional improvements for very small screens */
@media (max-width: 375px) {
  .left-side-hero .top-part h1 {
    font-size: 28px;
  }
  
  .left-side-hero .top-part p {
    font-size: 16px;
  }
  
  .middle-side h2 {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  /* Stack platform badges vertically */
  .platforms {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  /* Better touch spacing */
  .feature-AI-item {
    padding: 15px;
  }
  
  /* Improve animation timings for less powerful devices */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
  }
}