:root {
/* Colors */
--primary-blue: #1DA1F2;
--primary-blue-dark: #0d8ce0;
--primary-gradient: linear-gradient(135deg, #1DA1F2, #60c0ff);
--gradient-stops: 
var(--primary-blue),
var(--primary-blue-dark),
var(--primary-blue);
--gradient-base: var(--primary-blue);

/* Spacing */
--section-spacing: clamp(3rem, 8vw, 6rem);
--container-padding: clamp(1rem, 5vw, 2rem);

/* Other Variables */
--card-bg: rgba(255, 255, 255, 0.02);
--card-border: rgba(255, 255, 255, 0.05);
--hover-bg: rgba(255, 255, 255, 0.05);
--bg-dark: #000;
--bg-light: #111;
--text-primary: rgba(255, 255, 255, 0.9);
--text-secondary: rgba(255, 255, 255, 0.7);
--animated-gradient: linear-gradient(
to right,
#4F46E5,
#7C3AED,
#2563EB,
#4F46E5
);
--text-base: clamp(1rem, 1.2vw, 1.125rem);
--text-lg: clamp(1.125rem, 1.5vw, 1.25rem);
--text-xl: clamp(1.25rem, 2vw, 1.5rem);
--text-2xl: clamp(1.5rem, 2.5vw, 2rem);
--text-3xl: clamp(2rem, 3vw, 2.5rem);
--line-height-base: 1.6;
--line-height-tight: 1.4;
--section-padding: clamp(4rem, 10vw, 8rem);
--section-bg-light: rgba(255, 255, 255, 0.02);
--section-bg-dark: rgba(0, 0, 0, 0.3);
}

/* Test assets path */
.test-assets {
background-image: url('../assets/test.svg');
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Inter', sans-serif;
/* background: #000; */
color: #fff;
line-height: 1.6;
min-height: 100vh;
position: relative;
overflow-x: hidden;
font-feature-settings: "ss01", "ss02", "cv01", "cv02";
font-size: var(--text-base);
position: relative;
}

/* Animated gradient overlay
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--animated-gradient);
background-size: 400% 400%;
animation: gradientAnimation 15s ease infinite;
opacity: 0.1;
pointer-events: none;
z-index: -1;
}

body::after {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3C/g%3E%3C/svg%3E");
opacity: 0.4;
z-index: -1;
pointer-events: none;
} */

.container {
position: relative;
z-index: 1;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--container-padding);
}
.main_wrapper{
width: 100%;
}
section {
position: relative;
z-index: 1;
padding: var(--section-spacing) 0;
}

