/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
    overflow-x: hidden;

}
html {
  scroll-behavior: smooth;
}


/* ==================================== */
/*  NAVIGATION BAR */
/* ==================================== */
.navbar {
  width: 100%;
  background: rgba(0, 0, 0, 0.2); /* 🔥 make it semi-transparent */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);     
  -webkit-backdrop-filter: blur(15px); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

.logo {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

.logo span {
  color: #00ff9d;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #00ff9d;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ff9d;
}

/* ========================== */
/* MOBILE MENU (HIDDEN BY DEFAULT) */
/* ========================== */
.menu-btn {
  display: none;
  background: #00ff9d;
  color: #000;
  padding: 6px 15px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #000;
  width: 100%;
  padding: 15px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}

.mobile-menu a {
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}


/* ==================================== */
/* HERO SECTION */
/* ==================================== */
.hero-section {

  margin-top: -40px;
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.carousel {
  position: absolute;
  inset: 0;         
  width: 100%;
  height: 100%;   
  overflow: hidden;
}

.fade-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  object-fit: contain;
  object-position: center 80%;
}

.fade-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 100px;
  margin-top: 250px;
  color: white;
}

.hero-title {
  font-family: "Anton";
  font-size: 5rem;
  font-weight: 100;
  line-height: 1.1;
  margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);

}

.hero-title span {
  color: #00ff9d;
}

.hero-text {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.15;
}

.btn {
  padding: 12px 25px;
  background-color: #00ff9d;
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: 3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: #000;
  transform: scale(1.05);
}



/* ==================================== */
/* SERVICES WE PROVIDE SECTION*/
/* ==================================== */
.continuous-carousel-section {
  background: #0000001b;
  padding: 0;
  margin-top: -100px;  
  overflow: hidden;
}

.continuous-carousel {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 60vh;       
}

.continuous-track {
  display: flex;
  gap: 40px;           
  animation: scrollInfinite 40s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 400px;      
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@keyframes scrollInfinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); 
  }
}



/* ==================================== */
/* PROJECTS SECTION */
/* ==================================== */
.projects-section {
  background: #000000;
  margin-top: -100px;    
  color: #fff;
  padding: 100px 80px;
}

.projects-heading {
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 100;
  letter-spacing:1px;
}

.projects-heading span {
   color: #00ff9d;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.project-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 0 10px rgba(1, 60, 37, 0.4);
}

.project-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgb(0, 170, 119), transparent);
  transition: opacity 0.3s ease;
}

.project-card:hover .project-img::after {
  opacity: 0.1; 
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}



/* ==================================== */
/* FEEDBACK SECTION */
/* ==================================== */
.feedback-section {
      position: relative;
    background: #000000;
    color: #000;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.feedback-heading {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.feedback-subheading {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.feedback-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 450px; 
    perspective: 500px;
    margin-top: -40px; 
}

.flag-carousel-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05); 
    width: 300px; 
    height: 220px; 
    border-radius: 8px; 
    overflow: hidden;
    cursor: pointer; 
    transition: all 0.8s ease; 
    opacity: 0;
    transform: scale(0.8) translateX(0);
    gap: 5px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

.carousel-flag {
    width: 100%;
    height: 180px; 
    object-fit: cover; 
    border-radius: 8px 8px 0 0; 
}

.country-name {
    font-family: 'Bricolage Grotesque', sans-serif; 
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff; 
    text-align: center;
    padding: 5px 10px; 
}

.flag-carousel-card.active {
    transform: scale(1.1) translateX(0);
    opacity: 1;
    z-index: 3;
    background: #111111;
}

.flag-carousel-card.active .country-name {
    color: #ffffff; 
    text-shadow: 0 0 5px #ffffff;
}

.flag-carousel-card.left {
    opacity: 0.7; 
    transform: scale(0.9) translateX(-330px); 
    z-index: 2;
}

.flag-carousel-card.right {
    opacity: 0.7; 
    transform: scale(0.9) translateX(330px); 
    z-index: 2;
}

