@font-face {
  font-family: 'Fira Sans';
  src: url('./Fonts/FiraSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Fira Sans';
  src: url('./Fonts/FiraSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Fira Sans';
  src: url('./Fonts/FiraSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Fira Sans',sans-serif;
}

  :root {
    /* Backgrounds */
    --primary-bg-color: #0b0c10;     /* Dark background */
    --secondary-bg-color: #1f2833;   /* Slightly lighter section background */
  
    /* Text */
    --primary-font-color: #c5c6c7;     /* Soft white/light gray text */
  
    /* Accents */
    --hover-color: #66fcf1;    /* Bright aqua hover/focus */
    --fade-color: #45a29e;     /* Teal accent for transitions, borders, etc. */
  }

  html {
    scroll-behavior: smooth;
  scroll-padding-top: 11rem;
    font-size: 62.5%;
    overflow-x: hidden;
  }

  body {
    background: var(--primary-bg-color);
    color: var(--primary-font-color);
    /* overflow-x: hidden; */
  }

  /* section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
  } */

  section:not(.about) {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}


  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:16vh;
    padding: 1rem 9%;
    background: var(--primary-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }

  .header a img {
    width: 150px;
    height: 140px;
  }

  .header .sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, 0.2);
  }

  .logo {
    font-size: 2.5rem;
    color: var(--primary-font-color);
    font-weight: 600;
    cursor: default;
  }

  .logo:hover {
    color: var(--hover-color);
  }

  .navbar a {
    font-size: 1.7rem;
    color: var(--primary-font-color);
    margin-left: 4rem;
    transition: .3s;
  }

  .navbar a:hover,
  .navbar a.active {
    color: var(--hover-color);
  }

  #menu-icon {
    font-size: 3.6rem;
    color: var(--primary-font-color);
    display: none;
  }

  @media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
}

  header.active .navbar {
    display: block;
}

  .home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 10rem 9% 2rem;
}

  .home-img {
    perspective: 1000px; /* for 3D effect */
  }
  
  .home-img img {
     width: 500px;
  height: 85vh;
  animation: coinFlipSide 2s linear infinite;
  transform-style: preserve-3d;
    /* No backface-visibility here, so the image remains visible while flipping */
  }
  
  @keyframes coinFlipSide {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }
  
  .home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
  }

  .home-content h3:nth-last-of-type(2) {
    margin-bottom: 2rem;
  }

  span {
    color: var(--hover-color);
  }

.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  line-height: 2.4rem;
  gap: 2rem; /* ✅ This ensures consistent spacing between elements */
   padding-top: 100px;
}

.home-content h2 {
  font-size: 3rem;
  padding-bottom: 1rem;
  min-height: 7rem;
  line-height: 3rem;

}

.home-content h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
  min-height: 10rem;     /* ✅ Reserves vertical space */
  margin-bottom: 2rem;   /* ✅ Keeps space before the paragraph */
  display: block;
}

.multiple-text {
  display: inline;
  word-break: break-word;
  white-space: normal; /* Ensures wrapping if needed */
}

  .home-content p {
  font-size: 1.6rem;
  margin: 0;
}

  .social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--hover-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--hover-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: .5s ease;
  }

  .social-media a:hover {
    background: var(--hover-color);
    color: var(--secondary-bg-color);
    box-shadow: 0 0 1rem var(--hover-color);
  }

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--hover-color);
    border-radius: 4rem;
    /* box-shadow: 0 0 1.5rem var(--hover-color); */
    font-size: 1.6rem;
    color: var(--secondary-bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.btn:hover {
    box-shadow: none;
    color: var(--primary-font-color);
}

/* Responsive */
@media (max-width: 768px) {
  .home {
    flex-direction: column;
    padding: 5rem 5% 2rem;
  }

  .home-img img {
    width: 90vw;
    height: auto;
    max-width: 300px;
  }

  .home-content {
    text-align: center;
    align-items: center;
  }
}



/* === Highlight Banner Section Enhanced === */

.highlight-banner {
  background: linear-gradient(135deg, var(--hover-color), #1de9b6);
  color: var(--secondary-bg-color);
  padding: 1rem 2rem; /* only reasonable padding */
  text-align: center;
  border-top: 2px solid var(--hover-color);
  border-bottom: 2px solid var(--hover-color);
  animation: pulseGlow 4s infinite;
  height: auto !important;
  min-height: 50vh !important;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}


@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 1rem rgba(102, 252, 241, 0.2);
  }
  50% {
    box-shadow: 0 0 3rem rgba(102, 252, 241, 0.5);
  }
  100% {
    box-shadow: 0 0 1rem rgba(102, 252, 241, 0.2);
  }
}


.highlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* z-index: 2; */
}

.highlight-content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #0b0c10;
  background-image: linear-gradient(90deg, #fff, #fff 50%, #0b0c10 50%);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.highlight-content i {
  font-size: 4rem;
  color: var(--secondary-bg-color);
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.highlight-content p {
  font-size: 1.9rem;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 0.2rem; /* ⬅️ NEW: tightly controls bottom spacing */
  color: #0b0c10;
  font-weight: 500;
  line-height: 1.5;
}

/* Crousel */

 .promo-carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  position: relative;
  transition: transform 0.5s ease;
  height: 420px;
}

.carousel-slide {
  /* flex: 0 0 320px;
  margin: 0 24px;
  opacity: 0.5;
  filter: blur(3px);
  transform: scale(0.9);
  transition: all 0.5s ease; */
   min-width: 320px;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  filter: blur(3px);
  z-index: 1;
}

.carousel-slide.active {
  transform: scale(1.05);
  opacity: 1;
  filter: blur(0);
  z-index: 2;
}

.carousel-slide img {
  /* width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */
   width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  font-size: 28px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.nav.prev { left: 10px; }
.nav.next { right: 10px; }

 
/* Scroll reveal */

.savings-highlight {
  position: relative;
  background-image: url('Images/wages-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 1200px;
  height: 78vh ; 
  min-height: 300px !important;
  margin: 5rem auto;
  border: 2px solid var(--hover-color);
  border-radius: 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  color: #fff;
}

.savings-highlight .overlay {
  position: absolute;
  inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 3rem;
}

.savings-highlight .overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  border-radius: 3rem;
}

.savings-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* background: rgba(0, 0, 0, 0.5); */
}

.savings-content div p {
  align-items: center;
  justify-content: center;
}

.savings-content h2 {
  font-size: 5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.savings-content h2 span {
  color: var(--hover-color);
}

.savings-content p {
  font-size: 2rem;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #f0f0f0;
}

.savings-content h2 + p {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 2rem;
  color: var(--primary-bg-color);
  background-color: var(--hover-color);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  color: var(--primary-font-color);
  transform: scale(1.05);
}

 @media (max-width: 768px) {
  .savings-highlight {
    width: 80%;
    height: 52vh !important; 
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 3rem 2rem;
    height: auto;
    border-radius: 2rem;
  }

  .savings-content {
    padding: 0;
    max-width: 100%;
  }

  .savings-content h2 {
    font-size: 2.6rem;
    line-height: 1.3;
  }

  .savings-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    font-size: 1.5rem;
    padding: 10px 20px;
    width: 100%;
    max-width: 240px;
  }
}






/* About Section */

.about {
  /* min-height: 100vh; 
  height: auto; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* prevent flex row stretching */
  padding-top: 10rem;
  padding: 10rem 9% 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('Images/about-img3.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
  box-sizing: border-box;
}



.heading {
  text-align: center;
  font-size: 4.5rem;
}

.about-content h2 {
  text-align: center;  
  line-height: 1.2;
  width: 100%;         
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 
  /* background: rgba(0, 0, 0, 0.5);  
  padding: 2rem;
  border-radius: 1rem;
  max-width: 800px;
  width: 100%;  */
}

.about-content h3 {
  font-size: 2.6rem;

}

.about-content p {
  text-align: center;
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  .about {
    /* padding: 2rem 5%; */
    padding-top: 11rem;
    background-attachment: scroll;
  }

  .heading {
    font-size: 2.5rem;
  }

  .about-content p {
    font-size: 1.3rem;
    padding: 1rem 0;
  }

  .btn {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
  }
}



/* Services we offer Section */

.services {
  background: var(--secondary-bg-color);

}

.services h2 {
  margin-bottom: 4rem;

}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}


