

:root {

  /* colors */

  --rich-black-fogra-29-1: hsl(215, 31%, 14%);
  --rich-black-fogra-29-2: hsl(230, 14%, 8%);
  --rich-black-fogra-39: hsl(158, 29%, 5%);
  --granite-gray: hsl(0, 0%, 40%);
  --go-green_50: hsla(145, 63%, 42%, 0.5);
  --go-green_8: hsla(145, 63%, 42%, 0.08);
  --go-green_5: hsl(145, 63%, 42%, 0.05);
  --light-gray: hsl(0, 0%, 80%);
  --mint-cream: hsl(160, 100%, 98%);
  --cultured: hsl(0, 0%, 93%);
  --go-green: hsl(145, 63%, 42%);
  --white: hsl(0, 0%, 100%);
  --jet: hsl(0, 0%, 18%);


  /* typography */
  --ff-poppins: 'Poppins', sans-serif;
  --ff-cuprum: 'Cuprum', sans-serif;

  --fs-1: 4.5rem;
  --fs-2: 3.6rem;
  --fs-3: 3.5rem;
  --fs-4: 3.2rem;
  --fs-5: 2.5rem;
  --fs-6: 2.4rem;
  --fs-7: 2.2rem;
  --fs-8: 2rem;
  --fs-9: 1.8rem;
  --fs-10: 1.5rem;
  --fs-11: 1.4rem;
  --fs-12: 1.3rem;
  --fs-600: 600;
  --fs-500: 500;

  /* spacing */
  
  --section-padding: 80px;

  /* shadow */
  --shadow-1: 3px 4px 30px hsla(0, 0%, 53%, 0.1);
  --shadow-2: 5px 3px 40px hsla(191, 100%, 17%, 0.1);

  /* radius */
  --radius-5: 5px;

  /* transition */
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}


/* reset */

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

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
img,
span,
input,
button,
i {
  display: block;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

i {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--granite-gray);
  font-size: 1.6rem;
  line-height: 1.7rem;
  /* height: 300vh; */
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar { width: 10px;}

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }

/* reused code */

.container {
  padding-inline: 15px;
}

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.h1,
.h2,
.h3,
.h2-sm {
  color: var(--rich-black-fogra-29-1);
  font-family: var(--ff-cuprum);
}

.h1{
  font-size: var(--fs-1);
  line-height: 1.1;
}

.h2 { font-size: var(--fs-2); }

.h2,
.h3,
.h2-sm {
  line-height: 1.3;
}

.h2-sm { font-size: var(--fs-3); }

.h3 { font-size: var(--fs-7); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.btn {
  font-weight: var(--fs-600);
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-5);
  max-width: max-content;
  transition: var(--transition-1);
  display: inline-block;
}

.btn-primary {
  background-color: var(--go-green);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29-1);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

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

.w-100 { width: 100%; }

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

.section-subtitle {
  color: var(--go-green);
  font-weight: var(--fs-500);
}

.grid-list {
  display: grid;
  gap: 20px;
}

.btn-link {
  color: var(--rich-black-fogra-29-1);
  font-size: var(--fs-12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: var(--transition-1);
}





/* header */

.header .btn-outline { display: none; }

.header {
  padding-block: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}

.header.active {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--rich-black-fogra-29-1);
  font-size: 25px;
}

.navbar {
  position: fixed;
  top: 0;
  left: -200px;
  max-width: 200px;
  width: 100%;
  height: 100%;
  background-color: var(--rich-black-fogra-39);
  color: var(--white);
  padding: 30px 20px;
  visibility: hidden;
  transition: 0.25s var(--cubic-out);
  z-index: 4;
}

.navbar.active {
  visibility: visible;
  transform: translateX(200px);
  transition-duration: 0.5s;
}

.nav-close-btn{
  color: var(--white);
}

.navbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 25px;
}

.nav-close-btn { 
  font-size: 25px;
  opacity: 0.5;
}

.navbar-link {
  padding-block: 10px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--go-green);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: hsla(0, 0%, 100%, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
  z-index: 3;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}


/* hero */

.hero {
  background-color: var(--mint-cream);
  padding-block-start: calc(var(--section-padding));
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  gap: 50px;
}

.hero-subtitle {
  color: var(--go-green);
  font-size: var(--fs-12);
  font-weight: var(--fs-500);
  max-width: max-content;
  margin-inline: auto;
  z-index: 0;
}

.hero-subtitle::before {
  top: 8px;
  left: -20px;
  width: 15px;
  height: 2px;
  background-color: var(--go-green);
}

.hero-title {
  margin-block: 10px 15px;
}

.hero-text {
  color: var(--rich-black-fogra-29-1);
}

.hero .btn-group {
  margin-block-start: 40px;
}

.hero-banner {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

/* Image styling */
.hero-banner img {
  border-radius: 50%;
  display: block;
  object-fit: cover;
  position: relative;
  border: 5px solid var(--go-green);
  padding: 6px;
  z-index: 3;
  transition: transform 0.5s ease;
}

/* Hover zoom */
.hero-banner:hover img {
  transform: scale(1.05);
}

/* Green overlay on hover */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.25); /* go-green transparent */
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 4;
}

