@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&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&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #191a23;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}


/* General Reset */

a {

  color: white;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header and Navigation Styles */
.header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem 1rem;
  background-color: #fff;
  color: #191a23;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo img {
  width: 60%;
}
.navbar {
  display: flex;
  align-items: center;
}

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

.nav-links li {
  position: relative;
}

.nav-links li a {
  font-family: "Space Grotesk", sans-serif;
  color: #191a23;
  position: relative;
  padding: 0.5rem 0;
  font-size: 20px;
  transition: color 0.3s ease;
    text-decoration: none;
}

/* Animated Hover Effects */
.nav-links li a:before,
.nav-links li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #b9ff66;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.nav-links li a:before {
  top: 0;
  left: 0;
  transform-origin: left;
}

.nav-links li a:after {
  bottom: 0;
  right: 0;
  transform-origin: right;
}

.nav-links li a:hover:before,
.nav-links li a:hover:after {
  transform: scaleX(1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #191a23;
  border-radius: 2px;
}
.btn {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  transition-duration: 1s;
  cursor: pointer;
}
.btn:hover {
  background-color: #b9ff66;
  color: #fff;
}

/*Hero Sectiom*/
.hero {
  display: flex;
  align-items: center;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 25%;
  font-family: "Space Grotesk", sans-serif;
}
.hero-text h1 {
  font-size: 2rem;
}

.hero-video video {
  width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Button styling */
.hero-btn {
  padding: 0.5rem 1rem;
  background-color: #191a23;
  color: #f3f3f3;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition-duration: 1s;
  border-radius: 10px;
}

.hero-btn:hover {
  background-color: #b9ff66;
  color: #191a23;
}

/*Company List */
.company {
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}
.company-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr); /* 6 columns on desktop */
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.company-list.visible {
  opacity: 1;
  transform: translateY(0);
}
.company-list img {
  filter: grayscale(100%) brightness(0);
}

/*Services*/
.service-head {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: "Space Grotesk", sans-serif;
  color: #191a23;
}
.service-head h1 {
  background-color: #b9ff66;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  margin-right: 20px;
}
.service-head p {
  max-width: 550px;
  color: #191a23;
  font-size: 16px;
  font-weight: 400;
}

.card-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr); /* 3 columns */
  grid-template-columns: repeat(2, auto);
  gap: 20px;
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.custom-card {
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: sans-serif;
  cursor: pointer;
}
.bgc1 {
  background-color: #f3f3f3;
}
.bgc2 {
  background-color: #b9ff66;
}
.bgc3 {
  background-color: #191a23;
}
.bgc3 .learn-more {
  color: #fff;
}

.custom-card h3 {
  font-size: 18px;
  display: inline-block;
  padding: 4px 4px;
  border-radius: 5px;
  margin: 0 0 5px 0;
  max-width: 150px;
  line-height: 1.3;
}
.bgc1 h3 {
  background-color: #b9ff66;
}
.bgc2 h3 {
  background-color: #fff;
}
.bgc3 h3 {
  background-color: #fff;
}
.custom-card img {
  width: 150px;
  align-self: flex-end;
  margin: 10px 0;
}

.learn-more {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  margin-top: auto;
}

.learn-more span {
  background-color: black;
  color: #ccff66;
  border-radius: 50%;
  padding: 6px 8px;
  font-size: 14px;
}

/*Lets make it happen*/
.happen {
  display: flex;
  border: 1px solid black;
  max-width: 1200px;
  margin: 20px auto;
  background-color: #f3f3f3;
  border: none;
  border-radius: 20px;
  justify-content: space-between;
}
.happen-left {
  max-width: 450px;
  padding: 1rem;
  font-family: "Space Grotesk", sans-serif;
}
.happen-left p {
  padding-bottom: 20px;
}
.happen-left button {
  padding: 10px;
  border-radius: 10px;
  background-color: #191a23;
  color: #fff;
  border: none;
  cursor: pointer;
}
.happen-right {
  justify-items: end;
  align-self: flex-end;
}
.happen-right img {
  width: 300px;
}

/*Case Study*/
.container {
  max-width: 1200px;
  margin: 100px auto;
}

.header-case {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-family: "Space Grotesk", sans-serif;
}

