/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222.2 47.4% 11.2%;

    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 47.4% 11.2%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 47.4% 11.2%;

    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;

    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;

    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;

    --destructive: 0 100% 50%;
    --destructive-foreground: 210 40% 98%;

    --ring: 215 20.2% 65.1%;

    --radius: 0.5rem;
  }

  .dark {
    --background: 224 71% 4%;
    --foreground: 213 31% 91%;

    --muted: 223 47% 11%;
    --muted-foreground: 215.4 16.3% 56.9%;

    --accent: 216 34% 17%;
    --accent-foreground: 210 40% 98%;

    --popover: 224 71% 4%;
    --popover-foreground: 215 20.2% 65.1%;

    --border: 216 34% 17%;
    --input: 216 34% 17%;

    --card: 224 71% 4%;
    --card-foreground: 213 31% 91%;

    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 1.2%;

    --secondary: 222.2 47.4% 11.2%;
    --secondary-foreground: 210 40% 98%;

    --destructive: 0 63% 31%;
    --destructive-foreground: 210 40% 98%;

    --ring: 216 34% 17%;

    --radius: 0.5rem;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground;
    font-feature-settings:
      "rlig" 1,
      "calt" 1;
  }
}

/* public/style.css */
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo/Archivo-Regular.woff2') format('woff2'),
    url('/fonts/archivo/Archivo-Regular.woff') format('woff'),
    url('/fonts/archivo/Archivo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo/Archivo-Bold.woff2') format('woff2'),
    url('/fonts/archivo/Archivo-Bold.woff') format('woff'),
    url('/fonts/archivo/Archivo-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Add more @font-face rules for other weights/styles if needed */


body {
  font-family: 'Archivo' !important;
  background-color: #f9f9fd !important;
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}

.root{
  overflow-x: hidden;
}
/* Privacy Policy Styles */
.privacy-policy-container {
  background: #ffffff;
  min-height: 100vh;
  padding: 40px 0;
}

.privacy-content {
  color: #333;
}

.back-link {
  color: #8a2be2;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 30px;
  display: inline-block;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #ff69b4;
}

.privacy-content h1 {
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.website-url {
  color: #666;
  font-size: 16px;
}

.effective-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 40px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.policy-section p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.policy-section ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.policy-section ul li {
  color: #333;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.policy-section ul li::before {
  content: "•";
  color: #8a2be2;
  position: absolute;
  left: 0;
}

.policy-section a {
  color: #8a2be2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-section a:hover {
  color: #ff69b4;
}

@media (max-width: 768px) {
  .privacy-policy-container {
    padding: 20px 0;
  }

  .privacy-content h1 {
    font-size: 28px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 15px;
  }
  .contact{
    width: 100% !important;
  }
  .video-cont .text-gradient{
    font-size: 60px !important;
  }
}

.footer-privacy-link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-privacy-link:hover {
  opacity: 0.8;
  color: #fff;
}

/* If you're using active states */
.footer-privacy-link:active,
.footer-privacy-link:visited {
  color: #fff;
}

/* Contact Page Styles */

.contact-card {
  background: rgba(255, 255, 255, 1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.1);
  text-decoration: none !important;
  /* Remove underline */
  color: inherit;
  /* Inherit text color */
  display: block;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.2);
  text-decoration: none !important;
}

.contact-card h3 {
  color: #333;
  margin-bottom: 8px;
}

.contact-card p {
  color: #666;
  margin-bottom: 16px;
}

.contact-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none !important;
}

/* Ensure visited links don't change color */
.contact-card:visited,
.contact-link:visited {
  color: inherit;
  text-decoration: none !important;
}

/* Style for the email link specifically */
a[href^="mailto:"] {
  text-decoration: none !important;
  color: inherit;
}

.contact-container {
  padding-block: 4rem;
  position: relative;
  background: url('./images/contct-bg.png') no-repeat;
  background-size: cover;
  /* background: rgba(255, 255, 255, 0.95); */
}