.services-container .services-box {
  position: relative;
  width: 430px;
  height: 320px;
  background: var(--primary-bg-color);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0 1rem var(--primary-bg-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.services-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 2rem var(--hover-color);
}

.services-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


.services-box:hover img {
  transform: scale(1.05);
}


.services-box .services-layer {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--secondary-bg-color); /* solid color */
  width: 100%;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 2;
  }
  
.services-box:hover .services-layer {
  transform: translateY(0);   
}

.services-box {
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 0 1rem var(--primary-bg-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--primary-bg-color);
  height: 430px; /* Or your desired consistent height */
}

.services-layer h4 {
  font-size: 2.2rem;
  color: var(--hover-color);
  text-decoration: underline;
  text-align: center;
  margin-bottom: 1.5rem;
}

.services-layer p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 2rem;
  white-space: pre-line;
  flex: 1;
  text-align: left;

}

.services-layer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: var(--primary-font-color);
  border-radius: 50%;

}

.services-layer a i {
  font-size: 2rem;
  color: var(--secondary-bg-color);
}

/* 🔹 Hover Indicator Badge and Arrow */
.hover-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  color: var(--primary-font-color);
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  animation: pulse 2s infinite;
  z-index: 3;
  transition: 0.3s ease;
}

.hover-indicator i {
  animation: bounceArrow 1.5s infinite;
  font-size: 1.4rem;
  color: var(--hover-color);
}

@keyframes pulse {
  0% { background-color: rgba(255, 255, 255, 0.05); }
  50% { background-color: rgba(255, 255, 255, 0.15); }
  100% { background-color: rgba(255, 255, 255, 0.05); }
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.services-box:hover .hover-indicator {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}


/* Responsive */

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
  }

  .services-box {
    width: 100%;
    max-width: 100%;
    height: 430px;
  }

  .services-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-layer {
    position: absolute;
    transform: translateY(100%);
    background: var(--primary-bg-color);
    padding: 2rem;
    width: 100%;
    height: 100%;
  }

  .services-box:hover .services-layer {
    transform: translateY(0);
  }

  .services-layer h4 {
    font-size: 2.2rem;
    color: var(--hover-color);
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-layer p {
    font-size: 1.5rem;
    color: #fff;
    line-height: 2rem;
    text-align: left;
  }

  .hover-indicator {
    bottom: 1rem;
  }
}

/* COre team  */

/* Core Team Section */

/* Core Team Section Base */
.core-team {
  background: var(--primary-bg-color);
  padding: 10rem 9% 5rem;
  text-align: center;
}

.core-team .heading {
  margin-bottom: 6rem;
}

/* Team Container Layout */
.team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
}

/* CEO Row */
.team-ceo-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.team-ceo-row::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  height: 15px;
  width: 3px;
  background-color: var(--hover-color);
}

/* Connecting horizontal line for lower row */
.team-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.team-row::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--hover-color);
  z-index: 1;
}

/* Vertical line from horizontal bar to each card */
.team-row .team-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 30px;
  background-color: var(--hover-color);
  z-index: 2;
}



/* Card Design */
.team-card {
  background: var(--primary-bg-color);
  border: 2px solid var(--hover-color);
  border-radius: 2rem;
  padding: 2rem;
  width: 240px;
  height: auto;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 2rem var(--hover-color);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid var(--hover-color);
  background-color: #fff;
}

.team-card h4 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.team-card h3 {
  font-size: 1.5rem;
  color: var(--hover-color);
  margin-bottom: 0.8rem;
}

.team-card p {
  font-size: 1.4rem;
  color: var(--primary-font-color);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
  .team-ceo-row,
  .team-row {
    flex-direction: column;
    align-items: center;
    position: relative;
  }


  /* SINGLE vertical line through ALL stacked cards */
  .team-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--hover-color);
    z-index: 0;
  }

   /* Short vertical connector from line to each card */
  .team-card::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background-color: var(--hover-color);
    z-index: 1;
  }

  /* Fix spacing between stacked cards */
  .team-card:not(:first-child) {
    margin-top: 3rem;
  }

  /* Remove CEO bottom and team top lines */
  .team-ceo-row::after,
  .team-row::before {
    display: none;
  }

   /* ✅ Remove vertical line on top of the first card (Ahmer) in mobile view */
  .team-container .team-card:first-child::before {
    content: none;
  }
}

   

  @media (min-width: 992px) {
  .team-row .team-card:nth-child(2)::before {
    height: -5px; /* or any value smaller than 30px */
  }
}