.case-studies-badge {
  background-color: #b9ff66;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}

.header-text {
  color: #191a23;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  max-width: 500px;
}

.cases-container {
  background-color: #191a23;
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.case-item {
  color: white;
}

.case-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e0;
  margin-bottom: 20px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: #b9ff66;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.learn-more:hover {
  color: #8dd32a;
}

.arrow {
  margin-left: 8px;
  font-size: 16px;
}

/* Animation styles */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

.case-item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.case-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.case-item:nth-child(1) {
  transition-delay: 0.1s;
}
.case-item:nth-child(2) {
  transition-delay: 0.2s;
}
.case-item:nth-child(3) {
  transition-delay: 0.3s;
}

.scroll-animate {
  opacity: 0;
  transition: all 0.6s ease-out;
}

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

/* Different animation types */
.fade-up {
  transform: translateY(50px);
}
.fade-up.visible {
  transform: translateY(0);
}

.fade-down {
  transform: translateY(-50px);
}
.fade-down.visible {
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-50px);
}
.fade-left.visible {
  transform: translateX(0);
}

.fade-right {
  transform: translateX(50px);
}
.fade-right.visible {
  transform: translateX(0);
}

.scale-in {
  transform: scale(0.8);
}
.scale-in.visible {
  transform: scale(1);
}

/* Animation delays */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* Slower/Faster animations */
.slow {
  transition-duration: 1s;
}
.fast {
  transition-duration: 0.3s;
}

/* process Section */
.process-section{
  padding: 80px 0;
  background: #f8f9fa;
    font-family: "Space Grotesk", sans-serif;
}

.process-container {
  max-width: 800px;
  margin: 20px auto;
}

.process-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(25, 26, 35, 0.05);
}


.process-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #191a23;
  user-select: none;
}

.process-question:hover {
  color: #b9ff66;
}

.process-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.process-item.active .process-icon {
  transform: rotate(45deg);
}

.process-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #666;
  line-height: 1.6;
}

.process-item.active .process-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