.launch-section {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
}

.launch-section h1 {
  font-weight: 800;
  font-size: 80px;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: blur(5px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  overflow-wrap: anywhere;
}

.contact-card {
  background: rgba(255, 255, 255, 1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.2);
}

.container {
  position: relative;
  z-index: 1;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.1);
}

.back-link {
  color: #8a2be2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 16px;
}

.back-link:hover {
  color: #ff69b4;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.contact-card h3 {
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-link {
  color: #8a2be2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ff69b4;
}

.address-section {
  margin-top: 60px;
  padding: 40px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 16px;
}

.address-section h3 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
}

.address-section p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.header-head{
  font-weight:600;
  line-height: 1.2;
}
.header-text{
  font-size:32;
  font-weight:500;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-grid {
    /* grid-template-columns: 1fr; */
    gap: 20px;
  }

  .contact-card {
    padding: 20px;
  }

  .address-section {
    padding: 30px;
  }
  .launch-section {
    font-size: 15px;
  }
  .contact{
    width: 100%;
  }
  .image-section img{
    object-fit: cover;
  }
  .approach-img{
    order: 2;
  }
}

/* Testimonial Section Styles */
.testimonial-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
  text-align: center;
}

.quote-icon {
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #fff;
}

.author-info p {
  font-size: 16px;
  color: #888;
  margin-bottom: 8px;
}

.company-logo img {
  max-width: 120px;
  height: auto;
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    padding: 24px;
    margin: 0 20px;
  }

  .testimonial-text {
    font-size: 20px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-info {
    text-align: center;
  }
}

