* {
    cursor: none !important;
    
}

/* Combined Body Styles */
body {
        font-family:  "TCCC-UnityHeadline Regular";
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff;
}

/* Cusrsor Animation */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    z-index: 9999;
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgb(228, 193, 226);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
}

a, button {
    cursor: none;
}

/* First Section Styles (Dark Gradient) */
.dark-section {
    width: 100%;
    background: linear-gradient(to bottom, #006FFF, #CA1DFF);
    padding: 40px 5%;
    box-sizing: border-box;
    color: #fff;
}

.text-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 2rem;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.left {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    min-width: 280px;
    flex: 1 1 45%;
}

.right {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    min-width: 280px;
    flex: 1 1 40%;
}

.italic {
    font-style: italic;
}

.video-carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    cursor: grab;
}

.carousel-container.grabbing {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    width: max-content;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.carousel-slide {
    /* Adjusted width and padding for larger videos */
    width: 400px; /* Increased slide width */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px; /* Adjusted padding */
    flex-shrink: 0;
}

.img-wrapper video {
    max-height: 350px; /* Increased max-height */
    width: 100%; /* Make video take full width of its wrapper */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
    border-radius: 8px;
    border: 1px solid black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    background: #000;
}

.img-wrapper video:hover {
    filter: grayscale(0);
    opacity: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

/* Second Section Styles (Light Background) */
.light-section {
    width: 100%;
    background-color: #eceaea;
    color: #1f2937;
        font-family:  "TCCC-UnityHeadline Regular";
    padding: 2rem 0; /* Added padding to light section */
    }

/* Hero Section */
.hero-section-1 {
    display: flex;
    justify-content: space-around;
    min-height: 100vh;
    padding: 80px 20px; /* Adjusted padding for full width content */
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%; /* Make it full width */
    box-sizing: border-box;
    /* Removed max-width and margin: 0 auto; for full width */
background-color: #eceaea;
 /* Creative theme color gradient */
    color: #272626;
}

.hero-content {
    max-width: 60%;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
}

.hero-content p {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #363636;
}

.cta {
    margin-top: 230px;
    max-width: 100%;
}

.innovation-btn-1 {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 7px;
    border-radius: 8px;
    margin-top: 5px;
    background-color: transparent;
    color: #81CF01;
    font-weight: lighter;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
        font-family:  "TCCC-UnityHeadline Regular";
    padding: 0 10px;
}

.innovation-btn-1 img {
    width: 35px;
    height: 35px;
    transition: filter 0.4s ease;
    background-color: #81CF01;
    padding: 8px;
    border-radius: 8px;
    
}

.innovation-btn-1:hover {
    background-color:  #81CF01;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.innovation-btn-1:hover .arrow-icon {
    content: url("images/gettyimages-1382138544-612x612.png"); /* Original image path */
}



/* Sticky Scroll Section */
.sticky-scroll-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 60px; /* Added margin to separate from hero content */
    margin-bottom: -7%;
}

.sticky-image {
    width: 40%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    box-sizing: border-box;
}

.sticky-image img {
    max-height: 80%;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scroll-content {
    width: 60%;
    height: 100vh;
    overflow-y: scroll;
    padding: 2.5rem;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-content::-webkit-scrollbar {
    display: none;
}

.content-section {
    border-top: 1px solid #8d8e8f;
    padding: 2rem 0;
    cursor: pointer;
}

.content-section:last-child {
    border-bottom: 1px solid #d1d5db;
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
  background: linear-gradient(45deg, #006FFF, #CA1DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.content-section p {
    margin-top: 1rem;
    color: #48494b;
    display: none;
    transition: opacity 0.3s ease;
}

.content-section:hover h2 {
    color: #6366f1;
}

.content-section:hover p {
    display: block;
    opacity: 1;
}

/* Animations */
@keyframes fadeUpOnLoad {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-animate {
    opacity: 0;
    animation-name: fadeUpOnLoad;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-play-state: running;
}

.delay-0 {
    animation-delay: 0.2s;
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Apply fade-up to all animated elements */
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dark-section {
        padding: 30px 5%;
    }

    .text-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left, .right {
        flex: unset;
        max-width: 100%;
    }

    .left {
        font-size: clamp(1.6rem, 5vw + 0.8rem, 2.2rem);
    }

    .right {
        font-size: clamp(0.9rem, 4vw + 0.5rem, 1.1rem);
        margin-top: 1rem;
    }

    .carousel-slide {
        padding: 0 20px; /* Adjusted padding for smaller screens */
        width: 280px; /* Adjusted width for smaller screens */
    }

    .img-wrapper video {
        max-height: 180px; /* Adjusted max-height for smaller screens */
        border: 1px solid black;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .cta {
        margin-top: 2rem;
    }

    .sticky-scroll-container {
        flex-direction: column;
        height: auto;
    }

    .sticky-image,
    .scroll-content {
        width: 100% !important;
        height: auto;
        position: relative;
        padding: 1.5rem;
    }

    .scroll-content {
        overflow-y: visible;
    }
}

@media (max-width: 480px) {
    .left {
        font-size: clamp(1.4rem, 6vw + 0.6rem, 1.8rem);
    }

    .right {
        font-size: clamp(0.85rem, 5vw + 0.4rem, 1rem);
    }

    .img-wrapper video {
        max-height: 150px; /* Further adjusted max-height for very small screens */
    }
}

/*****************************************************************************************************/

/* ========== RESET & GLOBAL STYLES ========== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

 /* ========== SCOPED GLOBAL STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.humans-tech-container *,
.humans-tech-container *::before, 
.humans-tech-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.humans-tech-container {
      font-family:  "TCCC-UnityHeadline Regular";
  color: white;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* ========== HERO SECTION STYLES ========== */
.humans-tech-container .hero-container {
  padding: 60px 30px;
  width: 100%;
  margin: 0;
  background: #000 url(images/Vexenta-bg.png) no-repeat center/cover;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.humans-tech-container .hero-container h1 {
  font-size: 2.5rem;
  margin: 0 0 10px;
}

.humans-tech-container .hero-subtitle {
  font-size: 2rem;
  margin-bottom: 40px;
  opacity: 0;
  animation: slideUpFadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

.humans-tech-container .hero-btn {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  margin-bottom: 60px;
  background-color: transparent;
  color: #fff;
  font-weight: lighter;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
      font-family:  "TCCC-UnityHeadline Regular";
  padding: 0 10px;
  opacity: 0;
  animation: slideUpFadeIn 1s ease forwards;
  animation-delay: 0.6s;
}

.humans-tech-container .hero-btn img.arrow-icon {
  width: 35px;
  height: 35px;
  transition: filter 0.4s ease;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.humans-tech-container .hero-btn:hover {
  background-color: #fff;
  color: #3A1CF5;
  transform: translateY(-2px);
}

.humans-tech-container .hero-btn:hover .arrow-icon {
  content: url("images/Untitled-1.jpg");
}

.humans-tech-container .hero-text-block {
  max-width: 600px;
  font-size: 1.5rem;
  line-height: 1.5;
  position: absolute;
  opacity: 0;
  animation: slideUpFadeIn 1s ease forwards;
}

.humans-tech-container .hero-block1 {
  bottom: 160px;
  left: 5%;
  animation-delay: 1s;
}

.humans-tech-container .hero-block2 {
  top: 35%;
  right: 5%;
  animation-delay: 1.4s;
}

.humans-tech-container .hero-block3 {
  bottom: 5%;
  left: 59%;
  animation-delay: 1.8s;
}

/* ========== INNOVATION SECTION STYLES ========== */
.humans-tech-container .innovation-section {
  padding: 80px 30px;
  background: #fff;
  color: #000;
  width: 100%;
}

.humans-tech-container .innovation-text {
  text-align: center;
  margin-bottom: 50px;
  animation: slideUp 1s ease-out;
  padding: 0 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.humans-tech-container .innovation-text h2 {
  font-weight: normal;
  font-size: 5rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(90deg, #006FFF, #CA1DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.humans-tech-container .innovation-text p {
  font-size: 1.2rem;
  color: #0c091d;
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.humans-tech-container .innovation-btn {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  margin-top: 5px;
  background-color: transparent;
  color: #81CF01;
  font-weight: lighter;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
      font-family:  "TCCC-UnityHeadline Regular";
  padding: 0 10px;
}

.humans-tech-container .innovation-btn .arrow-icon {
  width: 35px;
  height: 35px;
  transition: filter 0.4s ease;
  border-radius: 8px;
  background: #81CF01;
  padding: 8px;
}

.humans-tech-container .innovation-btn:hover {
  background-color: #81CF01;
  transform: translateY(-2px);
  color:#fff
}

.humans-tech-container .innovation-btn:hover .arrow-icon {
  content: url("images/gettyimages-1382138544-612x612.png");
}

/* ========== PARTNERS CAROUSEL STYLES ========== */
.humans-tech-container .partners-section {
  padding: 40px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.humans-tech-container .logos-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.humans-tech-container .logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.humans-tech-container .logo-slide {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  flex-shrink: 0;
}

.humans-tech-container .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 80px;
  padding: 10px;
}

.humans-tech-container .img-wrapper img {
  max-height: 90px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.humans-tech-container .img-wrapper img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ========== ANIMATIONS ========== */
@keyframes slideUpFadeIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  /* Hero Section Mobile - Only changes what's necessary */
  .humans-tech-container .hero-container {
    padding: 40px 20px;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .humans-tech-container .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    opacity: 1;
    animation: none;
  }
  
  .humans-tech-container .hero-btn {
    flex-direction: row;
    padding: 10px 16px;
    margin: 0 auto 30px auto;
    width: max-content;
    opacity: 1;
    animation: none;
  }
  
  .humans-tech-container .hero-btn img.arrow-icon {
    width: 22px;
    height: 22px;
    padding: 6px;
  }
  
  /* Stack text blocks vertically on mobile */
  .humans-tech-container .hero-text-block {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    max-width: 100%;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 20px 0;
    text-align: center;
    opacity: 1;
    animation: none;
  }
  
  /* Innovation Section Mobile */
  .humans-tech-container .innovation-section {
    padding: 60px 20px;
  }
  
  .humans-tech-container .innovation-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .humans-tech-container .innovation-text p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .humans-tech-container .innovation-btn {
    font-size: 0.9rem;
    padding: 8px 12px;
    gap: 5px;
  }
  
  .humans-tech-container .innovation-btn .arrow-icon {
    width: 22px;
    height: 22px;
    padding: 6px;
  }
  
  .humans-tech-container .logo-slide {
    width: 160px;
    padding: 0 10px;
  }
  
  .humans-tech-container .img-wrapper {
    min-width: 100px;
    height: 60px;
    padding: 5px;
  }
  
  .humans-tech-container .img-wrapper img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .humans-tech-container .hero-container {
    padding: 30px 15px;
  }
  
  .humans-tech-container .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .humans-tech-container .hero-text-block {
    font-size: 1rem;
  }
  
  .humans-tech-container .innovation-text h2 {
    font-size: 2rem;
  }
  
  .humans-tech-container .innovation-text p {
    font-size: 0.95rem;
  }
  
  .humans-tech-container .logo-slide {
    width: 130px;
  }
  
  .humans-tech-container .innovation-btn {
    font-size: 0.85rem;
  }
}

/******************************************footer**************************************************/

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
}

.animate-delay-1 { animation-delay: 0.3s; }
.animate-delay-2 { animation-delay: 0.6s; }
.animate-delay-3 { animation-delay: 0.9s; }
.animate-delay-4 { animation-delay: 1.2s; }
.animate-delay-5 { animation-delay: 1.5s; }

/* Footer Styles */
.footer {
    padding: 30px 20px;
    background: linear-gradient(-45deg, #CA1DFF, #006FFF, #C9C9C9);
    color: #fff;
   margin-top: 0 !important;

    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 30px 0;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.footer-column {
    flex: 1 1 300px;
    position: relative;
    padding: 0 15px;
}

.footer-column.center::before,
.footer-column.right::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #fff;
}

.footer-column.center::before { left: 0; }
.footer-column.right::before { left: 0; }

.logo-image {
    width: 240px;
    height: auto;
    display: block;
}

.footer-column.left p {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
}

.footer-column.left p a {
    text-decoration: underline;
}

.gptw-badge {
    max-width: 100px;
    margin-bottom: 10px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    font-size: 22px;
    margin-right: 8px;
    color: #fff;
}

.footer-contact {
    font-size: clamp(44px, 2vw, 28px);
    margin: 30px 0;
    font-weight: 500;
}

.footer-contact span {
    margin-left: 10px;
    font-size: inherit;
    display: inline-block;
}

.footer-contact img {
    width: 30px;
}

.footer-email {
    margin-top: 60px;
    font-size: clamp(14px, 1.4vw, 16px);
}

.footer-cities {
    margin-top: 10px;
    font-size: clamp(14px, 1.4vw, 16px);
}

.footer-cities a {
    text-decoration: underline;
}

.footer-column.right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column.right ul li {
    margin: 15px 0;
    font-size: clamp(16px, 1.6vw, 18px);
    margin-left: 200px;
}

.footer-bottom {
    padding-top: 15px;
    margin-top: 15px;
    font-size: clamp(12px, 1.2vw, 14px);
    text-align: center;
}

.footer-links {
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    margin: 0 8px;
    font-size: clamp(12px, 1.2vw, 14px);
    display: inline-block;
    margin-bottom: 6px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .footer {
        padding: 20px 15px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        gap: 15px;
    }

    .footer-column {
        padding: 10px 0;
        width: 100%;
    }
    .footer-column ul li a {
    margin-left: -200px;
  }

    .footer-column.center::before,
    .footer-column.right::before {
        display: none;
    }

    .footer-contact {
        font-size: 20px;
    }

    .footer-email {
        margin-top: 20px;
    }

    .footer-bottom {
        padding-top: 10px;
        margin-top: 10px;
    }

    .footer-links a {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 200px;
    }
    
    .footer-contact {
        font-size: 18px;
    }
    
    .footer-contact img {
        width: 25px;
    }
}

/* Navbar styles */
.custom-navbar {
    background: linear-gradient(45deg, #CA1DFF, #006FFF, #C9C9C9);
    opacity: 0.6;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar .navbar-brand {
    color: #fff;
        font-family:  "TCCC-UnityHeadline Regular";
    font-weight: 700;
    font-size: 1.8rem;
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #C9C9C9;
}

.custom-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-buttons .btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-buttons .btn.outline {
    border: 1px solid #006FFF;
    color: white;
        text-decoration: none;

    background-color: transparent;
}

.navbar-buttons .btn.outline:hover {
    background-color: #006FFF;
    color: #fff;
        text-decoration: none;

}

.navbar-buttons .btn.solid {
    background-color: #81CF01;
    color: #fff;
    border: 1px solid #81CF01;
}

.navbar-buttons .btn.solid:hover {
    background-color: #006FFF;
    border-color: #006FFF;
}

/* Hero Section (top of page) */
/* Removed .container from here to make it full width */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #CA1DFF, #006FFF);
    color: #fff;
    min-height: 80vh; /* Adjusted min-height */
    flex-wrap: wrap;
    width: 100%; /* Ensure it takes full width */
    box-sizing: border-box;
    /* Added animation for the hero section itself */
    animation: fadeInBackground 1.5s ease-out forwards;
}

@keyframes fadeInBackground {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-section .left-text {
    flex: 1 1 50%;
    max-width: 50%;
    padding-right: 30px;
    box-sizing: border-box;
}

.hero-section .left-text h1 {
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-section .cta-button {
    background-color: #b2ec55;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-section .cta-button:hover {
    background-color: #3a2edb;
    transform: translateY(-2px);
}

.hero-section .right-video {
    flex: 1 1 40%;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* Ensure canvas has some height */
}

/* Bouncing Shapes */
.bouncing-shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: bounce 10s infinite ease-in-out;
    z-index: 1;
}

.shape-circle {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-square {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

.shape-drop {
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.05);
    }
    50% {
        transform: translateY(0) translateX(0) scale(1);
    }
    75% {
        transform: translateY(20px) translateX(-10px) scale(0.95);
    }
}

/* News Section Container */
.news-section-container {
    padding: 60px 20px;
    background: linear-gradient(145deg, #d788f0, #97bcec, #C9C9C9);
    opacity: 0.9;
    text-align: center;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
    margin: 0; /* Ensure no auto margins */
    
}

.news-section-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 50px;
}

/* Card Styles */
.card-news {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Take full width of its column */
    margin-bottom: 20px; /* Added margin for spacing */
}

.card-news:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-news img {
    width: 100%;
    height: 180px; /* Adjusted height for better aspect ratio */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.card-news div {
    padding: 15px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Button below cards */
.button-container-below-cards .action-button {
    background-color: #81CF01;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.button-container-below-cards .action-button:hover {
    background-color: #3a2edb;
    color: #fff;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #eceaea;
    background-size: 200% 200%; /* Make it larger for animation */
    animation: subtleGradientMove 15s ease infinite alternate; /* New animation */
    padding: 40px;
    margin-top: 50px;
    gap: 30px;
    text-align: left;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
    margin-left: 0; /* Ensure no auto margins */
    margin-right: 0; /* Ensure no auto margins */
     margin-top: 0 !important;

}

.newsletter-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form-container {
    display: flex;
    gap: 10px;
}

.newsletter-form-container .form-control {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.subscribe-btn {
    background-color: #B2EC55;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #3a2edb;
}

.newsletter-success-message {
    color: #28a745;
    margin-top: 15px;
    font-weight: 600;
    display: none; /* Hidden by default */
}

.newsletter-success-message i {
    margin-right: 8px;
}

.newsletter-image-container {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-button-newsletter {
    background-color: #B2EC55; /* Different color for this button */
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button-newsletter:hover {
    background-color: #B2EC55;
    transform: translateY(-2px);
}

/* Call to Action Section */
.call-to-action-section {
    background: linear-gradient(135deg, #4437F3, #6366f1, #4437F3); /* Enhanced gradient */
    background-size: 200% 200%; /* Make it larger for animation */
    animation: subtleGradientMove 15s ease infinite alternate; /* New animation */
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    width: 90%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width */
    margin-left: auto; /* Ensure no auto margins */
    margin-right: auto;
}

.call-to-action-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.call-to-action-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Action button (used in call to action and below cards) */
.action-button {
    background-color: #B2EC55;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.action-button:hover {
    background-color: #3a2edb;
    transform: translateY(-2px);
    color: #fff;
}

/* Button animation for sending/submitting */
.animated-button {
    position: relative;
    overflow: hidden;
}

.animated-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Background gradient animation */
@keyframes subtleGradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Custom Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close-button:hover {
    color: #f00;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 15px;
    text-align: center;
}

.modal-content p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 20px;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.modal-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-button {
    background-color: #4437F3;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.submit-button:hover {
    background-color: #3a2edb;
}

.success-message {
    text-align: center;
    padding: 30px;
    display: none; /* Hidden by default */
}

.success-message i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h4 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 1rem;
    color: #4b5563;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .news-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .news-section-title {
        font-size: 1.8rem;
    }
    .newsletter-section {
        flex-direction: column;
        padding: 30px;
    }
    .newsletter-content,
    .newsletter-image-container {
        flex: 1 1 100%;
        min-width: unset;
        text-align: center;
    }
    .newsletter-form-container {
        flex-direction: column;
        gap: 15px;
    }
    .call-to-action-section {
        padding: 40px 20px;
    }
    .call-to-action-section h2 {
        font-size: 2rem;
    }
    .call-to-action-section p {
        font-size: 1rem;
    }
    .action-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .news-section-title {
        font-size: 1.5rem;
    }
    .card-news div {
        font-size: 1rem;
    }
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    .newsletter-content p {
        font-size: 0.9rem;
    }
}