/*Our Team*/
.team {
  max-width: 1200px;
  margin: 70px auto;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.team-badge {
  background-color: #b9ff66;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
}

.team-description {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  max-width: 550px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
  transition: transform 0.2s ease;
}

.team-member:hover {
  transform: translateY(-2px);
}

.member-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.member-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.member-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.member-info .role {
  font-size: 14px;
  color: #666;
}

.member-description {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.see-all-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: block;
  margin: 0 auto;
}

.see-all-btn:hover {
  background-color: #555;
}

.hidden-mobile {
  display: block;
}
/* Testimonial*/
.testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.section-badge {
  background-color: #b9ff66;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  max-width: 550px;
}

.testimonials-container {
  background-color: #2a2d3a;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background-color: transparent;
  border: 2px solid #84ff00;
  border-radius: 15px;
  padding: 25px;
  color: white;
  position: relative;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.testimonial-author {
  color: #84ff00;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial-title {
  color: #b0b0b0;
  font-size: 14px;
}

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

.nav-arrow {
  background-color: transparent;
  border: none;
  color: #84ff00;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background-color: rgba(132, 255, 0, 0.1);
  transform: scale(1.1);
}

.pagination-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #84ff00;
  transform: scale(1.2);
}

.dot:hover {
  background-color: #84ff00;
  opacity: 0.7;
}

/*Contact US*/
.contact-section {
  max-width: 1200px;
  margin: 2rem auto;
}
.contact-header{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 2rem;
}
.contact-badge{
  background-color: #b9ff66;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  max-width: 550px;
}

.contact-container {
  background-color: #F3F3F3;
  border-radius: 30px;  
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.form-section {
  flex: 1;
  max-width: 600px;
  padding: 50px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  background-color: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #84ff00;
  box-shadow: 0 0 0 3px rgba(132, 255, 0, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  background-color: #2a2d3a;
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #363a4a;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}
footer{
  max-width: 1200px;
  background: #2a2d3a;
  margin: 2rem auto 0 auto;
  border-radius: 10px;
  padding: 1rem;
}
.footer{
   display: flex;
     justify-content: space-between;
}
.navbar2 {
  display: flex;
  align-items: center;
}

.nav-links2 {
  display: flex;
  gap: 1.5rem;
}

.nav-links2 li {
  position: relative;
}

.nav-links2 li a {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-social{
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.footer-social img{
  width: 20px;
  height: 20px;
}
.contact{
  display: flex;
  justify-content: space-between;
}
.contact-info{
  color: #ddd;
    font-family: "Space Grotesk", sans-serif;
}
.contact-info h2{
    background-color: #b9ff66;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  margin: 8px 0px;
}
.news{
  display: flex;
  border-radius: 10px;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  padding: 0px 10px;
  gap: 1rem;
  background: #363a4a;
}
.email input, .news-btn button{
   font-family: "Space Grotesk", sans-serif;
  padding: 1rem;
  border-radius: 10px;
}
.email input{
  background: none;
  border:1px solid #b0b0b0;
  color: #fff;
}
.news-btn button{
  background-color: #b9ff66;
  cursor: pointer;
}
.footer-line{
  display: block;
  border: 1px solid #b0b0b0;
  margin: 20px 0;
}
.rights{
  display: flex;
  gap: 3rem;
  color: #ddd;
  margin: 0 auto;
  justify-content: center;
}


/* Responsive Design */
@media (max-width: 768px) and (max-width: 1024px) {
  .nav-links li a {
    color: #fff;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 50px;
    right: 70px;
    width: 50%;
    padding: 1rem 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  /*Hero section*/
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 0;
    margin-top: 50px;
  }

  .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Mobile order: h1 → img → p → btn */
  .hero-text h1 {
    order: 1;
  }
  .hero-video {
    order: 2;
    margin: 20px 0;
  }
  .hero-text p {
    order: 3;
  }
  .hero-btn {
    order: 4;
  }

  .hero-video video {
    width: 100%;
    max-width: 100%;
  }
  /*company list */
  .company-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .company-list img {
    width: 50%;
    margin: 0 auto;
  }

  /*service*/
  .service-head {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .happen-left button {
    justify-content: center;
  }
  .happen-right {
    display: none;
  }

  /*Case  Study*/
  .cases-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .header-case {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /*Accordion*/
  .class {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  /*Our team */
  .team-header {
    flex-direction: column;
  }
  .team-description {
    text-align: center;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-mobile.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
  }

  .see-all-btn {
    display: block;
  }
  /*Testimonial*/
  .section-header {
    flex-direction: column;
  }
  .section-subtitle {
    text-align: center;
  }
  .testimonials-container {
    padding: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }
  /*contact us*/
  .contact-header{
    flex-direction: column;
    gap: 5px;
  }
  .contact-subtitle{
    text-align: center;
  }
 .contact-container img{
    display: none;
  }
}
@media (min-width: 769px) {
  .see-all-btn {
    display: none;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   MEDIA QUERIES
   ========================= */

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    body{
    overflow-x: hidden;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    padding: 20px;
    gap: 20px;
  }

  .hero-video video {
    width: 100%;
  }

  .company-list {
    grid-template-columns: 1fr 1fr;
  }

  footer .footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .nav-links2{
    flex-direction: column;
  }
  .process-section{
    padding: 50px 0;
  }
}

/* Large Mobile / Small Tablet (≤600px) */
@media (max-width: 600px) {
    body{
    overflow-x: hidden;
  }
  .company-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }
  .nav-links2{
    flex-direction: column;
  }

}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  body{
    overflow-x: hidden;
  }
  .nav-links {
    display: none; /* hide menu */
  }

  .hamburger {
    display: flex; /* show hamburger */
  }

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

  .company-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .cases-container {
    grid-template-columns: 1fr;
  }
  .footer{
  flex-direction: column;
}
.nav-links2{
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
}
.footer-social{
  margin: 0 auto;
}
.contact{
  flex-direction: column;
}
.contact-info{
  text-align: center;
}
.rights{
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
}

/* Small Laptops (≤1024px) */
@media (max-width: 1024px) {
  .hero {
    gap: 40px;
  }
}

/* Large Screens (≥1200px) */
@media (min-width: 1200px) {
  .container,
  .services,
  .team,
  .contact-section {
    max-width: 1200px;
    margin: 0 auto;
  }
}