.flag-carousel-card.hidden {
    opacity: 0;
    transform: scale(0.8) translateX(0); 
    z-index: 1;
}
.flag-carousel-card .flag-link {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: flex-start; 
    width: 100%;
    height: 100%; 
    text-decoration: none; 
    color: inherit; 
    padding: 0;
    margin: 0;
}


/* ==================================== */
/* CONTACT SECTION */
/* ==================================== */ 
 .container {
  margin-top: -40px;
margin-bottom: 100px;
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
padding: 0 100px;
position: relative;
z-index: 2;
 }

 .contact-text {
    max-width: 45%;
  }

  .contact-text h1 {
    font-size: 5rem;
    color: #00ffbb;
font-weight: 300;  
line-height : 90px;  
letter-spacing: 1px;
font-family: "Anton", sans-serif;
}

.contact-text p {
    color: #ffffffdd;
    font-size: 1.1rem;
    margin: 20px 0 40px 0;
  }
  .contact-form {
    width: 45%;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3 10px rgba(0, 171, 239, 0.707);
    backdrop-filter: blur(8px);
    margin-right: 20%;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-family: "Bricolage Grotesque", sans-serif;
    background: rgba(255, 255, 255, 0.234);
    border: none;
    outline: none;
    color: #fff;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .contact-form button {
    width: 100%;
        background: linear-gradient(90deg, #00ffd0e3, #c2c6ca);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(1, 22, 23, 0.626);
    transition: all 0.3s ease;
    font-family: "Bricolage Grotesque", sans-serif;
  }

  .contact-form button:hover {
    background: linear-gradient(90deg, #00ffbb77, #00ffc3);
    transform: scale(1.04);
  }

.granny-flying {
  position: absolute;
  right: -69px; 
  top: 60%; 
  transform: translateY(10%); 
  width: 550px; 
  animation: floatGranny 5s ease-in-out infinite;
}

@keyframes floatGranny {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-55%) translateX(-20px); 
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
  @keyframes orbit {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(10px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
  }



  /* ==================================== */
/* TECHNOLOGIES SECTION */
/* ==================================== */
.tech-section {
    padding: 80px 0;
    text-align: center;
    background: #000000;
    margin-bottom: -100px;
}

.tech-title {
    font-size:3rem;
    font-family: "Anton", sans-serif;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 2px;
}

.tech-carousel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.tech-track {
    display: flex;
    gap: 80px; 
    animation: scroll 20s linear infinite;
}

.tech-track img {
    width: 100%;
    height: 100px;
    opacity: 0.65;
    transition: .25s;
}

.tech-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



/* ==================================== */
/* ABOUT SECTION */
/* ==================================== */
.highlight { color:rgba(0, 255, 157, 0.993) } 
.count-number { color: #00ff73; }

#about-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    margin-top: -100px;
    margin-bottom: -40px;
}

.content-container {
    max-width: 900px;
    text-align: center;
    width: 100%;
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 30px; 
    font-family: "Anton";
    font-weight: 100;
    background: transparent;
    line-height: 1.2;
    color: #fffefe;
}

.about-content-box {
    background-color: rgb(255, 255, 255); 
    padding: 40px;
    border-radius: 30px; 
    box-shadow: 0 0px 30px rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction:column;
    align-items: center;
}
.about-content-box:hover {
    background: url("../../assets/about/bg.png");
    transition: opacity 5s ease;
    color: white;

}

.what-we-do {
  
  color: rgb(0, 0, 0);
    margin-left:100px ;
    margin-right: 100px ;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 800px;
}

.what-we-do h2 {
    font-size: 2.4rem;
    font-family: "Anton";
    font-weight: 300;
    padding-bottom: -7px;
    text-align: left;
    margin-top: 0;
    max-width: 450px;

}

.what-we-do p {
    text-align: left;
    line-height: 1.5;
    max-width: 450px;
}

.hero-image {
    width: 300px; 
    height: 300px;
    display: flex;
    align-items: flex-end; 
}

.hero-image .char-img {
    max-width: 300%;
    height: 197%;
    object-fit: cover;
    margin-left: -180px;
    margin-bottom: -160px;
}


.reach-heading {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1;
  max-width: 900px;
  font-family: "Anton", sans-serif;
  text-align: left;
}

.reach-heading #count,
.reach-heading .plus {
  color: #00f9a2;
  font-weight: 300;
  box-shadow: inset 0 -2px 0 #0d1a15;
}

.benefits-section {
display: flex;
width: 100%;
height: 20%;
justify-content: center;
align-items: flex-start; 
padding: 40px 20px;
gap: 30px; 
flex-wrap: wrap; 
margin-top: 40px;
}

.benefit-card {
background-color: #fff; 
border-radius: 20px; 
padding: 30px 25px;
width: 100%; 
max-width: 250px; 
box-shadow: 0 0px 30px rgba(255, 255, 255, 0.5);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
max-height: 500px; 
}

.card-title {
font-size: 1.3rem;
font-weight: 700; 
line-height: 1.2;
margin-top: 30px;
color: #000;
word-break: break-word; 
}

.card-asset {
height: 250px;
width: 280px;
background-color: transparent; 
margin-top: auto;
}
.card-asset img {
max-width: 100%;
height: auto;
display: block; 
}
.card-asset1 {
height: 228px;
width: 280px;
background-color: transparent; 
margin-top: auto;
}
.card-asset1 img {
max-width: 100%;
height: auto;
margin-top: 10px;
display: block; 
 }
    
/* =============================== */
/* TABLETS (max-width: 1024px) */
/* =============================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }
  .nav-links {
    margin-right: 80px;
    gap: 20px;
  }

  .hero-content {
    margin-left: 40px;
    margin-top: 200px;
    max-width: 600px;
  }
  .hero-title {
    font-size: 3.8rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .carousel{
    margin-left: -0px;
    margin-top: -85px;
    object-fit: cover;
  }

  .continuous-carousel {
    margin-top: -50px;
    height: 45vh; /* smaller height */
  }
  .slide {
    width: 300px;     /* reduce slide width */
    height: 180px;    /* reduce slide height */
  }
  .continuous-track {
    gap: 25px; /* reduce spacing */
  }
  
  .projects-section {
    padding: 90px 50px;
    margin-top: -50px;
  }
  .projects-heading {
    font-size: 3rem;
  }
  .projects-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 → 2 */
    gap: 30px;
  }
  .project-img {
    height: 220px; /* slightly smaller thumbnails */
  }

  #about-section {
    margin-top: -60px;
    padding: 40px 20px;
  }
  .main-title {
    font-size: 2.2rem;
  }
  .what-we-do {
    margin-right: 0;
    gap: 30px;
  }
  .hero-image {
    width: 180px;
    height: 260px;
  }
  .hero-image .char-img {
    max-width: 200%;
    margin-left: -150px;
    margin-bottom: -130px;
  }
  .what-we-do h2 {
    font-size: 2rem;
  }
  .reach-heading {
    font-size: 1.3rem;
  }
  .benefits-section {
    gap: 25px;
  }
  .benefit-card {
    max-width: 230px;
  }
  .card-asset{
    width: 240px;
  }
}