/* Utility Classes */
.gradient-text {
background: var(--primary-gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
font-size: clamp(25px,2.5vw, 30px);
margin-bottom: clamp(2rem, 5vw, 3rem);
text-align: center;
background: var(--primary-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.primary_heading{
font-size: clamp(25px,2.5vw, 30px) !important;
margin-bottom: clamp(10px, 5vw, 15px) !important;
background: var(--primary-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.primary_text{
font-size: clamp(15px,2.5vw, 18px) !important ;
color:#000 !important;
}
.glow-effect {
position: relative;
}

.glow-effect::after {
content: '';
position: absolute;
inset: -4px;
background: var(--primary-gradient);
filter: blur(12px);
opacity: 0;
transition: all 0.3s ease;
z-index: -1;
border-radius: 12px;
}

.glow-effect:hover::after {
opacity: 0.5;
}

/* Navigation */
.nav {
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
position: fixed;
top: 10px;
left: 0;
right: 0;
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
max-width: 1200px;
margin: auto;
border-radius: 30px;
}

.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.7rem var(--container-padding);
}

.nav-logo {
text-decoration: none;
color: white;
display: flex;
align-items: center;
gap: 15px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
}
.nav-logo .gradient-text {
font-size: 1.6rem;
font-weight: 700;
margin: 0;
}

.nav-links {
display: flex;
gap: 2rem;
}

.nav-link {
font-size: 0.95rem;
font-weight: 500;
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
color: var(--primary-blue);
}

.nav-right {
display: flex;
align-items: center;
gap: 1rem;
}

.lang-switch {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.85rem;
color: var(--text-secondary);
padding: 4px 8px;
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
cursor: pointer;
}

.lang-option {
padding: 2px 4px;
cursor: pointer;
transition: color 0.3s ease;
}

.lang-option:hover {
color: var(--text-primary);
}

.lang-separator {
color: var(--text-secondary);
opacity: 0.5;
}

.lang-option.active {
color: var(--primary-blue);
font-weight: 500;
}

.nav-cta {
padding: 12px 24px;
background: var(--primary-gradient);
color: white;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(29, 161, 242, 0.25);
border-radius: 25px;
font-weight: 600;
text-decoration: none;
display: inline-block;
border: none;
cursor: pointer;
}

.nav-cta:hover {
background-color: var(--primary-blue-dark);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(29, 161, 242, 0.35);
}
.nav-toggle {
display: none;
font-size: 28px;
background: none;
border: none;
cursor: pointer;
color: #fff;
z-index: 1001;
font-weight: 900;
}
button#closeToggle {
position: absolute;
top: 15px;
right: 15px;
font-size: 18px;
background: #fff;
color: #000;
width: 30px;
border-radius: 50%;
height: 30px;
font-weight: 900;
cursor: pointer;
}
.nav-links .nav-cta{
display: none;
width: 100%;
}
.close-icon{
display: none;
}
@media (max-width: 991px) {
.close-icon, .nav-toggle {
display: block;
}
.nav-links .nav-cta{
display: block;
}
.mbtn{
display: none;
}
.nav-links {
position: fixed;
top: 0;
left: -100%;
width: 250px;
height: 100vh;
background: #000;
flex-direction: column;
padding: 50px 20px;
transition: left 0.3s ease;
z-index: 1000;
gap: 1.7rem;
}

.nav-links.active {
left: 0;
}
}
@media (max-width: 767px) {
  .nav-wrapper {
padding: 0.4rem var(--container-padding);
}
}

/* top vedio section */
section.vedio-section {
    position: sticky;
    z-index: -1;
    height: 100vh;
    top: 0;
    overflow: hidden;
    width: 100%;
}

/* hero section css start here */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-title,
.hero-subtitle,
.hero-cta {
  opacity: 0;
  transform: translateY(30px); /* or X depending on your animation */
}

.hero-title-animated {
  animation: slideInFromLeft 0.9s ease-out forwards;
}

.hero-subtitle-animated {
  animation: slideInFromRight 0.9s ease-out 0.4s forwards;
}

.hero-cta-animated {
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

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



.hero{
padding: 0;
margin: 0;
position: relative;
    z-index: 1;
}
.zoom-section {
  transform: scale(0.9);
  transition: all 0.5s ease-in;
}

.zoom-section.in-view {
  transform: scale(1);
  border-radius: unset;
}
.hero_section {
position: relative;
padding: 0;
min-height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
border-radius: 50px 50px 0 0;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -10;
overflow: hidden;
pointer-events: none;
}

.hero-background video {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.6;
filter: brightness(0.9) contrast(1.2);
}

.hero-gradient {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85));
z-index: -9;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 1200px;
margin: auto;
text-align: center;
padding: 0 20px;
}



.hero-title {
font-size: clamp(3rem, 6vw, 5rem);
line-height: 1.1;
margin-bottom: 1.25rem;
color: #1DA1F2;
font-weight: 700;
background: linear-gradient(90deg, #ffffff, #aaaaff);
-webkit-background-clip: text;

}



.hero-subtitle {
font-size: clamp(1rem, 2vw, 1.6rem);
color: #000;
line-height: 1.8;
margin-bottom: 2.5rem;

}

.hero-cta {
display: flex;
gap: 1rem;
justify-content: center;
/* opacity: 0; */
/* animation: fadeUp 1s ease-out 0.8s forwards; */
/* transform: translateY(30px); */
}

.primary-button, .secondary-button {
padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
border-radius: 12px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1rem;
}

.primary-button {
background: var(--primary-gradient);
color: #fff;
}

.secondary-button {
background: rgba(255, 255, 255, 0.1);
color: #1DA1F2;
    border: 1px solid rgb(69 61 61);
}

.primary-button:hover,
.secondary-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}


/* How it works */
.how-it-works {
padding: 96px 0;
position: relative;
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
gap: clamp(1.5rem, 4vw, 2rem);
margin-top: clamp(2rem, 5vw, 3rem);
}

.step-card {
padding: clamp(1.5rem, 4vw, 2rem);
border-radius: 1rem;
background: var(--card-bg);
border: 1px solid var(--card-border);
}

.step-icon {
font-size: 32px;
margin-bottom: 24px;
}


/* Responsive */
@media (max-width: 1024px) {
.hero-title {
font-size: 48px;
}

.hero-image {
opacity: 0.3;
}
}

@media (max-width: 767px) {
.nav-logo .gradient-text {
font-size: 1.4rem;
}

.nav-link {
font-size: 0.9rem;
}

.nav-links {
gap: 1rem;
}

.nav-right {
margin-left: auto;
}

.nav-cta {
font-size: 12px;
padding: 3px 6px;
}

.hero-title {
font-size: 35px;
}

.hero-subtitle {
font-size: 14px;
}

.hero-image {
display: none;
}

.section-title {
font-size: 25px;
}

.hero-content {
margin-bottom: 40px;
}

.hero .roadmap-timeline {
margin-top: 60px;
padding: 40px 0;
}
}




/* our story section start here */
/* ----------  Layout & Wrappers  ---------- */
.ourstory {
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  position: relative;
}
.ourstory::after {
    background-color: var(--bg-color2, #e2e7ff);
    content: "";
    position: absolute;
    width: 100%;
    height: calc(85% - 80px);
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 50px;
      z-index: 1;
}

.ourstory .container {
  position: relative;
  z-index: 2;
}

.ourstory__grid {
  display: flex;
  gap: 48px;
  align-items: center;
}

/* ----------  Image  ---------- */
.ourstory__image {
 max-width: 50%;
 width: 100%;
}

.ourstory__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* ----------  Text & Headings  ---------- */
.ourstory__content {
 max-width: 47%;
 width: 100%;
}

.ourstory__title {
     font-size: clamp(1.2rem, 2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.ourstory__lead {
  font-weight: 500;
  margin-bottom: 0.75rem;
      font-size: clamp(14px, 2vw, 16px);
}

.ourstory__text {
  margin-bottom: 1.75rem;
}

/* ----------  Buttons & Video  ---------- */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
    background: #60c0ff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.28s ease;
}

.btn-primary:hover {
  background: #4338ca;
}

.ourstory__actions {
  display: flex;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: clamp(30px, 8.5vw, 100px);
}

.ourstory__video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.video-play {
  width: 44px;
  height: 44px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  display: grid;
  place-content: center;
  position: relative;
  transition: background 0.25s ease;
}

.video-play::before {
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #60c0ff;
  margin-left: 3px;
}

.video-play:hover {
  background: #eef0ff;
}

.ourstory__video-label {
  font-weight: 500;
  white-space: nowrap;
}

/* ----------  Feature Chips  ---------- */
.ourstory__features {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 24px;
}

.feature-chip {
  display: flex;
  align-items:center;
  gap: 12px;
  max-width: 180px;
}

.feature-chip__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8eaff;
  display: flex;
    align-items: center;
    justify-content: center;
}
.icon_1{
background: #32a5522e;
color: #32a552;
}
.icon_2{
background: #a22efe36;
color: #a22efe;
}
.icon_3{
background: #fe2e2e36;
color: #fe2e2e;
}
.feature-chip__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

/* ----------  Responsive  ---------- */
@media (max-width: 1100px) {
  .feature-chip__title{
    font-size: 11px;
  }
}
@media (max-width: 992px) {
  .ourstory__grid {
    gap: 32px;
  }
  .ourstory__text,  .ourstory__lead{
    font-size: 14px;
  }
  .ourstory__features{
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .ourstory__grid {
    flex-direction: column;
  }
  .ourstory__image,
  .ourstory__content {
  max-width:100%;
  }
  .ourstory::after{
        height: calc(90% - 80px);
  }
  .video-play {
    width: 35px;
    height: 35px;
  }
  .btn-primary {
    padding: 9px 20px;
  }
}

/* our story section end here */

/* about section css start here */
.about {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
  }
  .about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .about__grid {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .about__media {
     width:100%;
     max-width: 50%;
    position: relative;
    height: 600px;
  }
  .about__media-item{
    display:flex;
    border-radius: 8px;
  }
  .about__media-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .about__star {
    position: absolute;
    top: 30px;
    left: 10%;
    max-width: 140px;
    width: 100%;
    z-index: 4;
    animation: spin 4s linear infinite;
  }
  .about__star img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
  .about__badge {
    background: #ff1e1e;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    width: max-content;
    align-self: flex-start;
    position: relative;
    top: 0;
  }
  .about__years {
    font-size: 32px;
    font-weight: bold;
    display: block;
  }
  .about__content {
   width:100%;
   max-width: 50%;
  }
  .about__label {
    font-weight: 500;
    font-size: 15px;
    padding: 2px 0px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
    color: #60c0ff;
    text-transform: uppercase;
    border-top: 1px solid #60c0ff;
    border-bottom: 1px solid #60c0ff;
  }
  .about__title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 10px;
  }
  .about__desc {
     font-weight: 600;
    font-size: 18px;
    margin-bottom: 24px;
    color: #544c4c;
  }
  .about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
/* <<<<<<< HEAD
    margin-bottom: 30px;
    color: #fff;
======= */
    margin-top: 30px;
/* >>>>>>> 2f8ac094619dc8058fab5784c818c96bf54bfbdd */
  }
  .feature {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .feature__icon {
    width: 80px;
    height: 80px;
    color: #1680c6;
  }
  .feature__icon svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature__title {
    font-size:  26px;
    font-weight: 600;
    margin-bottom: 4px;

    color: #fff;
/* >>>>>>> 2f8ac094619dc8058fab5784c818c96bf54bfbdd */
  }
  .feature__text {
    font-size: 16px;
  }
  .about__btn {
    display: inline-block;
    background: #60c0ff;
    color: #fff;
    padding: 17px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 14px;
  }
  .about__btn:hover {
    background: #1680c6;
  }
  .image-1{
        height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .image-2{
        position: absolute;
    top: 0;
    height: fit-content;
    z-index: 1;
    right: 0;
    border-left: 5px solid #fff;
  }
  .image-3{
    position: absolute;
    bottom: 30px;
    right: 55px;
    z-index: 2;
    border-top: 5px solid #fff;
    border-left: 5px solid #fff;
  }
    @media (max-width: 991px) {
    .about__grid {
      flex-direction:column-reverse;
    }
     .about__media, .about__content {
      max-width:100%;
    }
       .image-1 {
    width: 95%;
    }
    .image-3 {
    width: 50%;
    right: 25px;
    }
    .image-2{
      width: 65%;
    }
  }
  @media (max-width: 600px) {
     .image-3 {
    width: 80%;
    right: 25px;
    }
    .image-2{
      width: 90%;
    }
     .about__media {
    height: 500px;
  }
  }

/* about section css end here */



/* Footer */
.footer {
background: #f3f9f4;
box-shadow: 0px 0px 15px rgb(0% 0% 0 / 30%);
color: #000;
text-align: center;
padding: 60px 0 30px;
font-family: 'Poppins', sans-serif;
/* border-radius: 50px 50px 0 0; */
}

.footer .footer-headline {
font-size: clamp(30px, 2.5vw, 40px);
font-weight: 500;
margin-bottom: 40px;
text-align: left;
}

.footer .footer-content {
display: flex;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
max-width: 1200px;
margin: auto;
text-align: left;
gap: 30px;
}

.footer .footer-left,
.footer .footer-right {
font-size: 14px;
/* color: #ccc; */
color: #000;
}

.footer .footer-left a,
.footer .footer-right a {
color: #000;
text-decoration: none;
display: block;
margin-bottom: 5px;
}

.footer .footer-icons {
display: flex;
gap: 20px;
justify-content: center;
}

.footer .footer-icons a {
background: #222;
padding: 10px;
border-radius: 50%;
color: white;
text-decoration: none;
font-size: 18px;
width: 42px;
height: 42px;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
}

.footer .footer-icons a:hover {
background: #444;
}

.social-links {
display: flex;
gap: 12px;
}

.social-link {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--card-bg);
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: white;
transition: all 0.2s ease;
border: 1px solid var(--card-border);
}

.social-link:hover {
background: var(--hover-bg);
transform: translateY(-2px);
}



.profile {
text-align: center;
margin-bottom: 40px;
position: relative;
}

.profile::after {
content: '';
position: absolute;
width: 200px;
height: 200px;
background: radial-gradient(circle at center, rgba(124, 45, 255, 0.2), transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
pointer-events: none;
}

.profile-img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 15px;
border: 2px solid rgba(255, 255, 255, 0.1);
position: relative;
z-index: 1;
}

.profile h1 {
font-size: 32px;
margin-bottom: 10px;
font-weight: 600;
letter-spacing: -0.02em;
}

.bio {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 20px;
font-size: 16px;
}

.links {
display: flex;
flex-direction: column;
gap: 16px;
position: relative;
}

.link {
background-color: rgba(255, 255, 255, 0.1);
padding: 15px 20px;
border-radius: 12px;
text-decoration: none;
color: #ffffff;
font-weight: 500;
text-align: center;
transition: all 0.2s ease;
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
}

.link::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(125deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 50%);
pointer-events: none;
}

.link:hover {
transform: translateY(-2px);
background-color: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.2);
}


.testimonials {
  text-align: center;
margin: 0;
background:#fff;
overflow: hidden;
}
.kickstarter-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 48px;
font-size: 18px;
color: #000;
line-height: 1.8;
font-weight: 500;
}

.progress-container {
max-width: 600px;
margin: 0 auto 64px;
text-align: center;
}

.progress-bar {
height: 12px;
background: #e0e0e0;
border-radius: 100px;
overflow: hidden;
margin-bottom: 16px;
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
height: 100%;
width: 26%;
background: linear-gradient(to bottom, #1DA1F2, #0bc3db);
box-shadow: 0 0 8px rgba(6, 6, 7, 0.6);
border-radius: 100px;
transition: width 1s ease-in-out;
}

.progress-stats {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
color: #000;
font-weight: 500;
}

.progress-number {
font-weight: 700;
font-size: 20px;
color: #333;
}

.progress-label {
color: #555;
font-size: 15px;
font-weight: 500;
}

.supporters-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
gap: clamp(1rem, 3vw, 2rem);
margin-top: clamp(2rem, 5vw, 3rem);
}

.supporter-card {
background: rgba(255, 255, 255, 0.25);
border-radius: 16px;
padding: 24px;
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
display: flex;
align-items: center;
gap: 16px;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.supporter-card:hover {
transform: translateY(-5px) scale(1.03);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.35);
}

.supporter-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
background: linear-gradient(to bottom, #1DA1F2, #B0E0E6, #E0FFFF);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 15px;
color: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.supporter-info h4 {
font-size: 16px;
font-weight: 700;
margin-bottom: 4px;
color: #111;
}

.supporter-info p {
color: #666;
font-size: 14px;
font-weight: 500;
}

/* Animated Background */
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}

/* Email Signup Section */
.email-signup {
position: relative;
z-index: 10;
/* background: linear-gradient(to bottom, #1DA1F2, #B0E0E6, #E0FFFF); */
/* background-color: #fff; */
background-image: url('../Images/email.jpg');
backdrop-filter: blur(5px);
text-align: center;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
padding: var(--section-spacing) 0;
margin: 0;
}
.email-signup:before {
    position: absolute;
    content: '';
    background: rgb(13 34 83 / 54%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.email-signup h2 {
font-size: 60px;
margin-bottom: 32px;
background: #fff;
color: #004674;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.signup-form {
position: relative;
z-index: 11;
max-width: 500px;
margin: 2rem auto 0;
}

.input-group {
display: flex;
gap: 0.5rem;
max-width: 500px;
margin: 0 auto;
position: relative;
z-index: 12;
}
.email-signup input {
border: none !important;
box-shadow: 0 0px 5px #1111113d;
}
.input-group input {
flex: 1;
padding: 12px 16px;
border: 1px solid #000;
border-radius: 30px;
/* background: rgba(255, 255, 255, 0.1); */
color: #000;
font-size: 16px;
position: relative;
z-index: 13;
pointer-events: auto;
}

.input-group input:focus {
outline: none;
border-color: rgba(29, 161, 242, 0.5);
box-shadow: 0 12px 24px rgba(29, 161, 242, 0.2);
}

.input-group button {
padding: 12px 24px;
background: var(--primary-gradient);
border: none;
border-radius: 8px;
color: white;
font-weight: 500;
cursor: pointer;
position: relative;
z-index: 13;
pointer-events: auto;
font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 767px) {
.input-group {
flex-direction: column;
gap: 1rem;
padding: 0 1rem;
}

.input-group input,
.input-group button {
width: 100%;
}
}

/* FAQ Section */
.faq-section.faq {
margin: 0;
/* background-color: #f3f9f4 !important; */
    border-radius: 40px;
    padding: 100px 0;
/* background: url('../Images/faq-bg.webp') repeat ; */
background-size: contain;
}
.faq-section .faq-title{
    color:#000 !important;
    font-size: clamp(25px, 4vw, 60px);
    margin-bottom:1rem;
    text-align: center;
}
.faq-section .sub-title{
    color: #fff;
    background: var(--primary-gradient);;
    border: 1px solid #60c0ff;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 8px 32px;
    font-weight: 700;
    line-height: 24px;
 display: flex;
    width: fit-content;
    box-shadow: inset 0 3px 2px 1px #ffffff40;
    margin: auto;
}
.faq-section .faq-grid {
display: grid;
gap: 20px;
/* max-width: 800px; */
margin: 48px auto 0;
}

.faq-section .faq-question {
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: bold;
margin: 0;
}

.faq-section .faq-icon {
font-size: 30px !important;
color: #fff !important;
transition: transform 0.3s ease;
      background: var(--primary-gradient);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
}
.faq-section .faq-icon svg{
  width: 20px;
  height: 20px;
}
.faq-section .faq-answer {
padding: 10px 0;
}

/* .faq-section .faq-item.active .faq-answer {
max-height: 400px; 
} */

.faq-section .faq-question.active .faq-icon {
  transform: rotate(-180deg); 
  transition: all 0.5s ease-in-out;

}

.faq-section .faq-item {
/* background: var(--card-bg);
border: 1px solid var(--card-border); */
background: #fff;
/* box-shadow: 0 3px 3px rgb(0 0 0 / 16%); */
border: 4px solid #f3f9f4;
    border-radius: 40px;
    padding: 20px 20px 20px 32px;
transition: all 0.3s ease;
}

.faq-section .faq-item h3 {
font-size: 20px;
color: #000;
}

.faq-section .faq-item p {
color: #000;
line-height: 1.6;
font-size: 16px;
}


/* Scroll Progress Bar */
.scroll-progress {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: transparent;
overflow: hidden;
opacity: 0;
transition: opacity 0.3s ease;
}

.scroll-progress.visible {
opacity: 1;
}

.scroll-progress-bar {
position: absolute;
top: 0;
left: 50%;
height: 100%;
width: 0;
background: var(--primary-gradient);
transform: translateX(-50%);
transition: width 0.1s ease-out;
}

/* Roadmap Section */
.roadmap_section{
/* background: linear-gradient(to bottom, #1DA1F2, #B0E0E6, #E0FFFF); */
background: #fff;
margin:0;
}
.roadmap_section h2 {
  text-align: center;
  display: block;
  margin-bottom: 40px;

}
.roadmap {
padding: 50px 0;
position: relative;
overflow: hidden;
}
.mark-text{
font-size: 20px !important;
font-weight: 600;
margin-bottom: 10px !important;
}
.roadmap::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
pointer-events: none;
}

.roadmap-timeline {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: clamp(2rem, 5vw, 4rem) 0;

}
.timeline-items{
  display: grid;
  grid-template-columns: repeat(1, 1fr); 
  gap: 20px;
  position: relative;
}
.timeline-item {
background: #fff;
border-radius: 12px;
padding: 30px 25px;
position: relative;
transition: .5s all ease-in-out;
display: flex;
align-items: center;
gap: 24px;
text-align: left;
height: 300px;
/* overflow: hidden; */
box-shadow: 0 0px 5px #1111113d;
cursor: pointer;
max-width: 550px;
width: 47%;
}
.timeline-item.right {
  margin: 0 0 0 auto;
}
/* .timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: linear-gradient(to bottom, #1DA1F2, #60c0ff);
    z-index: 0;
    transition: height 0.4s ease;
}
.timeline-item:hover::before {
    height: 100%;
} */
.tmeline-card-body {
  max-width: calc(100% - 84px);

}
.timeline-item h4 {
color: #002746;
font-size: 32px;
margin-bottom: 12px;
font-weight: 600;
position: relative;
z-index: 2;
transition: 0.4s all ease-in-out;
}

.timeline-item p {
color: #002746;
font-size: 18px;
line-height: 1.6;
margin: 0;
position: relative;
z-index: 2;
transition: 0.4s all ease-in-out;
}
.timeline-title {
font-size: 24px;
margin-bottom: 32px;
text-align: center;
background: var(--primary-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* .timeline-item:hover h4,
.timeline-item:hover  p {
  color: #fff;
} */
.icon-img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
z-index: 2;
margin-bottom: 20px;
transition: 0.4s all ease-in-out;
}
.icon-img img {
  width: 100%;
  height: 100%;
}
.timeline-no {
  position: absolute;
  right: -10.4%;
  top: calc(50% - 20px);
  color: #002746;
  font-weight: bold;
  font-size: 16px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #002746;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-item.right .timeline-no {
  left: -10%;
}
.tl-line {
  position: absolute;
  top: 7%;
  left: 50%;
  width: 1px;
  height: 85%;
  background: #00274630;
}
.tl-line-fill {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 0%;
  background: #007bff;
}
.timeline-item.active {
    background-color: #007bff; /* Bootstrap blue or your custom blue */
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.timeline-item.active .icon-img{
  filter: brightness(100);
}
.timeline-item.active h4,
.timeline-item.active p {
  color: #fff;
}
.timeline-item.active .timeline-no {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .timeline-items {
    padding-left: 50px;
  }
  .timeline-item {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .timeline-item.right {
    margin: 0;
  }
  .timeline-item .timeline-no {
    left: -6% !important;
  }
  .tl-line {
    position: absolute;
    top: 15%;
    left: 2%;
    width: 1px;
    height: 71.5%;
  }
  .tl-line-fill {
    position: absolute;
    top: 0;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .timeline-items{
  grid-template-columns: repeat(1, 1fr); 
}
.timeline-item {
width: 100%;
padding: 20px 15px;
height: auto;
flex-direction: column;
justify-content: left;
align-items: start;
gap: 0;
}
  .timeline-item .timeline-no {
    left: -58px !important;
  }
}

/* Update roadmap styles for hero section integration */
.hero .roadmap-timeline {
position: relative;
max-width: 1200px;
padding: 0 20px; 
z-index: 2;
}


/* Social Networks Section */
.social-section {
padding: 120px 0;
position: relative;
overflow: hidden;
}

.social-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
pointer-events: none;
}

.social-grid {
display: flex;
gap: clamp(1rem, 3vw, 1.5rem);
overflow-x: auto;
padding: clamp(1rem, 3vw, 1.5rem) 0;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
margin: 0 calc(var(--container-padding) * -1);
padding: 0 var(--container-padding);
}

.social-grid::-webkit-scrollbar {
display: none; /* Chrome, Safari and Opera */
}

.social-cards-container {
display: flex;
gap: 2rem;
position: absolute;
transition: transform 0.5s ease;
}

.social-card {
position: relative;
width: 200px;
height: 200px;
padding: 1rem;
background: rgba(255, 255, 255, 0.02);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
flex-shrink: 0;
}

.social-card a {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
text-decoration: none;
}

.social-card:hover {
transform: scale(1.05);
box-shadow: 0 8px 24px rgba(29, 161, 242, 0.15);
}

.social-card img {
width: 150px;
height: 150px;
object-fit: contain;
transition: transform 0.3s ease;
}

.social-card:hover img {
transform: scale(1.1);
}

/* Social card specific styles */
.social-card.twitter .social-icon {
font-family: system-ui;
}

.social-card.linkedin .social-icon {
font-family: system-ui;
font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 767px) {
.social-section {
padding: 80px 0;
}

.social-grid {
flex-direction: column;
gap: 16px;
}

.social-card {
width: 100%;
max-width: 280px;
padding: 24px;
}

.social-card:hover {
transform: translateY(-4px) scale(1.01);
}
}

/* Smooth scrolling for the whole page */
html {
scroll-behavior: smooth;
}

/* Focus styles for accessibility */
:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}

/* Prevent content from being hidden under fixed header */
:target {
scroll-margin-top: 80px;
}

/* Ensure proper spacing between sections */
/* section + section {
margin-top: var(--section-spacing);
} */

/* Section Styles */
.content-section {
padding: 10px 0 50px 0;
position: relative;
overflow: hidden;
background: transparent;
}

.content-section .section-title {
margin-bottom: 10px;
margin-top: clamp(2rem, 4vw, 3rem);
position: relative;
z-index: 1;
text-align: left;
}

.content-section .section-text {
font-size: var(--text-lg);
line-height: 1.8;
color: #000;
position: relative;
z-index: 1;
}

/* Fade Section Animation */
.fade-section {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
will-change: opacity, transform;
}

.fade-section.visible {
opacity: 1;
transform: translateY(0);
}

/* Section Background Decoration */
.section-bg-deco {
display: block;
margin: 30px auto;
width: 100%;
max-width: 700px;
opacity: 0.12;
filter: blur(6px);
object-fit: cover;
border-radius: 8px;
mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

@media (max-width: 767px) {
.section-bg-deco {
max-width: 100%;
margin: 20px auto;
opacity: 0.08;
}
}

/* Section Background Decoration */
.linear-bg-deco {
position: absolute;
right: -5%;
bottom: -10%;
width: 70%;
max-width: 900px;
opacity: 0.15;
z-index: -1;
transform: rotate(-6deg);
object-fit: cover;
pointer-events: none;
}

@media (max-width: 767px) {
.linear-bg-deco {
width: 100%;
opacity: 0.1;
right: -10%;
bottom: -5%;
}
}

/* Linear-inspired Problem Section */
.linear-section {
padding: clamp(80px, 10vw, 120px) 20px;
background-color: #0d0d0d;
position: relative;
overflow: hidden;
}

.linear-container {
max-width: 960px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.linear-section h2 {
font-size: clamp(2.5rem, 5vw, 3rem);
font-weight: 700;
background: var(--primary-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: clamp(2rem, 4vw, 3rem);
text-align: center;
}

.linear-section p {
font-size: clamp(1rem, 2.5vw, 1.1rem);
font-weight: 400;
color: var(--text-secondary);
line-height: 1.7;
max-width: 800px;
margin: 0 auto;
text-align: center;
}

@media (max-width: 767px) {
.linear-section {
padding: 60px 20px;
}

.linear-section h2 {
text-align: center;
}

.linear-section p {
text-align: center;
}
}

.footer-disclaimer {
text-align: center;
color: rgba(255, 255, 255, 0.6);
font-size: 12px;
line-height: 1.6;
max-width: 900px;
margin: 20px auto 0;
padding-top: 20px;
border-top: 1px solid var(--card-border);
}

/* Demo Page */
.demo-section {
max-width: 600px;
margin: 0 auto;
/* padding: 4rem 0; */
text-align: center;
}

.demo-intro {
color: #000;
margin: 1.5rem 0 3rem;
font-size: var(--text-lg);
}

.demo-form {
max-width: 500px;
margin: 0 auto;
}

.demo-message {
margin-top: 1rem;
padding: 1rem;
border-radius: 8px;
background: rgba(29, 161, 242, 0.1);
color: white;
text-align: center;
}

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

/* Social Carousel Section */
.social-carousel-section {
  text-align: center;
position: relative;
padding: var(--section-spacing) 0;
background: #fff;
overflow: hidden;
margin: 0;
z-index: 2;
}

.social-carousel-title {
text-align: center;
font-size: 2rem;
font-weight: 700;
margin-bottom: 3rem;
background: var(--primary-gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.social-carousel-container {
position: relative;
/* max-width: 1200px; */
margin: 0 auto;
/* padding: 0 var(--container-padding); */
}

.social-carousel {
position: relative;
width: 100%;
height: 280px;
display: flex;
align-items: center;
justify-content: center;
/* overflow: hidden; */
}

.social-carousel::before,
.social-carousel::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 25%;
z-index: 2;
pointer-events: none;
}
.social-card {
position: relative;
width: 240px;
height: 240px;
padding: 1rem;
background: rgba(255, 255, 255, 0.02);
border-radius: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: slideLeft 20s linear infinite;
animation-play-state: running;
}

.social-card:hover {
transform: scale(1.05);
box-shadow: 0 8px 24px rgba(29, 161, 242, 0.15);
}

.social-card img {
width: 180px;
height: 180px;
object-fit: contain;
transition: transform 0.3s ease;
}

.social-card:hover img {
transform: scale(1.1);
}

@keyframes slideLeft {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}

/* Responsive adjustments */
@media (max-width: 767px) {
.social-carousel {
height: 240px;
}

.social-card {
width: 200px;
height: 200px;
padding: 1.5rem;
}

.social-carousel::before,
.social-carousel::after {
width: 15%;
}
}

/* Social Carousel Controls */
.carousel-controls {
position: absolute;
bottom: -2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 1rem;
z-index: 3;
}

.carousel-control {
width: 40px;
height: 40px;
border: none;
border-radius: 50%;
    background: rgb(29 161 242);
color: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.carousel-control:hover {
background: var(--primary-gradient);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(29, 161, 242, 0.2);
}

.carousel-control svg {
width: 20px;
height: 20px;
fill: currentColor;
}

/* Update social card styles */
.social-carousel {
position: relative;
width: 100%;
height: 280px;
display: flex;
align-items: center;
justify-content: center;
cursor: grab;
}

.social-carousel:active {
cursor: grabbing;
}

.social-card {
position: relative;
width: 240px;
height: 240px;
padding: 1rem;
background: rgba(255, 255, 255, 0.02);
border-radius: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: slideLeft 20s linear infinite;
animation-play-state: running;
}

.social-card:hover {
animation-play-state: paused;
}

.social-carousel.dragging .social-card {
animation-play-state: paused;
}

.social-card img {
width: 180px;
height: 180px;
object-fit: contain;
transition: transform 0.3s ease;
}

/* How It Works Scroll Section */
.how-it-works-scroll {
height: 100vh;
position: relative;
overflow: hidden;
margin:0;
padding: 50px 20px;
    /* background: linear-gradient(to bottom, #1DA1F2, #B0E0E6, #E0FFFF); */
    background: #fff;
}
.scroll-title {
width: 100%;
padding: 0 0 2rem 0;
text-align: center;
font-size: var(--text-3xl);
background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.scroll-step-container {
position: relative;
height: 50%;
width: 100%;

}

.scroll-step {
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.6s ease, transform 0.6s ease;
z-index: 1;
margin-bottom:15px;

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 100%);
width: 100%;
max-width: 1200px;
opacity: 0;
}

.scroll-step-content {
max-width: 1200px;
padding: 2rem;
text-align: center;
position: relative;
background: #fff;
border: 1px solid var(--card-border);
border-radius: 16px;
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 20px;
/* border-color: rgba(29, 161, 242, 0.5) !important; */
    box-shadow: 0px -4px 13px 1px rgb(0 0 0 / 19%) !important;
}
.text-box{
display: flex;
flex-direction: column;
align-items: left;
width: 50%;
padding-top: 30px;
}
.img-box{
display: flex;
width: 50%;
}
.img-box img{
width: 100%;
height: auto;
object-fit: cover;
}
.scroll-step-content h3 {
font-size: clamp(20px, 3.5vw, 40px);
margin-bottom: 1rem;
color: #000;
position: relative;
z-index: 2;
text-align: left;
}

.scroll-step-content p {
font-size:clamp(14px, 3.5vw, 18px) ;
color: #000;
line-height: 1.6;
position: relative;
z-index: 2;
text-align: left;
}
/* footer css start here */
@media (max-width:1100px) {
    .img-box img{
height: 270px;
}
}
@media (max-width: 767px) {
  .img-box img{
height: 105px;
}
.scroll-step-content {
padding: 10px;
}
.text-box, .img-box{
width: 100%;
}
.scroll-step-content{
flex-direction: column;
}

.scroll-step-content h3 {
font-size: var(--text-xl);
}

}

/* Video Background */
.video-background {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
object-fit: contain;
z-index: -1;
opacity: 0.3;
background-color: #000; /* Aggiunto per evitare spazi vuoti */
}

/* Ensure content stays above video */
.page-content {
position: relative;
z-index: 1;
padding-top:130px;
padding-bottom: 30px;
}
.page-title{
     font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary-blue);
  text-align: center;
}

/* Mobile optimization */
@media (max-width: 767px) {
.video-background {
object-fit: contain;
}
.page-content {
padding-top:100px;
}
}

/* Aggiungiamo media queries per gestire diversi aspect ratio */
@media (min-aspect-ratio: 16/9) {
.hero-background video {
width: 100%;
height: auto;
}
}

@media (max-aspect-ratio: 16/9) {
.hero-background video {
width: auto;
height: 100%;
}
}

/* Regole di sicurezza per elementi di background */
body::before,
body::after,
.section-background,
.hero-background::before,
.hero-background::after {
pointer-events: none !important;
z-index: -20 !important;
}

/* Debug: evidenziamo temporaneamente l'area input per vedere se è cliccabile */
.input-group input:hover {
border-color: rgba(29, 161, 242, 0.5) !important;
box-shadow: 0 0 0 2px rgba(29, 161, 242, 0.2) !important;
}

.input-group input:focus {
outline: none;
border-color: var(--primary-blue) !important;
box-shadow: 0 0 0 2px rgba(29, 161, 242, 0.3) !important;
}

/* Hero Animations Keyframes */
/* @keyframes slideInFromLeft {
0% {
transform: translateX(-100%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideInFromRight {
0% {
transform: translateX(100%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}

@keyframes fadeInUp {
0% {
transform: translateY(20px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
.hero-title-animated {
opacity: 0;
transform: translateX(-100%);
animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-subtitle-animated {
opacity: 0;
transform: translateX(100%);
animation: slideInFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-cta-animated {
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 1s ease-out 0.8s forwards;
}
@media (max-width: 480px) {
.hero-title-animated,
.hero-subtitle-animated {
animation-name: fadeInUp;
}

.hero-title-animated {
animation-delay: 0s;
}

.hero-subtitle-animated {
animation-delay: 0.2s;
}

.hero-cta-animated {
animation-delay: 0.5s;
}
}
@media (max-width: 767px) {
.hero-title-animated {
animation-duration: 1s;
}

.hero-subtitle-animated {
animation-duration: 1s;
animation-delay: 0.2s;
}

.hero-cta-animated {
animation-delay: 0.6s;
}
}

@media (prefers-reduced-motion: reduce) {
.hero-title-animated,
.hero-subtitle-animated,
.hero-cta-animated {
animation: none !important;
opacity: 1 !important;
transform: none !important;
}
} */

/* Collaborate Page Styles */
.collaborate-content {
max-width: 900px;
margin: 0;
padding-top: 2rem;
padding-bottom: 2rem;
}

.collaborate-title {
font-size: clamp(1.75rem, 3.5vw, 2.5rem);
font-weight: 600;
line-height: 1.3;
margin-bottom: 2rem;
margin-top: 1rem;
text-align: left;
background: var(--primary-gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.collaborate-description {
margin-bottom: 3rem;
}

.collaborate-description p {
font-size: clamp(1rem, 2.5vw, 1.1rem);
font-weight: 400;
line-height: 1.7;
color: #000;
margin-bottom: 1.5rem;
text-align: left;
max-width: none;
}

.collaborate-contact {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
}

.collaborate-contact p {
font-size: clamp(1rem, 1.8vw, 1.1rem);
font-weight: 400;
color: #000;
margin-bottom: 1rem;
text-align: left;
}

.collaborate-email {
font-size: clamp(1rem, 1.8vw, 1.1rem) !important;
font-weight: 500 !important;
color: var(--text-primary) !important;
background: rgba(29, 161, 242, 0.1);
border: 1px solid rgba(29, 161, 242, 0.3);
border-radius: 8px;
padding: 1rem 1.5rem;
margin-top: 1rem;
display: inline-block;
}

.collaborate-email strong {
color: var(--primary-blue);
font-weight: 500;
}

/* Responsive adjustments for collaborate page */
@media (max-width: 767px) {
.collaborate-content {
padding-top: 1rem;
padding-bottom: 1rem;
}

.collaborate-title {
font-size: clamp(1.8rem, 4vw, 2.2rem);
line-height: 1.2;
margin-bottom: 1.5rem;
}

.collaborate-description p {
font-size: 0.95rem;
line-height: 1.6;
}

.collaborate-contact {
padding: 1.5rem;
}

.collaborate-contact p {
font-size: 0.95rem;
}

.collaborate-email {
font-size: 1rem;
}
}

@media (max-width: 480px) {
.collaborate-content {
padding: 0.5rem;
}

.collaborate-description p {
font-size: 0.9rem;
}

.collaborate-contact p {
font-size: 0.9rem;
}

.collaborate-email {
font-size: 0.95rem;
}
}

/* Invest Page Styles */
.invest-content {
/* max-width: 800px;
margin: 0 auto;
padding: 6rem 2rem 2rem; */
position: relative;
z-index: 10;
}

.invest-main-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 600;
color: var(--primary-blue);
text-align: center;
margin-bottom: 3rem;
line-height: 1.2;
}

.invest-section {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 1rem;
transition: all 0.3s ease;
}

.invest-section:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
}

.invest-section-title {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 600;
color: var(--primary-blue);
margin-bottom: 1.5rem;
line-height: 1.3;
}

.invest-text {
font-size: clamp(1rem, 2.5vw, 1.1rem);
font-weight: 400;
color: #000;
line-height: 1.7;
margin-bottom: 1rem;
}

.invest-text:last-child {
margin-bottom: 0;
}

.invest-list {
list-style: none;
padding: 0;
margin: 0;
}

.invest-list li {
font-size: clamp(1rem, 2.5vw, 1.1rem);
font-weight: 400;
color: #000;
line-height: 1.7;
margin-bottom: 1rem;
/* padding-left: 1.5rem; */
position: relative;
}

/* .invest-list li:before {
content: "✓";
color: var(--primary-blue);
font-weight: 600;
position: absolute;
left: 0;
top: 0;
} */

.invest-list li:last-child {
margin-bottom: 0;
}

.invest-list a {
color: var(--primary-blue);
text-decoration: none;
transition: color 0.3s ease;
}

.invest-list a:hover {
color: var(--accent-blue);
text-decoration: underline;
}

.invest-contact {
background: rgba(59, 130, 246, 0.1);
border-color: rgba(59, 130, 246, 0.3);
}

.invest-email {
font-size: clamp(1.1rem, 3vw, 1.3rem);
font-weight: 500;
color: var(--primary-blue);
text-align: center;
margin: 1.5rem 0;
padding: 1rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.invest-email strong {
color: var(--accent-blue);
font-weight: 600;
}

/* Responsive adjustments for invest page */
@media (max-width: 767px) {
.invest-main-title {
font-size: clamp(2rem, 6vw, 2.8rem);
margin-bottom: 2rem;
}

.invest-section {
padding: 2rem 1.5rem;
margin-bottom: 2rem;
}

.invest-section-title {
font-size: clamp(1.2rem, 4vw, 1.5rem);
margin-bottom: 1rem;
}

.invest-text {
font-size: clamp(0.95rem, 3vw, 1rem);
line-height: 1.6;
}

.invest-list li {
font-size: clamp(0.95rem, 3vw, 1rem);
line-height: 1.6;
margin-bottom: 0.8rem;
}

.invest-email {
font-size: clamp(1rem, 4vw, 1.2rem);
padding: 0.8rem;
}
}

@media (max-width: 480px) {
.invest-main-title {
font-size: clamp(1.8rem, 7vw, 2.2rem);
margin-bottom: 1.5rem;
}

.invest-section {
padding: 1.5rem 1rem;
margin-bottom: 1.5rem;
}

.invest-section-title {
font-size: clamp(1.1rem, 5vw, 1.3rem);
margin-bottom: 0.8rem;
}

.invest-text {
font-size: clamp(0.9rem, 3.5vw, 0.95rem);
line-height: 1.5;
}

.invest-list li {
font-size: clamp(0.9rem, 3.5vw, 0.95rem);
line-height: 1.5;
margin-bottom: 0.6rem;
/* padding-left: 1.2rem; */
}

.invest-email {
font-size: clamp(0.95rem, 4.5vw, 1.1rem);
padding: 0.6rem;
margin: 1rem 0;
}
}

/* Team Page Styles */
.team-content {
/* max-width: 800px;
margin: 0 auto;
padding: 6rem 2rem 2rem; */
position: relative;
z-index: 10;
}

.team-main-title {
font-size: clamp(2.2rem, 4.5vw, 3.2rem);
font-weight: 600;
color: var(--primary-blue);
text-align: center;
margin-bottom: 3rem;
line-height: 1.2;
}

.team-content .section-title {
text-align: left;
}

.section-subtitle {
font-size: clamp(1.2rem, 3vw, 1.5rem);
font-weight: 500;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 1.5rem;
text-align: left;
}

.section-paragraph {
font-size: clamp(1rem, 2.5vw, 1.1rem);
font-weight: 400;
color: #000;
line-height: 1.7;
margin-bottom: 2rem;
text-align: left;
}

.value-list {
list-style: none;
padding: 0;
margin: 0;
max-width: 800px;
}

.value-list li {
font-size: clamp(1rem, 2.5vw, 1.1rem);
font-weight: 400;
color: #000;
line-height: 1.7;
margin-bottom: 1.5rem;
scroll-padding-top: 1.5rem ;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
transition: all 0.3s ease;
position: relative;
/* padding-left: 2rem; */
}

/* .value-list li:before {
content: "✓";
color: var(--primary-blue);
font-weight: 600;
position: absolute;
left: 0.8rem;
top: 1.5rem;
font-size: 1.2rem;
} */

.value-list li:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}

.value-list li strong {
color: var(--primary-blue);
font-weight: 600;
}

.value-list li:last-child {
margin-bottom: 0;
}

/* Team section responsive */
@media (max-width: 767px) {
/* hero section responsive */
.hero-cta{
flex-direction: column;
}

.team-main-title {
font-size: clamp(2rem, 6vw, 2.8rem);
margin-bottom: 2rem;
}

.section-subtitle {
font-size: clamp(1.1rem, 4vw, 1.3rem);
margin-bottom: 1rem;
}

.section-paragraph {
font-size: clamp(0.95rem, 3vw, 1rem);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.value-list li {
font-size: clamp(0.95rem, 3vw, 1rem);
margin-bottom: 1rem;
line-height: 1.6;
}

.value-list li:before {
left: 0.6rem;
top: 1.2rem;
font-size: 1rem;
}
}

@media (max-width: 480px) {

.team-main-title {
font-size: clamp(1.8rem, 7vw, 2.2rem);
margin-bottom: 1.5rem;
}

.section-subtitle {
font-size: clamp(1rem, 5vw, 1.2rem);
margin-bottom: 0.8rem;
}

.section-paragraph {
font-size: clamp(0.9rem, 3.5vw, 0.95rem);
margin-bottom: 1rem;
line-height: 1.5;
}

.value-list li {
font-size: clamp(0.9rem, 3.5vw, 0.95rem);
margin-bottom: 0.8rem;
line-height: 1.5;
}

.value-list li:before {
left: 0.5rem;
top: 1rem;
font-size: 0.9rem;
}
} 

/* New Banner Styles */
.banner {
  padding: 180px 0 150px;
  background-color:#f5f5f5;
  position: relative;
  overflow: hidden;
}
.banner-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-vid {
  width: 60%;
  border: 10px solid #0000001a;
  border-radius: 36px;
  overflow: hidden;
  margin: 40px auto 0;
  position: relative;
  z-index: 3;
}
.banner-vid video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.eyebrow {
    color: #2855fd;
    background-color: #2855fd1a;
    border: 1px solid #2855fd1a;
    border-radius: 100px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}
.banner-heading {
    color: #004674;
    margin: 20px 0;
    text-transform: capitalize;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    overflow: hidden;
}



.banner-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.6s ease-out forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered delay (you can add more as needed) */
.banner-heading .word:nth-child(1) { animation-delay: 0.2s; }
.banner-heading .word:nth-child(2) { animation-delay: 0.5s; }
.banner-heading .word:nth-child(3) { animation-delay: 0.8s; }
.banner-heading .word:nth-child(4) { animation-delay: 1.1s; }
.banner-heading .word:nth-child(5) { animation-delay: 1.4s; }
.banner-heading .word:nth-child(6) { animation-delay: 1.7s; }
.banner-heading .word:nth-child(7) { animation-delay: 2s; }



.banner-para {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 890px;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.button {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 100px;
    max-width: max-content;
    padding: 2px 2px 2px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all  .5s ease-in-out;
}
.button:hover {
  color: var(--primary-blue);
}
.button.white {
  background-color: #fff;
  color: var(--primary-blue);
}
.button.white:hover {
  color: #fff;
}
.button span {
  position: relative;
  z-index: 1;
}
.btn-icon {
    background-color: #fff;
    color: #0d8ce0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 5px;
    display: flex;
    position: relative;
    z-index: 1;
    transition: all .5s ease-in-out;
}
.button.button.white .btn-icon {
  background-color: #0d8ce0;
    color: #fff;
}
.button:hover .btn-icon {
  transform: rotate(-90deg);
}
.btn-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 0%;
  background: #fff;
  transition: all .5s ease-in-out;
  z-index: 0;
}
.button.white .btn-bg {
  background: var(--primary-blue);
}
.button:hover .btn-bg {
  width: 100%;
}
/* cursor dots styles */
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #0d8ce0;
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgba(13, 140, 224, 0.51);
}
/* lng heading-style */
.platform-section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
}
.platform-title {
  text-align: center;
  font-size: 90px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  color: #004674;
  z-index: 1;
}
.overlay-animation {
    z-index: 1;
    grid-column-gap: 1%;
    grid-row-gap: 1%;
    display: flex;
    position: absolute;
    inset: 0%;
}
.overlay-element {
    perspective-origin: 100%;
    transform-origin: 100%;
    background-color: #1DA1F2;
    width: 20%;
    height: 100%;
}


/* testi styles  */
.testimonials-section {
  text-align: center;
    padding: 50px 0;
    overflow: hidden;
}
.testimonials-section .slick-slide {
    padding: 10px;
}
.testimonial-card {
    background: #fffefe;
    border-radius: 10px;
    padding: 30px 25px;
    position: relative;
    text-align: left;
    box-shadow: 0 4px 8px #100f0f9b;
    transition: transform 0.3s;
    overflow: hidden;
    min-height: 350px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 10px;
    left: 0;
    right: 0;
    width: 100%;
    background: #f0521b;
}
.testimonials-section .slick-slide:nth-child(even) .testimonial-card:before {
    background: #1a2d4b;
}
.testimonial-card i {
    font-size: 2rem;
    color: #ff6f61; /* Accent color for the quote icon */
    margin-bottom: 10px;
}
.testimonial-review {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    font-style: italic;
}
.testi-detail {
    display: flex;
    align-items: center;
    /* margin-top: 15px; */
}
.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 1px solid #e4e4e5;
}
.testi-role-name {
    display: flex;
    flex-direction: column;
}
.testimonial-name {
    font-size: 1.2rem !important;
    font-weight: bold;
    color: #002746;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #002746;
}
.testimonials-section .slick-dots {
    bottom: -45px;
}
.testimonials-section .slick-dots li.slick-active {
    width: 100px;
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
.testimonials-section .slick-dots li {
    background: #ff6f61;
    height: 5px;
    width: 20px;
    transition: all 0.5s ease-in-out;
    opacity: 0.5;
}
.testimonials-section .slick-dots li button {
    opacity: 0;
}
/* social section styles here */
.social-section {
    padding: 40px 0;
}

.social-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #004674;
}
.social-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.social-slider .slick-slide {
  padding: 10px;
}
.social-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 15px;
}
.social-slide:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    z-index: 5;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
    background: #f05b29;
}
.social-slide img {
    width: 100%;
    max-width: 140px;
    max-height: 100px;
    min-height: 90px;
    margin: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}
.social-slide img:hover {
    filter: grayscale(0%);
}
.social-slide:hover::after {
    transform: translateX(0);
}
.social-slider .slick-slide.slick-active.slick-current img  {
    filter: grayscale(0%);
}

@media screen  and (max-width:768px) {
  .banner {
    padding: 100px 0 40px !important;
  }
  .banner-heading {
    font-size: 40px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .banner-vid {
  width: 100% !important;
  max-width: 80%;
}
.platform-title {
font-size: 25px;
}
.about__title {
    font-size: 36px;
}
  .social-slide {
    margin: 0 5px;
    padding: 5px;
}
  
}
/* trends cards secton css here */
.trend-section {
background: #f5f5f5;
}
.trend-section .banner-heading {
  text-align: center;
  display: block;
  line-height: 1.2;
}
.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
  align-items: center;
  margin-top: 60px;
}

.trend-card {
  background-color: #fff;
  color: #111;
  border-radius: 25px;
  padding: 25px;
  width: 100%;
  height: 100%;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.trend-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.trend-icon img {
  width: 100%;
  height: 100%;
}
.trend-card h3 {
  font-size: 26px;
  line-height: 1.2;
  color: #002746;
  margin-bottom: 15px;
}

.trend-card p {
  font-size: 18px;
  color: #333;
}

.trend-center-img {
  grid-row: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trend-center-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .trend-grid {
    grid-template-areas:
      "center"
      "card1"
      "card2"
      "card3"
      "card4";
    grid-template-columns: 1fr;
  }

  .trend-center-img img {
    max-width: 220px;
  }
}
/* show case section */
.trend-showcase-section {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.trend-layout-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  align-items: center;
  gap: 60px;
}

.trend-heading {
  font-size: 56px;
  margin-bottom: 20px;
  color: #fff;
}

.trend-description {
  font-size: 18px;
  line-height: 1.6;
  color: #f3f3f3;
}

.trend-phones-column {
  position: relative;
  height: 550px;
}

.trend-phone-line {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.trend-phone-1 {
  z-index: 3;
}
.trend-phone-2 {
  z-index: 2;
}
.trend-phone-3 {
  z-index: 1;
}
.trend-phone-line img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 18px;
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

.trend-phone-line img:hover {
  transform: rotate(0deg) scale(1.05);
}
.pin-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  z-index: 10;
  pointer-events: none;
  gap: 140px 0;
}
.pin {
  background: radial-gradient(circle at center, #0d8ce0 0%, #1DA1F2 100%);
  width: 3px;
  border-radius: 100%;
  height: 200px;
  margin: 0 auto;
}
.pin.small {
  height: 100px;
}
.pin.large {
  height: 300px;
}
/* footer styles here  */
.footer-new {
    background: #fff;
    padding: 40px 0 22px;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid#4F4F4F;
}
.footer-links {
    max-width: 628px;
    width: 100%;
}
.footer-links a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
}
.footer-links a:hover {
    color: #005ec4;
}
.common-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
    gap: 8px;
    list-style-type: none;
}
.footer-links ul {
    gap: 25px;
    list-style-type: none;
}
.footer-links li {
    border-right: 1px solid#ccc;
    padding-right: 25px;
    display: flex;
    align-items: center;
}
.footer-links ul :last-of-type {
    border: none;
}
.footer-icons {
    width: 185px;
    margin-right: 15px;
    font-size: 20px;
}
.footer-icons a {
    color: #333;
    width: 35px;
    text-align: center;
    border-radius: 1px;
    transition: all 0.5s ease-in-out;
}
.footer-icons a:hover {
    background: #005ec4;
    color: #ccc;

}
.footer-icons i {
    padding: 8px 5px;
}
.footer-icons i:hover {
    color: #ccc;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.contact-link {
    max-width: 38%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.contact-link a {
  text-decoration: none;
}
.bottom-info {
    color: #333;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.bottom-info i {
    margin-right: 10px;
    font-size: 20px;
}
.footer-bottom span {
    margin-right: 15px;
}