/* Crousel */

.testimonials {
  background: linear-gradient(to bottom, var(--primary-bg-color), var(--secondary-bg-color), var(--fade-color));
  text-align: center;
  height: auto;
  min-height: 50vh !important;
  width: 95%;
  padding: 8rem 9%;
  margin: 0 auto;
  border-radius: 3rem;
}

.testimonials .heading {
  margin-bottom: 4rem;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: auto;
  height: auto; 
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  background: var(--primary-bg-color);
  padding: 3rem 4rem;
  border-radius: 1.5rem;
  border: 2px solid var(--hover-color);
  box-shadow: 0 0 2rem rgba(102, 252, 241, 0.25); /* Glow from hover-color */
  z-index: 1;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.testimonial-slide p {
  font-size: 1.8rem;
  color: var(--primary-font-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-slide h4 {
  font-size: 1.6rem;
  color: var(--hover-color);
}

.quote-icon {
  font-size: 3rem;
  color: var(--hover-color);
  margin-bottom: 1rem;
}

.testimonial-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 10px var(--hover-color);
  margin-bottom: 1.5rem;
}


/* FAQs */

.faq {
  background: var(--primary-bg-color);
  padding: 10rem 9% 5rem;
}

.faq .heading {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-item {
  background: var(--secondary-bg-color);
  border: 2px solid var(--hover-color);
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  box-shadow: 0 0 1rem rgba(102, 252, 241, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.faq-item h3 {
  font-size: 2.4rem;
  color: var(--hover-color);
  margin-bottom: 0;
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  font-size: 1.6rem;
  color: var(--primary-font-color);
  line-height: 1.6;
  margin-top: 1rem;
}

.faq-item:hover p {
  max-height: 500px;
  opacity: 1;
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 9%;
  background: var(--primary-bg-color);

}

.footer-text p {
  font-size: 1.6rem;
  word-spacing: .3rem;

}

.footer-iconTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  font-size: 2.4rem;
  color: var(--hover-color);
  background: var(--hover-color);
  padding: 1rem;
  border-radius: 50%;
  z-index: 999;
  transition: transform 0.3s ease;
  box-shadow: 0 0 1.2rem var(--hover-color); /* glowing button-like shadow */
}

.footer-iconTop i {
  color: var(--secondary-bg-color); /* <- this makes sure the icon gets themed */
}

.footer-iconTop:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .footer-iconTop {
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    padding: 0.8rem;
  }
}


/* Brreakpoints */


@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }

}

@media (max-width: 991px) {
  .header {
    padding: 2rem 3%;

  }

  section {
    padding: 10rem 3% 2rem;

  }

  .portfolio {
    padding-bottom: 7rem;
  }

  .contact {
    min-height: auto;
  }

  .footer {
    padding: 2rem 3%;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--primary-bg-color);
    border-top: .1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }

  .navbar.active {
    display: block;
  }


  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
  }

  .home {
    flex-direction: column;
  }

  .home-content h3 {
    font-size: 2.6rem;
  }

  .home-content h1 {
    font-size: 5rem;
  }

  .home-img img {
    width: 70vw;
    margin-top: 4rem;
  }

  .about {
    flex-direction: column-reverse;
  }

  .about img {
    width: 70vw;
    margin-top: 4rem;
  }

  .portfolio h2 {
    margin-bottom: 3rem;
  }

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 617px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;

  }

  .contact form .input-box input {
    width: 100%;

  }
}

@media (max-width: 365px) {
  .home-img img {
    width: 90vw;
  }

  .about-img img {
    width: 90vw;
  }

  .footer {
    flex-direction: column-reverse;
  }

  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}