/* =============================== */
/* MOBILE LANDSCAPE / LARGE PHONES */
/* =============================== */
@media (max-width: 768px) {
    .nav-links {
    display: none; /* hide desktop menu */
  }
    /* show mobile menu button */
  .menu-btn {
    margin-right: 100px;
    display: block;
    background: #00ff9d;
    padding: 6px 14px;
    border-radius: 6px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 9999;
  }
  /* mobile dropdown */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #000;
    width: 100%;
    padding: 15px 20px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu a {
    color: #fff;
    padding: 10px 0;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .hero-content {
    margin-left: 20px;
    margin-top: 150px;
    max-width: 90%;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-text {
    font-size: 0.89rem;
  }
  .btn {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
  .carousel{
    margin-top: -167px;
    object-fit: cover;
  }
  .continuous-carousel-section {
    margin-top: -200px; /* adjust hero overlap */
  }
  .continuous-carousel {
    height: 35vh;
  }
  .slide {
    width: 220px;   
    height: 150px;
  }
  .continuous-track {
    gap: 20px;
  }

  .projects-section {
    padding: 60px 30px;
    margin-top: -40px;
  }
  .projects-heading {
    font-size: 2.5rem;
  }
  .projects-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 → 2 */
    gap: 25px;
  }
  .project-img {
    height: 150px;
  }

  #about-section {
    margin-top: -40px;
  }
  .main-title {
    font-size: 2rem;
    text-align: center;
  }
  .about-content-box {
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px;
  }
  .what-we-do {
    margin-right: 30px;
    margin-left: 10px;
  }
  .hero-image {
    width: 500px;
    height: 250px;
    margin: 0 auto;
  }
  .hero-image .char-img {
    max-width: 120%;
    margin-left: -30px;
    margin-bottom: -150px;
  }
  .text-block h2 {
    font-size: 1.8rem;
    margin-top: 10px;
  }
  .text-block p {
    font-size: 12px;
  }
  .reach-heading {
    font-size: 1.2rem;
  }
   
  
  .benefits-section {
    gap: 10px;
  }
  .benefit-card {
    max-width: 30%;
    max-height: 400px;
  }
  .card-asset{
    width: 230px;
  }

}


/* =============================== */
/* SMALL MOBILE (max-width: 480px) */
/* =============================== */
@media (max-width: 480px) {

  /* ---------------- NAVBAR ---------------- */
  .navbar {
    padding: 12px 16px;
    justify-content: space-between;
  }
  .logo {
    margin-left: 10px;
    font-size: 1.3rem;
  }
  /* hide desktop nav */
  .nav-links {
    display: none;
  }
  /* show mobile menu button */
  .menu-btn {
    margin-right: 70px;
    display: block;
    background: #00ff9d;
    padding: 6px 14px;
    border-radius: 6px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 9999;
  }
  /* mobile dropdown */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #000;
    width: 100%;
    padding: 15px 20px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu a {
    color: #fff;
    padding: 10px 0;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .hero-content {
    margin-top: 150px;
    margin-left: 30px;
    max-width: 90%;
  }
  .hero-title {
    margin-top: -20px;
    font-size: 20px;
  }
  .hero-text {
    margin-top: -10px;
    font-size:8px;
  }
  .btn {
  font-size: 10px;
  }
  .carousel{
    margin-top:-290px;
    object-fit: cover;
  }

  .continuous-carousel-section {
    margin-top: -370px;
  }
  .continuous-carousel {
    height: 28vh; /* compact height */
  }
  .slide {
    width: 160px;
    height: 110px;
    border-radius: 15px;
  }
  .slide img {
    border-radius: 15px;
  }
  .continuous-track {
    gap: 16px;
  }

   .projects-section {
    padding: 50px 20px;
    margin-top: -20px;
  }
  .projects-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr); /* 3 → 2 */
    gap: 20px;
  }
  .project-card {
    border-radius: 15px;
  }
  .project-img {
    height: 150px; /* fits mobile nicely */
  }
  .project-img img {
    object-fit: cover;
  }

   #about-section {
    margin-top: -90px;
    padding: 30px 10px;
  }
  .main-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .about-content-box {
    padding: 20px;
    margin-left:30px;
    margin-right: 30px;
    margin-bottom: -50px;
    border-radius: 20px;
  }
  .what-we-do {
    margin-right: 30px;
    margin-left: 10px;  
  }
  /* Character Image Fix */
  .hero-image {
    width: 160px;
    height: 220px;
    margin: 0 auto;
  }
  .hero-image .char-img {
    max-width: 600%;
    height: auto;
    margin-left: -40px;
    margin-bottom: -20px;
  }
  .what-we-do h2 {
    font-size: 15px;
  }
  .what-we-do p {
    max-width: 100%;
    font-size: 10px;
  }
  .reach-heading {
    font-size: 13px;
  }
  /* Benefit cards become single column */
  .benefits-section {
    gap: 20px;
    padding: 30px 10px;
    flex-direction: column;
    align-items: center;
  }
  .benefit-card {
    max-width: 90%;
    padding: 20px;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-asset,
  .card-asset1 {
    width: 200px;
    height: auto;
  }
  .card-asset img,
  .card-asset1 img {
    width: 100%;
  }
}

