* {
  color: white;
  margin: 0px;
  padding: 0px;

}

:root {
  --primary: #a259ff;
    --primaryy:rgb(3, 16, 128)f;
  --secondary: #6a1b9a;
  --accent: #df7afe;
    --accentt: #1b025f;
  --bg-dark: #0a0a0a;
  --bg-card: #000000;
  --text-main: #fff;
  --text-muted: #bdbdbd;
  --border: #222;
  --star: #ffd700;
}

html,
body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  background: none;
  border-bottom: 1px solid var(--border);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar .navbar-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--text-main) !important;
  margin-right: 1.5rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

.navbar-nav .btn {
  margin-left: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primaryy), var(--accentt));
  border: 1px;
  border-color:#6a1b9a;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #0a0a0a;
}

/* Hero Section */
.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: none;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-bg-ellipse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle at 50% 40%,
    var(--accent) 0%,
    rgba(130, 89, 255, 0.2) 60%,
    transparent 100%
  );
  filter: blur(30px);
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}

.hero-title {
  font-family: "Figtree", sans-serif;
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ffffff;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn {
  min-width: 150px;
}

/* Section Titles */
.section-title {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

/* Services */
.services-section {
  padding: 60px 0 30px 0;
}

.services-badge {
  background-color: #0a0a0a;
  color: white;
  border-radius: 8px;
  border: 1px solid #333;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 auto 2rem auto;
  display: block;
  width: fit-content;
}

.services-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 16px 0 rgba(130, 89, 255, 0.07);
  border: 1px solid var(--border);
  min-height: 220px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border: 1px solid var(--accent);
  box-shadow: 0 8px 32px 0 rgba(130, 89, 255, 0.13);
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  height: 200px;
  object-fit: cover;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;

}

.service-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}

/* Why Partner Section */
.why-section {
  padding: 60px 0 30px 0;
  text-align: center;
}

.why-section .section-title {
  margin-bottom: 1.2rem;
}

.why-section .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}




#txtzoohov:hover{
    transform: scale(1.03); /* Change 1.1 to the scale you want */
    transition: transform 0.3s ease; /* Optional smooth effect */
  }

/* More Info */
.more-info-section {
  padding: 60px 0 30px 0;
}

.info-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  min-height: 120px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border: 1px solid var(--accent);
  transform: translateY(-3px);
}

.info-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.info-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* Testimonials */
.testimonials-section {
  padding: 60px 0 30px 0;
  text-align: center;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  min-height: 120px;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border: 1px solid var(--accent);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--star);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FAQ */
.faq-section {
  padding: 60px 0 30px 0;
  text-align: center;
}

.faq-title {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  color: #fff;
}

.accordion-button {
  background: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 8px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
}

.accordion-body {
  color: var(--text-muted);
  font-size: 1rem;
}


.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.services-badge {
  background: #6b46c1;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 20px;
}



.services-description {
  font-size: 16px;
  color: #ccc;
  max-width: 600px;
  margin-bottom: 40px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1 1 45%;
}

.service-image img {
  width: 100%;
  border-radius: 16px;
}

.service-content {
  flex: 1 1 50%;
}

.service-title {
  font-size: 28px;
  font-weight: bold;
  /* margin-bottom: 10px; */
}

.service-desc {
  font-size: 16px;
  color: #bbb;
}

.section-title:hover {
  scale: 1.09;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.navbar .nav-link {
  color: #fff;
  margin-left: 15px;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-bg-ellipse {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, #6b46c1, transparent);
  z-index: 2;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.btn-outline {
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-outline:hover {
  background-color: white;
  color: #000;
}

/* Container section */
#holeprt-cont {
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: 5pc;
}

.containersss {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 20px;
}

.image-sectionsss img {
  width: 450px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin-right: 40px;
}

.text-sectionsss h1 {
  font-size: 33px;
  margin-bottom: 16px;
  font-weight: 600;
}

.text-sectionsss p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
  color: #cccccc;
}

.navigationsss {
  position: relative;
  margin-top: 30px;
  left: 40%;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ccc;
}

/* Footer content */
.footer {
  background: linear-gradient(to bottom, #062791, #000);
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.newsletter-label {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.newsletter-form {
  display: flex;
  max-width: 350px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
  flex: 1;
  background-color: #1a1a1a;
  color: #fff;
}

.newsletter-form button {
  padding: 10px 16px;
  background-color: #062791;
  color: white;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #005cc5;
}

.footer-column {
  flex: 1 1 160px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #999;
  border-top: 1px solid #222;
  margin-top: 40px;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 6px;
    margin: 5px 0;
  }
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 20px 0;
}

/* Optional: Smooth fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeIn 1s ease-in-out;
}
.text-sectionsss{
  background-color: #0b0e23;
}



*{
 
  font-family: "Squada One", sans-serif;
 font-weight: 100;
  font-style: normal;
}