.hero-banner:hover::after {
  opacity: 1;
}

/* Rotating border (outside image) */
.round-border {
  position: absolute;
  top: -25px;   /* gap from image */
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  border: 6px solid transparent;
  border-top: 6px solid var(--go-green);
  border-right: 6px solid var(--go-green);
  animation: spinBorder 8s linear infinite;
  z-index: 2;
}

/* Rotate animation */
@keyframes spinBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* .hero-banner,
.hero-banner > img {
  border-radius: 50%;
}

.hero-banner::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image: url('/images/96625367_1643352569137290_9131521451105452032_n-removebg-preview.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;

} */


/* about */

/* ========== ABOUT SECTION ========== */
.about-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* -------- Text Content -------- */
.about-text h3 {
  color: var(--go-green);
  font-size: var(--fs-12);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: var(--fs-2);
  margin-bottom: 15px;
  color: var(--rich-black-fogra-29-1);
}

.about-text p {
  color: var(--granite-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text .btn-group {
  margin-top: 15px;
  display: flex;
  justify-content: center; /* mobile: center align */
}

/* -------- Cards Grid -------- */
.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-card {
  padding: 25px;
  border-radius: var(--radius-5);
  background-color: var(--white);
  text-align: center;
  color: var(--rich-black-fogra-29-1);
  box-shadow: var(--shadow-1); /* ✅ subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px); /* lift effect */
  box-shadow: var(--shadow-2);
}

.about-card h3 {
  font-size: var(--fs-5);
  margin-bottom: 8px;
  color: var(--go-green);
  font-weight: bold;
}

.about-card p {
  font-size: var(--fs-11);
  color: var(--granite-gray);
}

/* -------- Responsive Design -------- */
@media (min-width: 768px) {
  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .about-text .btn-group {
    justify-content: flex-start; /* tablet/desktop: left align */
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .about-text h2 {
    font-size: var(--fs-1);
  }

  .about-card h3 {
    font-size: var(--fs-4);
  }
}



/* service */

.service .section-text { margin-block: 15px 50px; }

.service .grid-list { margin-block-end: 50px; }

.service-card {
  height: 100%;
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.service-card::after {
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--go-green);
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within)::after { width: 100%; }

.service-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 10px;
}

.service-card .img { transition: var(--transition-1); }

.service-card:is(:hover, :focus-within) .img { transform: scale(1.1); }

.service-card .card-text { margin-block: 5px 13px; }

.service .btn { margin-inline: auto; }

/* platforms */


.recruiters {
  text-align: center;
  padding-block: var(--section-padding);
  background-color: var(--mint-cream);
  overflow: hidden;
}

.recruiters h2 {
  font-size: var(--fs-2);
  margin-bottom: 10px;
  color: var(--rich-black-fogra-29-1);
}

.recruiters .section-subtitle {
  font-size: var(--fs-11);
  color: var(--granite-gray);
  margin-bottom: 30px;
}

/* ---------- Logo Slider ---------- */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 30px;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: slide 25s linear infinite;
  width: calc(200px * 12); /* adjust based on logos count */
}

.logo-track img {
  height: 60px;
  width: auto;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* Animation for infinite scroll */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .logo-track {
    gap: 30px;
    animation-duration: 20s;
  }
  .logo-track img {
    height: 40px;
  }
}


/* brands */

.brands {
  padding: 60px 20px;
  text-align: center;
  background: var(--mint-cream, #f9fdfb);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--rich-black-fogra-29-1);
  position: relative;
}

.swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontally center */
  justify-content: center; /* vertically center */
  padding: 25px;
  transition: all 0.4s ease;
  text-align: center;
}

.swiper-slide:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 128, 96, 0.25);
}

.swiper-slide img {
  width: 90px;
  height: 60px;
  margin: 0 auto 15px; /* center + space below */
  display: block;
  border-radius: 12px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.swiper-slide:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.swiper-slide .text {
  font-weight: 600;
  padding: 10px;
  /* font-size: ; */
  color: var(--go-green);
}

.swiper-pagination {
  position: relative !important;  
  margin-top: 20px;               
  text-align: center;             
}

/* Pagination Dots */

.swiper-pagination-bullet {
  background: var(--go-green) !important;  /* green theme */
  opacity: 0.4;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--go-green) !important;
  opacity: 1;
  transform: scale(1.1);
}

/* Navigation Arrows */

.swiper-button-next,
.swiper-button-prev {
  color: var(--go-green);
  transition: transform 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}


/* founders  */


.founders {
  padding: 80px 20px;
  background: var(--mint-cream);
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--rich-black-fogra-29-1);
  margin-bottom: 50px;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 128, 96, 0.25);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--go-green);
}

.team-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rich-black-fogra-29-1);
}

.team-role {
  font-size: 1.3rem;
  color: var(--go-green);
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 15px;
}

.team-text {
  font-size: 1.4rem;
  color: var(--granite-gray);
  line-height: 1.6;
}


/* contact section */
.contact {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  background: var(--mint-cream);
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: var(--shadow-1);
}