/* New specific classes for USB heading */
.usb-hero-heading {
  font-size: 42px;
  line-height: 1.3;
  max-width: 900px;
  /* margin: 0 auto; */
  background: linear-gradient(90deg,
      rgb(116, 115, 115) 0%,
      rgb(116, 115, 115) 10%,
      black 40%,
      black 60%,
      rgb(116, 115, 115) 90%,
      rgb(116, 115, 115) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.usb-hero-heading br {
  display: block;
  /* Ensures line break is always visible */
}

/* Responsive styles */
@media (max-width: 1200px) {
  .usb-hero-heading {
    font-size: 36px;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .usb-hero-heading {
    font-size: 28px;
    max-width: 100%;
    padding: 0 20px;
  }

  .usb-hero-heading br {
    display: none;
    /* Stack text on mobile */
  }
}

@media (max-width: 480px) {
  .usb-hero-heading {
    font-size: 24px;
  }
}

/* Feature Cards Styling */
.cards {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  transition: width 0.3s ease;
}

.cards::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff69b4, #8a2be2);
  transition: width 0.3s ease;
}

.cards:hover::before,
.cards:hover::after {
  width: 100%;
}

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

.cards h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.cards p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.cards svg {
  flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cards {
    padding: 20px;
  }

  .cards h3 {
    font-size: 16px;
    gap: 8px;
  }

  .cards p {
    font-size: 13px;
  }
}

.meet .main-heading {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .meet .main-heading {
    font-size: 24px;
  }

  .meet .main-heading br {
    display: none;
  }
}

.view-more-btn {
  background: linear-gradient(90deg, #8a2be2, #ff69b4);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.view-more-btn svg {
  transition: transform 0.3s ease;
}

.view-more-btn:hover svg {
  transform: translateX(5px);
}

/* Brands Slider Styles */
.brands-slider {
  padding: 20px 0;
}

.brand-item {
  padding: 0 15px;
}

.brand-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  /* Maintains aspect ratio */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.brand-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* This will maintain aspect ratio while fitting within the container */
  padding: 20px;
  transition: transform 0.3s ease;
}

.brand-item:hover .brand-image-wrapper img {
  transform: scale(1.05);
}

/* Custom dots style if needed */
.brands-slider .slick-dots {
  bottom: -40px;
}

.brands-slider .slick-dots li button:before {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.brands-slider .slick-dots li.slick-active button:before {
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brand-image-wrapper {
    padding-bottom: 70%;
    /* Slightly taller on mobile */
  }

  .brand-image-wrapper img {
    padding: 15px;
  }
}

.desktop-nav-links,
.mobile-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.mobile-nav-links {
  flex-direction: column;
}

.nav-link {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:hover {
  opacity: 0.8;
}

/* Meet Section Styles */
.meet .main-heading {
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.4;
}

.meet .cards-container {
  margin-top: -20px;
  /* Adjust this value to move cards up */
  margin-right: -20px;
  /* Move cards slightly to the left */
}

.meet .cards {
  /* margin-right: 20px; */
  /* Add some spacing between cards */
}

@media (max-width: 1199px) {
  .resp {
    gap: 20px;
  }

  .meet .cards-container {
    margin-top: 0;
    margin-right: 0;
  }

  .meet .main-heading {
    font-size: 24px;
  }

  .meet .main-heading br {
    display: none;
  }
}

/* Hero Section Styling  */

h1 {
  text-align: center;
  color: black;
  font-size: 72px !important;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  line-height: 43.64px;
  letter-spacing: 1px;
  word-wrap: break-word;
}

h3 {
  font-family: 'Archivo', sans-serif !important;
}

.meet h2 {
  font-size: 40px !important;

  font-weight: 500 !important;
  line-height: 52px !important;
}

.approch h2 {
  font-size: 40px !important;
  font-weight: 500 !important;
  line-height: 52px !important;
}

.cofounder h2 {
  font-size: 40px !important;
  font-weight: 500 !important;
  line-height: 52px !important;
}

p {
  font-family: 'Archivo', sans-serif !important;
  font-size: 25px;
  color: #667085;
}

.hero p {
  color: white !important;
}

.container {
  max-width: 80% !important;
}

.top-header {
  padding: 16px 0px;
  /* border-bottom: 0.79px rgba(5.31, 5.31, 5.31, 0.1) solid; */
  justify-content: center;
  align-items: center;
  gap: 6.3px;
  display: inline-flex;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  /* Transparent white */
  backdrop-filter: blur(10px);
  /* Blur effect */
  z-index: 3;
  /* Keep header on top */
}

.top-header p {
  color: black;
  font-size: 13.24px;
  font-weight: 400;
  line-height: 10.24px;
  word-wrap: break-word;
}

.top-header a {
  color: #1c1c1d;
  font-size: 13.24px;
  font-weight: 500;
  text-decoration: underline;
  line-height: 10.24px;
  word-wrap: break-word;
}

.header {
  padding: 7px;

  padding-left: 35px;
  padding-right: 35px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-bar ul {
  padding: 0px;
  margin: 0px;
  padding-left: 8.38px;
  padding-right: 12.57px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20.94px;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  gap: 4.19px;
  display: inline-flex;
}

.nav-bar ul li {
  list-style-type: none;
  color: black;
  padding: 15px;
  font-size: 12.56px;
  font-weight: 500;
  line-height: 12.56px;
  word-wrap: break-word;
}

.hero h1 {
  text-align: center;
  color: black;
  font-size: 72px;
  font-weight: 600;
  line-height: 43.64px;
  letter-spacing: 1px;
  word-wrap: break-word;
}

.hero p {
  text-align: center;
  color: black;
  font-size: 24.16px;
  font-weight: 500;
  line-height: 31.17px;
  word-wrap: break-word;
}

.bg-btn {
  text-align: center;
  color: white;
  font-weight: 500;
  line-height: 19.33px;
  word-wrap: break-word;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 17px;
  background: black;
  border-radius: 26px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  gap: 4.98px;
  display: inline-flex;
  border: none;
}

.text-gradient {
  background: linear-gradient(90deg,
      rgb(116, 115, 115) 0%,
      rgb(116, 115, 115) 10%,
      black 40%,
      black 60%,
      rgb(116, 115, 115) 90%,
      rgb(116, 115, 115) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.btn-gradient {
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 17px;
  background: linear-gradient(90deg, #aa38b9 0%, #670474 100%);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
  color: white;
  font-weight: 500;
  line-height: 12px;
  word-wrap: break-word;
  border: none;
}

.meet h2 {
  color: black;
  font-size: 49.26px;
  font-weight: 500;
  line-height: 52px;
  word-wrap: break-word;
}

.meet {
  /* background-image: url(/images/ellipse.png); */
  background-position: left center;
  background-repeat: no-repeat;
}

.cards {
  padding-top: 36.8px;
  padding-bottom: 20.2px;
  padding-left: 31px;
  padding-right: 31px;
  background: #f1f1f186;
  border-radius: 10px;
  overflow: hidden;
}

.meet h3 {
  color: black;
  font-size: 15.25px;
  font-weight: 500;
  line-height: 20px;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  gap: 10px;
}

.meet p {
  color: black;
  font-size: 13.6px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}

.approch .cards {
  background-color: white;
  padding: 0px;
  border-radius: 42.66px;
  height: 100%;
}

.approch .cards h2 {
  color: black;
  font-size: 24.79px !important;
  font-weight: 500;
  line-height: 33.33px !important;
  word-wrap: break-word;
}

.approch .cards p {
  color: black;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  word-wrap: break-word;
}

.founder .cards {
  border-radius: 15px;
}

.founder span {
  color: #6941c6;
  font-size: 16.82px;

  font-weight: 400;
  line-height: 25.23px;
  word-wrap: break-word;
}

.founder .cards p {
  color: #667085;
  font-size: 16.82px;

  font-weight: 400;
  line-height: 25.23px;
  word-wrap: break-word;
}

.cofounder h3 {
  text-align: center;
  color: #101828;
  font-size: 28px;
  font-family: Inter;
  font-weight: 500;
  line-height: 30px;
  word-wrap: break-word;
}

.cofounder h2 {
  text-align: center;
  color: #101828;
  font-size: 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  line-height: 28px;
  word-wrap: break-word;
}

.cofounder p {
  text-align: center;
  color: #667085;
  font-size: 22px;

  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}

.slick-dots li button:before {
  color: #737373 !important;
  border-radius: 9999px !important;
  font-size: 15px !important;
  transition: all 0.3s ease-in-out;
}

.slick-dots li.slick-active button:before {
  font-size: 15px !important;
  /* Increase size */
  background: linear-gradient(90deg,
      #aa38b9 0%,
      #670474 100%) !important;
  /* Apply gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 60px !important;
}

.slick-dots li {
  width: 28px !important;
}

.faq {
  background-color: white;
}

.accordion-item {
  border: none !important;
  border-bottom: 1px solid #eaecf0 !important;
}

.accordion-button:not(.collapsed) {
  color: black !important;
  background-color: white !important;
  box-shadow: none !important;
}

.accordion-body {
  color: #667085;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: 'Archivo', sans-serif;
  word-wrap: break-word;
}

.accordion-header {
  color: #101828;
  font-size: 20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  line-height: 30px;
  word-wrap: break-word;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("/images/plus.png") !important;
  background-size: contain !important;
  width: 20px !important;
  /* Adjust based on your icon size */
  height: 20px !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("/images/minus.png") !important;
  background-size: contain !important;
  width: 20px !important;
  height: 20px !important;
}

.btn-white {
  color: #18181b;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  word-wrap: break-word;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  border: none;
  background-color: transparent;
}

.btn-black {
  position: relative;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000;
  z-index: -1;
  transition: width 0.3s ease;
}

.btn-black:hover {
  color: #fff;
}

.btn-black:hover::before {
  width: 100%;
}

.newsletter-form {
  position: relative;
}

.group-input {
  display: flex;
  align-items: center;
  padding-left: 20.2px;
  padding-right: 6.3px;
  background: #f7f7f7;
  border-radius: 12.6px;
  overflow: hidden;
  gap: 5.4px;
  transition: all 0.3s ease;
}

.group-input:focus-within {
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.newsletter-input {
  flex: 1;
  color: black;
  font-size: 16.8px;
  border: none;
  background: transparent;
  padding: 8px 0;
  outline: none;
}

.submit-btn {
  background: black;
  color: white;
  border: none;
  border-radius: 8.4px;
  padding: 12px 24px;
  font-size: 16.8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-btn:hover {
  background: #333;
}

.submit-btn.loading {
  background: #666;
  cursor: not-allowed;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff3d;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.success-message {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.news {
  padding-left: 37.8px !important;
  padding-right: 37.8px !important;
  padding-top: 29.4px;
  padding-bottom: 29.4px;
  background: linear-gradient(90deg, #aa38b9 0%, #670474 100%);
  border-radius: 12.6px;
}

.news p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16.8px;
  font-weight: 400;
  word-wrap: break-word;
}

.news h2 {
  color: white;
  font-size: 16.8px;
  font-weight: 500;
  text-transform: capitalize;
  word-wrap: break-word;
}

input:focus-visible {
  outline: none !important;
  border: none !important;
}

.footer {
  background-color: black;
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
}

.footer ul {
  margin: 0px;
  padding: 0px;
  display: inline-flex;
  gap: 10px;
}

.footer ul li {
  color: #c8cbca;
  font-size: 12.3px;
  font-weight: 500;
  text-decoration: underline;
  line-height: 18.9px;
  word-wrap: break-word;
  list-style-type: none;
}

.jointext {
  color: #7e8180;
  font-size: 12.6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  line-height: 12.6px;
  word-wrap: break-word;
}

.join-section {
  /* background: linear-gradient(135deg,
      rgba(138, 43, 226, 0.05) 0%,
      rgba(255, 105, 180, 0.05) 100%); */
  position: relative;
  overflow: hidden;
  margin-top: 100px;

}

/* .join-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right,
      rgba(138, 43, 226, 0.1),
      transparent 70%),
    radial-gradient(circle at bottom left,
      rgba(255, 105, 180, 0.1),
      transparent 70%);
  z-index: 0;
} */

.join-section .container {
  position: relative;
  z-index: 1;
}

.btn-black {
  position: relative;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000;
  z-index: -1;
  transition: width 0.3s ease;
}

.btn-black:hover {
  color: #fff;
}

.btn-black:hover::before {
  width: 100%;
}

@media (max-width: 768px) {
  .join-section {
    padding: 40px 0;
    /* margin: 20px; */
  }
}

hr {
  opacity: 1 !important;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  /* Reduced the height to 50% */
  overflow: hidden;
  z-index: -1;
  /* Video should be behind all content */
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  /* Light dark overlay */
  z-index: 0;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  /* Transparent white */
  backdrop-filter: blur(10px);
  /* Blur effect */
  z-index: 3;
  /* Keep header on top */
}

.group-input {
  padding: 10px;
}

.submit {
  padding: 7px 15px;
}

.slick-slide img {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decentralized {
  background-image: url(/images/crypto-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
}

.decentralized h2 {
  color: white;
  font-size: 30px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  line-height: 42px;
  word-wrap: break-word;
}

.decentralized p {
  color: white;
  font-size: 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  line-height: 28px;
  word-wrap: break-word;
}

.decentralized button {
  color: white;
  font-size: 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  line-height: 28px;
  word-wrap: break-word;
  background-color: #000;
  border-radius: 3px !important;
}

.contact {
  width: 65%;
  margin: auto;
}

.contact-container label {
  color: #1e1e1e;
  font-size: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  line-height: 22.4px;
  word-wrap: break-word;
  margin-bottom: 10px;
}

.contact-container input {
  color: black;

  font-size: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  line-height: 16px;
  word-wrap: break-word;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px #d9d9d9 solid;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
  width: 100%;
}

.contact-container input:focus-visible {
  border: 1px #d9d9d9 solid !important;

}

.contact-container textarea:focus-visible {
  border: 1px #d9d9d9 solid !important;
  outline: none;
}

.contact-container textarea {
  color: black;
  font-size: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  line-height: 16px;
  word-wrap: break-word;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px #d9d9d9 solid;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: inline-flex;
}

@media only screen and (max-width: 767px) {
  .group-input input {
    width: 100%;
  }

  .cofounder h3 {
    font-size: 25px;

    line-height: 40px;
  }

  h1 {
    text-align: center;
    color: black;
    font-size: 45px !important;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    line-height: 43.64px;
    letter-spacing: 1px;
    word-wrap: break-word;
  }

  .meet h2 {
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 34px !important;
  }

  .approch h2 {
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 34px !important;
  }

  .cofounder h2 {
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 34px !important;
  }

  br {
    display: none;
  }

  .container {
    max-width: 95% !important;
  }

  .approch .cards {
    padding: 20px !important;
  }

  .cards .p-5 {
    padding: 20px !important;
  }
}

.social-icons img {
  width: 24px;
  /* Adjust size as needed */
  height: auto;
  margin-left: 10px;
  /* Space between icons */
}

@media (max-width: 768px) {
  .social-icons {
    right: 10px;
    /* Adjust position for smaller screens */
    top: 10px;
  }
}

.small-card {
  display: flex;
  /* background: white; */
  /* height: 260px; */
  height: 230px;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}

.small-card:hover {
  background-image: url(/images/Card-BG.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff !important;
}


.logo-image {
  height: 40px;
  width: auto;

}

.bg-img {
  background-image: url(/images/Card-BG.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cards:hover .color-cl {
  color: #ffffff;
}

.cards:hover .img-hov {
  width: 80%;
  padding: 10px;
  border-radius: 10px;
  background-color: #ffffff;
}

.image-container {
  position: relative;
}

.image-container img {
  position: absolute;
  top: 0;
  transform: translateY(-250px);
  width: 100%;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .image-container img {
    top: 0;
    transform: translateY(-150px);
    width: 450px;
  }

  .image-section img {
    object-fit: cover;
    height: 400px;
  }

  p {
    font-size: 18px;
  }
  .contact-grid{
    gap: 20px;
  }
  .launch-section div{
    font-size: 20px;
  }
  .header-head{
    font-weight:600;
    line-height: 1.2px;
  }
  .header-text{
    font-size: 20px;
    font-weight:500;
  }
}

@media (max-width: 767px) {
  .image-container {
    height: auto;
    /* Allow the container to grow with the image */
    position: static;
    /* Reset positioning for mobile */
  }

  .image-container img {
    position: static;
    /* Reset positioning for mobile */
    transform: none;
    /* Remove transform */
    width: 100%;
    /* Ensure the image is responsive */
  }
}

.heading-font {
  font-size: clamp(1.5rem, 15vw, 5rem)
}

canvas {
  width: 100% !important;
  height: 130px !important;
}

.image-section {
  position: relative;
}

.image-section img {
  width: 100%;
  border-radius: 34px;
  height: 500px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: fit-content;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 0 !important;
  margin: 50px auto;
  max-width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-wrapper:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.video {
  display: block;
  width: auto;
  height: 400px;
  object-fit: contain !important;
  border-radius: 12px;
  object-fit: cover;
}

.video-background-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-cont {
  position: relative;
  width: 100%;
  height: auto;
}

.video-cont .text-gradient {
  font-size: 70px;
  font-weight: 600;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.content-overlay {
  position: relative;
  z-index: 1;
  color: white;
  padding: 4rem 1rem;
}