/* Upsell revenew */
  .steps-section {
  background: linear-gradient(to bottom, var(--primary-bg-color), var(--secondary-bg-color), var(--fade-color));
  text-align: center;
  padding: 6rem 2rem;
  width: 95%;
  margin: 0 auto;
  margin-top: 5rem;
  height: auto;
  min-height: 65vh !important;
  border-radius: 3rem;
}

.steps-section a {
  margin-top: 2rem;
}

.steps-subtitle {
  font-size: 1.6rem;
  color: var(--hover-color);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.steps-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--primary-font-color);
  margin-bottom: 5rem;
}

.steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
  flex-wrap: wrap;
}

.steps-row .step-box p:first-child  {
  margin-top: 5rem;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 82px;
  left: 15%;
  right: 8%;
  height: 4px;
  background-color: var(--hover-color);
  z-index: 0;
}

.step-box {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-marker {
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
  z-index: 2;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--hover-color);
  color: var(--secondary-bg-color);
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step-box h4 {
  font-size: 1.8rem;
  color: var(--hover-color);
  margin-bottom: 3rem;
}

.step-box p {
  font-size: 1.5rem;
  color: whitesmoke;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.step-desc {
  font-weight: 600;
  color: var(--hover-color);
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .steps-row::before {
    display: none;
  }

  .steps-section .steps-title {
    font-size: 2rem;
  }

  .steps-section .steps-subtitle {
    font-size: 1.8rem;
  }
}

 
/* Save big commision */
.dark-cta-section {
  background: linear-gradient(to bottom, var(--hover-color), var(--secondary-bg-color), var(--primary-bg-color));
  padding: 6rem 4%;
  text-align: center;
  color: #fff;
  width: 80%;
  margin: 0 auto;
  margin-top: 5rem;
  height: auto;
  min-height: 60vh !important;
  border-radius: 3rem;
}

.leaf-icon i {
  font-size: 4rem;
  color: var(--hover-color);
  margin-bottom: 1rem;
}

.dark-cta-title {
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-bg-color);
}

 .dark-cta-subtext {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 2rem;
  margin-top: 1rem;
  line-height: 1.8;
  text-align: left;       
  display: inline-block;  
  list-style-type: disc;  
  padding-left: 1.5rem;  
}

.dark-cta-subtext li {
  margin-bottom: 1rem;
  font-family: 'fira sans' , sans-serif;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  
}

.btn.primary {
  background-color: var(--hover-color);
  color: var(--primary-bg-color);
  padding: 1rem 2rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  transition: 0.3s;
  text-decoration: none;
}

.btn.primary:hover {
  /* background-color: var(--hover-color); */
  color: var(--primary-font-color);
}

.btn.outline {
  padding: 1rem 2rem;
  color: #fff;
  border: 2px solid var(--hover-color);
  background: transparent;
  border-radius: 4px;
  transition: 0.3s;
  text-decoration: none;
}

.btn.outline:hover {
  background: var(--fade-color);
  color: #003c3c;
}

@media (max-width: 768px) {
  .dark-cta-section {
   padding: 2rem 4% !important;
    margin-top: 4rem;         /* Removed top margin */
  }

  .leaf-icon {
    margin-top: 0;
    padding-top: 0;
  }

  .leaf-icon i {
    margin-top: 0;
    margin-bottom: 1rem;
    display: block;
  }
}

.contact-section {
  background: linear-gradient(to bottom, var(--primary-bg-color), var(--secondary-bg-color));
  padding: 6rem 4%;
  text-align: center;
  color: #fff;
  border-radius: 3rem;
  margin-top: 5rem;
}

.contact-heading {
  font-size: 3rem;
  color: var(--hover-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-subtext {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-item {
  font-size: 2rem;
  display: flex;
  flex-direction: column; /* Stack icon & text */
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  margin-top: 1.5rem;
  border-radius: 2rem;
  border: 2px solid var(--hover-color);
  box-shadow: 0 0 2rem rgba(0, 255, 255, 0.2);
  width: 350px;
  height: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 3rem var(--hover-color);
}

.contact-item i {
  font-size: 3rem;
  color: var(--hover-color);
}


.contact-section .btn.primary {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}