.contact .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* Left side */
.contact .content .left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-right: 20px;
}

.contact .content .left-side::before {
  content: '';
  position: absolute;
  height: 80%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--light-gray);
}

.contact .content .left-side .details {
  margin: 20px 0;
  text-align: center;
}

.contact .content .left-side .details i {
  font-size: 28px;
  color: var(--go-green);
  margin-bottom: 10px;
}

.contact .content .left-side .details .topic {
  font-size: 18px;
  font-weight: var(--fs-600);
  margin-bottom: 6px;
  color: var(--rich-black-fogra-29-1);
}

.contact .content .left-side .details .text-one,
.contact .content .left-side .details .text-two {
  font-size: 14px;
  color: var(--granite-gray);
}

/* Right side */
.contact .content .right-side {
  flex: 2;
}

.contact .content .right-side .topic-text {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--go-green);
}

.contact .content .right-side p {
  font-size: 15px;
  color: var(--granite-gray);
  margin-bottom: 25px;
}

.right-side .input-box {
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  width: 100%;
  border: none;
  background: var(--white);
  border-radius: 6px;
  font-size: 15px;
  padding: 12px 15px;
  resize: none;
  transition: border 0.3s;
}

.right-side .input-box input:focus,
.right-side .input-box textarea:focus {
  outline: none;
  border: 2px solid var(--go-green);
  background: #fff;
}

.right-side .message-box {
  min-height: 120px;
}

.right-side .button {
  margin-top: 10px;
  display: inline-block; 
  margin-top: 6px;
}

.right-side .button input {
  background: var(--go-green);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.right-side .button input:hover {
  background: var(--rich-black-fogra-29-1);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .contact .content {
    flex-direction: column;
    align-items: center;
  }

  .contact .content .left-side {
    width: 100%;
    padding: 0;
  }

  .contact .content .left-side::before {
    display: none;
  }

  .contact .content .right-side {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 30px 20px;
  }

  .contact .content .right-side .topic-text {
    font-size: 20px;
  }

  .right-side .button input {
    width: 100%;
    text-align: center;
  }
}


/* Footer */
footer {
  background: var(--mint-cream);
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Poppins", sans-serif;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
.footer-item .icon {
  font-size: 22px;
}
.footer-item a {
  color: #818181;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.footer-item a:hover {
  color: black;
}
.social-icons {
  margin: 15px 0;
  padding-top: 20px;
}
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: var(--go-green);
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--go-green);
  color: var(--mint-cream);
  transform: scale(1.1);
}
.footer-nav {
  margin: 20px 0;
}
.footer-nav a {
  margin: 0 15px;
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}
.footer-nav a:hover {
  color: #0984e3;
}
.copyright {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
  font-family: "Poppins", sans-serif;
}


/* media query */

/* responsive for large than 575px */

@media (min-width: 575px){
  /* custom css */


  :root {
    /* typography */

    --fs-1: 5.4rem;
  }

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }


  /* header */ 

  .header .container { max-width: unset; }

  /* services */

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

  .service-card { text-align: left; }

  .service-card .card-icon { margin-inline: 0; }

  .service-card .btn { justify-content: flex-start; }
}



/* responsive for large than 768px */

@media (min-width: 768px){
  /* custom css */


  :root {
    /* typography */

    --fs-1: 7rem;
    --fs-2: 4rem;
    --fs-3: 3.5rem;
  }


  /* reused code */

  .container { max-width: 720px; }

  .btn { padding: 16px 32px; }

  .section-text.text-center {
    max-width: 50ch;
    margin-inline: auto;
  }

  /* hero */

  .hero-subtitle { --fs-12: 1.4rem; }

  
}


/* responsive for large than 992px */

@media (min-width: 992px){

  /* reused code */

  .container { max-width: 960px; }

  /* header */

  .nav-open-btn,
  .navbar .wrapper,
  .overlay { display: none; }

  .header { padding: 20px; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    display: flex;
    gap: 40px;
  }

  .navbar-link {
    color: var(--rich-black-fogra-29-1);
    font-weight: var(--fs-500);
    padding-block: 0;
  }

  .header .btn-outline {
    display: block;
    color: var(--go-green);
    font-weight: var(--fs-600);
    text-transform: uppercase;
    border: 1px solid var(--go-green);
    padding: 7px 18px;
    transition: var(--transition-1);
  }

  .header .btn-outline:is(:hover, :focus){
    background-color: var(--go-green);
    color: var(--white);
  }

  /* hero */

  .hero { text-align: left; }

  .hero .container {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
  }

  .hero-subtitle { margin-inline: 25px 0; }

  .hero .btn-group { justify-content: flex-start; }


  /* service */
  .service-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
}



/* responsive for large than 1200px */

@media (min-width: 1200px){
  /* custom css */


  :root {
    /* typography */

    --fs-1: 7rem;
    --fs-3: 3.8rem;
  }


  /* reused code */

  .container { max-width: 1140px; }

  .btn { padding: 16px 32px; }

  /* hero */

  .hero { 
    min-height: 100vh;
    display: grid;
    align-items: center; 
  }

  

  
}



