/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #080B10; /* Classy Blue */
  color: #EAE9E9; /* Pearl White */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 5, 46, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 23px;
  padding: 8px 20px;
  z-index: 1000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow */
}

.navbar-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navbar-link:hover {
  color: #FFFFFF;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 140px 50px 0;
  color: #f2f9fe; /* Pearl White */
  overflow: hidden; /* Prevent overflow issues */
}

.hero-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* Place it behind all content */
  overflow: hidden; /* Hide any overflow */
}

.hero-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the GIF covers the entire area */
  filter: blur(3px)
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Between GIF (z=-2) and content (z=1 or 2) */
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent black; adjust as needed */
}

.hero-content {
  max-width: 45%; /* Reduce width to give more space for the image */
  z-index: 1;
}

.hero-content .redefine-work {
  display: inline-block;
  color: #CDDDF2;
  font-size: 16px; /* Decreased font size */
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 0.4px solid #FFF;
  background: rgba(5, 5, 46, 0.25);
  padding: 5px 15px;
  margin-bottom: 15px; /* Reduced margin */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
  font-size: 48px; /* Decreased font size */
  font-weight: 500;
  line-height: 1.2; /* Adjusted line height */
  letter-spacing: -1px;
  margin-bottom: 15px; /* Reduced margin */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content .subheading {
  color: #e0e9f5e1;
  font-family: 'Manrope', sans-serif;
  font-size: 20px; /* Decreased font size */
  font-weight: 400;
  line-height: 1.5; /* Adjusted line height */
  margin-bottom: 20px; /* Reduced margin */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px; /* Space between the buttons */
  margin-top: 20px; /* Adjust spacing from other content */
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
  justify-content: left; /* Center-align buttons */
}

/* App Store Button */
.hero-buttons .hero-app-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* For spacing between the logo and text */
  padding: 10px 20px;
  border-radius: 10.117px;
  border: 0.5px solid #FFF;
  background: #010101;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  max-width: 180px; /* Limit button width */
  width: 100%; /* Make the button fill the available space */
}

.hero-buttons .hero-app-store:hover {
  background: #FFF;
  color: #010101;
  transform: scale(1.05); /* Slight scale effect on hover */
}

/* Google Play Button */
.hero-buttons .hero-google-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* For spacing between the logo and text */
  padding: 10px 20px;
  border-radius: 10.117px;
  background: #FFF;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  max-width: 180px; /* Limit button width */
  width: 100%; /* Make the button fill the available space */
}

.hero-buttons .hero-google-play:hover {
  background: #010101;
  color: #FFF;
  transform: scale(1.05); /* Slight scale effect on hover */
}

/* Responsive Adjustments for Hero Buttons */
@media (max-width: 992px) {
  .hero-buttons {
      gap: 15px; /* Reduce space between buttons */
      justify-content: center;
  }
  
  .hero-buttons .btn {
      font-size: 12px; /* Reduce font size for tablets */
      padding: 8px 16px; /* Adjust padding */
  }
}

@media (max-width: 768px) {
  .hero-buttons {
      gap: 10px; /* Further reduce space for mobile */
      justify-content: center;
  }

  .hero-buttons .btn {
      font-size: 11px; /* Further reduce font size for mobile */
      padding: 6px 14px; /* Adjust padding */
      max-width: 150px; /* Limit button width for smaller screens */
  }
}

@media (max-width: 480px) {
  .hero-buttons {
      gap: 8px; /* Reduce space further for very small screens */
      justify-content: center;
  }

  .hero-buttons .btn {
      font-size: 10px; /* Further reduce font size */
      padding: 5px 12px; /* Adjust padding */
      max-width: 140px; /* Limit button width */
  }
}

.hero-image {
  flex: 1; /* Ensure the image takes the remaining space */
  display: flex;
  justify-content: flex-end; /* Push the image to the right */
  align-items: flex-start; /* Align the image to the top */
  position: relative;
  z-index: 1;
  padding-top: 50px; /* Add some space on top */
}

.hero-image img {
  width: 100%; /* Take up the full width of the available space */
  max-width: none; /* Remove max-width limit */
  height: calc(100% - 140px); /* Stretch the image to cover most of the right side */
  object-fit: cover; /* Ensure the image scales proportionally */
  border-radius: 10px;
}

/* RESPONSIVE DESIGN */

/* For Tablets */
@media (max-width: 992px) {

  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 30px 0px 30px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 20px; /* Add spacing between content and image */
  }

  .hero-content h1 {
    font-size: 36px; /* Reduced font size for tablets */
    line-height: 1.2;
  }

  .hero-content .subheading {
    font-size: 18px; /* Reduced font size for subheading on tablets */
    line-height: 1.4;
  }


  .hero-content .redefine-work {
    font-size: 14px; /* Reduced font size for redefine text on tablets */
    padding: 4px 12px; /* Adjusted padding for tablets */
  }


  .hero-image {
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }

  .hero-image img {
    height: auto;
    max-width: 400px;
  }
}
/* For Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 5px 10px;
    top: 5px;
  }
  .hero {
    padding: 100px 30px 0px 30px;

  }

  .navbar-link {
    font-size: 12px; /* Adjusted navbar link size */
    margin: 0 8px;
  }

  .hero-content h1 {
    font-size: 28px; /* Further reduced font size for mobile */
    line-height: 1.2;
  }

  .hero-content .subheading {
    font-size: 16px; /* Reduced font size for subheading on mobile */
    line-height: 1.4;
  }


  .hero-content .redefine-work {
    font-size: 12px; /* Further reduced font size for redefine text on mobile */
    padding: 3px 10px; /* Adjusted padding for mobile */
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 300px;
    height: auto;
  }
}

/* For Very Small Screens */
@media (max-width: 480px) {
  .hero {
    padding: 100px 30px 0px 30px;
  }

  .hero-content h1 {
    font-size: 24px; /* Further reduced font size for very small screens */
    line-height: 1.2;
  }

  .hero-content .subheading {
    font-size: 14px; /* Reduced font size for subheading on very small screens */
    line-height: 1.3;
  }

  .hero-content .redefine-work {
    font-size: 10px; /* Further reduced font size for redefine text on very small screens */
    padding: 2px 8px; /* Adjusted padding for very small screens */
  }

  .hero-image img {
    max-width: 250px;
    height: auto;
  }
}


/* ========== SECTION: DETAILS ========== */

.details {
  position: relative;
  padding: 60px 50px;
  text-align: center;
  color: #EAE9E9; /* Pearl White */
  overflow: hidden;
}

.details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-footer-1.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}

.details-title {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #EAE9E9;
  margin-bottom: 15px;
}

.details-description {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #CDDDF2;
  margin-bottom: 40px;
}

/* ========== GRID LAYOUT ========== */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; /* Space between cards */
}

/* ========== CARD COMMON STYLES ========== */
.details-card {
  position: relative; /* for pseudo-element backgrounds if needed */
  display: flex;
  align-items: center;
  border-radius: 37px;
  border: 0.7px solid rgba(255, 255, 255, 0.8);
  background: rgba(5, 5, 46, 0.25);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* No fixed height — let content define height */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* If you want a subtle background image inside each card, uncomment/adjust:
.details-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("../images/details.png") no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}
*/

.details-card-image {
  flex: 0 0 auto;
  max-width: 150px; /* image size */
  height: auto;
  margin-right: 20px;
  object-fit: cover;
  border-radius: 10px;
}

.details-card-text {
  flex: 1;
  text-align: left; /* aligns text to the left if you want; or keep center */
}

.details-card-text h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #EAE9E9;
  margin: 0 0 10px; /* top 0, bottom 10px */
}

.details-card-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #CDDDF2;
  line-height: 20px;
  margin: 0; /* remove default p margin to reduce blank space */
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .details {
    padding: 50px 30px;
  }
  .details-card {
    padding: 15px;
  }
  .details-card-image {
    max-width: 130px;
    margin-right: 15px;
  }
  .details-card-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .details-card-text p {
    font-size: 13px;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .details {
    padding: 40px 20px;
  }
  .details-card {
    flex-direction: column; /* Stack image & text vertically */
    text-align: center;
    align-items: center;    /* Center the items horizontally */
    padding: 20px;
  }
  .details-card-image {
    margin: 0 auto 15px auto; /* center image, space below it */
    max-width: 120px;
  }
  .details-card-text {
    text-align: center;
  }
  .details-card-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .details-card-text p {
    font-size: 12px;
  }
}

/* Very Small Screens (<= 480px) */
@media (max-width: 480px) {
  .details {
    padding: 30px 15px;
  }
  .details-card {
    padding: 15px;
  }
  .details-card-image {
    max-width: 100px;
    margin: 0 auto 10px auto;
  }
  .details-card-text h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .details-card-text p {
    font-size: 11px;
  }
}
  
/* FEATURES SECTION */
.features {
  position: relative;
  padding: 60px 50px;
  background: url("../images/bg-faq-1.png") no-repeat center center / cover, #080B10; /* Background Image */
  color: #EAE9E9; /* Pearl White */
  text-align: center;
  overflow: hidden;
}

.features .section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 15px;
}

.features .section-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 40px;
  color: #98C2D8; /* Skylight Blue */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default to 3 cards per row on desktop */
  gap: 30px; /* Space between cards */
}

/* Default Card Layout (Image on the Right) */
.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; /* Transparent White */
  border-radius: 37px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: auto; /* Adjust height dynamically */
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Effect */
.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Alternate Layout for Even Cards (Image on the Left) */
/* .feature-item:nth-child(even) {
  flex-direction: row-reverse; 
} */

.feature-left {
  flex-direction: row; /* Default for left-aligned */
}

.feature-right {
  flex-direction: row-reverse; /* Reverse layout for right-aligned */
}

/* Default Layout (Content on the Left) */
.feature-text {
  flex: 1;
  text-align: left; /* Align text to the left by default */
  margin: 0 0 0 auto; /* Push content to the left */
}

/* Alternate Layout for Even Cards (Content on the Right) */
/* .feature-item:nth-child(even) .feature-text {
  text-align: right; 
  margin: 0 auto 0 0; 
}

.feature-item:nth-child(even) .feature-icon {
  margin: 0 0 10px auto; 
}

.feature-item:nth-child(even) h3 {
  text-align: right; 
}

.feature-item:nth-child(even) p {
  text-align: right; 
} */

.feature-icon {
  width: 40px; /* Default icon size for desktop */
  height: auto;
  margin-bottom: 10px;
}

.feature-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
}

.feature-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; /* Adjusted normal text font size for desktop */
  line-height: 20px;
  color: #CDDDF2; /* Subtle Blue */
}

.feature-image {
  flex: 1;
  max-width: 150px;
  border-radius: 10px;
}

/* RESPONSIVE DESIGN */

/* For Tablets */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
  }

  .feature-image {
    width: 150px; /* Adjust image size */
  }
  .feature-icon {
    width: 35px; /* Slightly smaller icon size for tablets */
  }

  .feature-text h3 {
    font-size: 14px; /* Adjusted heading size for tablets */
  }

  .feature-text p {
    font-size: 12px; /* Adjusted normal text size for tablets */
    line-height: 18px; /* Adjusted line height */
  }
}

/* For Mobile */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 card per row on mobile */
  }

  .feature-item {
    /* Force all cards to stack the same way on mobile */
    flex-direction: column !important;
  }

  .feature-text {
    margin-bottom: 15px;
  }

  .feature-image {
    width: 100%; /* Full-width image for mobile */
    height: auto;
  }
  .feature-icon {
    width: 30px; /* Smaller icon size for mobile */
  }

  .feature-text h3 {
    font-size: 13px; /* Smaller heading size for mobile */
  }

  .feature-text p {
    font-size: 12px; /* Normal text size for mobile */
    line-height: 16px; /* Reduced line height for mobile */
  }
  /* Override text alignment for even cards on mobile */
  .feature-item:nth-child(even) .feature-text,
  .feature-item:nth-child(even) h3,
  .feature-item:nth-child(even) p {
    text-align: center !important;
    margin: 0 !important;
  }

  .feature-item:nth-child(odd) .feature-text,
  .feature-item:nth-child(odd) h3,
  .feature-item:nth-child(odd) p {
    text-align: center !important;
    margin: 0 !important;
  }
}
  
/* For Very Small Screens */
@media (max-width: 480px) {

  .feature-item {
    /* Force all cards to stack the same way on mobile */
    flex-direction: column !important;
  }

  .feature-icon {
    width: 25px; /* Smallest icon size for very small screens */
  }

  .feature-text h3 {
    font-size: 12px; /* Smaller heading size for very small screens */
  }

  .feature-text p {
    font-size: 11px; /* Smallest normal text size */
    line-height: 15px; /* Reduced line height */
  }
    /* Override text alignment for even cards on mobile */
    .feature-item:nth-child(even) .feature-text,
    .feature-item:nth-child(even) h3,
    .feature-item:nth-child(even) p {
      text-align: center !important;
      margin: 0 !important;
    }
    .feature-item:nth-child(odd) .feature-text,
    .feature-item:nth-child(odd) h3,
    .feature-item:nth-child(odd) p {
      text-align: center !important;
      margin: 0 !important;
    }
}

/* Trades Section */
.trades {
  position: relative; /* Allow background image with ::before */
  padding: 60px 20px;
  background: transparent; /* No direct background color */
  text-align: center;
  overflow: hidden; /* Prevent content overflow */
}

/* Background Image */
.trades::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/Rectangle-2.png") no-repeat center center / cover, #080B10; /* Image with fallback color */
  z-index: -1; /* Place behind content */
  opacity: 0.5; /* Reduce opacity for readability */
}

/* Section Title */
.trades .section-title {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFF; /* White color */
  margin-bottom: 15px; /* Spacing below */
  text-align: center; /* Center align text */
}

/* Section Description */
.trades .section-description {
  font-family: "DM Sans", sans-serif;
  font-size: 15px; /* Description font size */
  margin-bottom: 25px;
  color: #CDDDF2; /* Subtle gray */
}

/* Trade Cards */
.trades-marquee-wrapper {
  width: 100%;
  overflow: hidden; /* Hide overflow to prevent scrollbars */
}

.trades-marquee {
  display: flex;
  animation: scroll-left 30s linear infinite; /* Smooth continuous scrolling */
  width: fit-content; /* Allow container to be as wide as needed */
}

/* Group of cards */
.trades-card-group {
  display: flex;
  gap: 60px; /* Gap between cards within a group */
  padding-right: 60px; /* Equal to gap - creates spacing between last and first card */
}

.trade-card {
  flex: 0 0 auto; /* Prevent shrinking or growing */
  width: 180px; /* Card width */
  text-align: center;
  border-radius: 20px; /* Rounded corners */
  border: 0.7px solid rgba(255, 255, 255, 0.8); /* Subtle white border */
  background: rgba(5, 5, 46, 0.25); /* Semi-transparent dark background */
  padding: 20px; /* Padding */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.trade-card:hover {
  transform: translateY(-5px); /* Slight hover animation */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Icon in Trade Card */
.trade-card img {
  width: 100px; /* Increased icon size */
  height: 100px;
  margin-bottom: 10px; /* Space below icon */
  object-fit: contain; /* Ensure proper scaling of icons */
}

/* Trade Name */
.trade-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px; /* Set font size */
  font-style: normal; /* No italic style */
  font-weight: 400; /* Normal weight */
  color: #eae9e9ca; /* Pearl White */
  line-height: normal; /* Default line height */
  text-align: center; /* Center-align text */
  margin-top: 10px; /* Optional spacing above text */
}

/* Animation Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move exactly by the width of the first card group */
    transform: translateX(-50%);
  }
}

/* RESPONSIVE DESIGN */

/* For Tablets */
@media (max-width: 992px) {
  .trades {
    padding: 50px 30px;
  }

  .trade-card {
    width: 160px; /* Slightly smaller card width */
    border-radius: 18px; /* Adjusted for tablets */
  }

  .trade-card img {
    width: 90px; /* Adjusted icon size */
    height: 90px;
  }

  .trades .section-title {
    font-size: 26px; /* Adjusted title font for tablets */
  }

  .trades .section-description {
    font-size: 13px; /* Adjusted description font for tablets */
  }

  .trade-card p {
    font-size: 15px; /* Adjusted trade name font size for tablets */
  }
}

/* For Mobile */
@media (max-width: 768px) {
  .trades {
    padding: 40px 20px;
  }

  .trade-card {
    width: 140px; /* Smaller card width for mobile */
    border-radius: 16px; /* Adjusted for mobile */
  }

  .trade-card img {
    width: 80px; /* Adjusted icon size for mobile */
    height: 80px;
  }

  .trades .section-title {
    font-size: 22px; /* Smaller title font for mobile */
  }

  .trades .section-description {
    font-size: 12px; /* Smaller description font for mobile */
  }

  .trade-card p {
    font-size: 14px; /* Adjusted trade name font size for mobile */
  }
}

/* For Very Small Screens */
@media (max-width: 480px) {
  .trades {
    padding: 30px 15px;
  }

  .trade-card {
    width: 120px; /* Smaller card width for very small screens */
    border-radius: 14px; /* Less rounded corners */
  }

  .trade-card img {
    width: 70px; /* Smaller icon size for very small screens */
    height: 70px;
  }

  .trades .section-title {
    font-size: 20px; /* Smaller title font for very small screens */
  }

  .trades .section-description {
    font-size: 11px; /* Smaller description font for very small screens */
  }

  .trade-card p {
    font-size: 13px; /* Reduced trade name font size for very small screens */
  }
}


    /* HOW JOBSUB WORKS SECTION STYLES */
    .how-it-works {
      padding: 60px 50px;
      background: #080B10;
      color: #EAE9E9;
      text-align: center;
      position: relative;
    }

    .section-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #EAE9E9;
    }

    .section-description {
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      margin-bottom: 40px;
      color: #EAE9E9;
    }

    .toggle-buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
      position: relative;
      z-index: 2;
    }
    .toggle-btn {
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 20px;
      border: 1px solid #EAE9E9;
      background: transparent;
      color: #EAE9E9;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .toggle-btn.active,
    .toggle-btn:hover {
      background: #0C3273;
      color: #FFFFFF;
    }

    .timeline {
      display: none;
      position: relative;
      margin: 40px 0;
    }
    .timeline.active {
      display: block;
    }

    .timeline:before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 0;
    }

    .timeline-item {
      position: relative;
      width: 50%;
      padding: 0px;
    }

    .timeline-item.left {
      text-align: right;
      left: 0;
    }
    .timeline-item.right {
      text-align: left;
      left: 50%;
    }

    .timeline-content {
      position: relative;
      padding: 20px 30px;
      border-radius: 15px;
      text-align: left;
      z-index: 1;
    }

    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
      content: "";
      position: absolute;
      width: 563px;
      height: 366px;
      background: radial-gradient(circle, rgba(36, 78, 195, 0.4), transparent 60%);
      border-radius: 50%;
      z-index: -1;
      pointer-events: none;
    }
    .timeline-item.left .timeline-content::before {
      top: 68px;
      left: 14%;
      transform: translate(-50%, -50%);
    }
    .timeline-item.right .timeline-content::before {
      top: 71px;
      left: 31%;
      transform: translate(-50%, -50%);
    }

    .step-number {
      font-size: 14px;
      color: #98C2D8;
      margin-bottom: 10px;
    }
    .timeline-content ul li {
      margin-bottom: 10px; /* Adjust the value as needed */
    }

    .timeline-item h3 {
      font-size: 24px;
      font-weight: bold;
      color: #FFF;
      margin-bottom: 10px;
    }
    .timeline-item p {
      font-size: 16px;
      line-height: 24px;
      color: #CDDDF2;
    }
    .timeline-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      background: #FFFFFF;
      border: 3px solid #080B10;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }
    .timeline-item.left .timeline-icon {
      left: calc(100% + 0px);
    }
    .timeline-item.right .timeline-icon {
      left: 0px;
    }

    @media (max-width: 768px) {
      .toggle-buttons {
        gap: 10px;
      }
      .toggle-btn {
        font-size: 14px;
        padding: 8px 16px;
      }
    }
    @media (max-width: 480px) {
      .toggle-buttons {
        gap: 8px;
      }
      .toggle-btn {
        font-size: 13px;
        padding: 6px 12px;
      }
    }

    /* 
       NOTE: We have removed the code that originally set 
       .timeline-item width:100% on small screens, forcing 
       them into a single column. Now they remain left-right.
    */

    /* 
      APP PREVIEW SECTION 
    */
    .app-preview {
      position: relative; 
      padding: 60px 20px;
      background: url("https://jobsub-website.s3.eu-west-2.amazonaws.com/app-preview-bg.png") no-repeat center center / cover, #080B10; 
      text-align: center;
      color: #EAE9E9; 
      overflow: hidden; 
    }
    
    .app-preview .section-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #EAE9E9;
    }
    
    .app-preview .section-description {
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      margin-bottom: 40px;
      color: #CDDDF2;
    }
    
    /* Carousel Container */
    .carousel-container {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      margin-bottom: 40px;
      overflow: hidden;
      height: 400px; /* Fixed height for the carousel */
    }

    /* Carousel Item */
    .carousel-item {
      /* Hide by default, only left/center/right will be shown in JS */
      display: none; 
      
      flex: 0 0 150px; 
      transform: scale(0.8); 
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0.5; 
      justify-content: center;
      align-items: center;
    }

    .carousel-item img {
      max-width: 100%; 
      max-height: 100%; 
      object-fit: contain; 
      border-radius: 10px; 
    }

    /* Center Image Styling */
    .carousel-item.center-item {
      flex: 0 0 300px; 
      transform: scale(1); 
      opacity: 1; 
      z-index: 2; 
    }

    .carousel-item.center-item img {
      max-width: 65%;
      max-height: 100%; 
      object-fit: contain; 
    }
    
    /* Carousel Arrows */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #05052E;
      color: #FFFFFF;
      border: 0.7px solid rgba(255, 255, 255, 0.8);
      padding: 10px 15px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
      z-index: 10;
      transition: background-color 0.3s ease;
      fill-opacity: 0.25;
      stroke: white;
    }
    
    .carousel-arrow.left-arrow {
      left: calc(50% - 150px); 
    }
    
    .carousel-arrow.right-arrow {
      right: calc(50% - 150px); 
    }
    
    .carousel-arrow:hover {
      background-color: #004080;
    }
    
    /* CTA Buttons (Download links) */
    .cta {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 20px; 
      flex-wrap: wrap;
    }

    .cta .app-store,
    .cta .play-store {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px; 
      padding: 10px 20px;
      border-radius: 10px;
      text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
      max-width: 180px; 
      width: 100%; 
      font-family: "Inter", sans-serif;
      font-size: 14px;
      font-weight: 400;
      cursor: pointer;
    }

    .cta .app-store {
      border: 0.5px solid #FFF; 
      background: #010101; 
      color: #FFF;
    }
    .cta .app-store:hover {
      background: #FFF; 
      color: #010101; 
      transform: scale(1.05);
    }

    .cta .play-store {
      background: #FFF;
      color: #000;
    }
    .cta .play-store:hover {
      background: #010101; 
      color: #FFF; 
      transform: scale(1.05); 
    }

    .cta .btn img {
      width: 32px; 
      height: 32px;
    }
    .cta .btn .btn-text {
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .cta .btn .btn-subtitle {
      font-size: 12px; 
      opacity: 0.8;
    }
    .cta .btn .btn-title {
      font-size: 18px; 
      font-weight: bold;
    }

    /* Responsive Adjustments for CTA Buttons */
    @media (max-width: 992px) {
      .cta {
        gap: 22px; 
      }
      .cta .btn {
        font-size: 14px; 
        padding: 10px 20px;
      }
    }

    @media (max-width: 768px) {
      .cta {
        gap: 20px; 
      }
      .cta .btn {
        font-size: 12px; 
        padding: 8px 16px; 
      }
    }

    @media (max-width: 480px) {
      .cta {
        gap: 18px; 
      }
      .cta .btn {
        font-size: 10px; 
        padding: 6px 14px; 
      }
    }

    /* RESPONSIVE DESIGN */
    /* For Tablets */
    @media (max-width: 992px) {
      .carousel-container {
        height: 300px; 
      }
      .carousel-item {
        flex: 0 0 120px; 
        transform: scale(0.75); 
      }
      .carousel-item.center-item {
        flex: 0 0 250px; 
      }
      .carousel-item img {
        max-width: 80%; 
        max-height: 100%; 
      }
      .carousel-arrow {
        padding: 8px 12px; 
        font-size: 18px;
      }
    }

    /* For Mobile */
    @media (max-width: 768px) {
      .carousel-container {
        height: 250px; 
      }
      .carousel-item {
        flex: 0 0 100px; 
        transform: scale(0.7); 
        opacity: 0.6; 
      }
      .carousel-item.center-item {
        flex: 0 0 200px; 
      }
      .carousel-item img {
        max-width: 70%; 
        max-height: 100%; 
      }
      .carousel-arrow {
        padding: 6px 10px; 
        font-size: 16px;
      }
    }

    /* For Very Small Screens */
    @media (max-width: 480px) {
      .carousel-container {
        height: 200px; 
        display: flex;
        justify-content: center; 
        align-items: center;
        position: relative;
      }
      .carousel-item {
        flex: 0 0 114px; 
        transform: scale(0.7); 
        opacity: 0.6; 
        margin: 0 2px; 
      }
      .carousel-item.center-item {
        flex: 0 0 150px; 
        transform: scale(1); 
        opacity: 1; 
      }
      .carousel-item.center-item img {
        max-width: 65%; 
        max-height: 100%; 
        object-fit: contain; 
      }
      .carousel-item img {
        max-width: 80%; 
        max-height: 90%; 
        object-fit: contain; 
      }
      .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #0C3273;
        color: #FFFFFF;
        border: none;
        padding: 5px 10px; 
        border-radius: 50%;
        cursor: pointer;
        font-size: 14px;
        z-index: 10;
        transition: background-color 0.3s ease;
      }
      .carousel-arrow.left-arrow {
        left: calc(50% - 92px); 
      }
      .carousel-arrow.right-arrow {
        right: calc(50% - 92px); 
      }
      .carousel-arrow:hover {
        background-color: #004080;
      }
    }

/* FAQ Section */
.faq {
    position: relative;
    padding: 100px 20px;
    background: url("../images/bg-faq-1.png") no-repeat center center / cover, #080B10; /* Image with fallback color */
    color: #D2D9DE;
    text-align: center;
}

.faq-header {
    margin-bottom: 50px;
}

.faq-highlight {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 27px;
    border: 0.5px solid #FFFFFF;
    background: #020512;
    color: #CDDDF2;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(16px, 1.5vw, 20px); /* Responsive font */
    font-weight: 700;
}

.faq-title {
    color: #D2D9DE;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(32px, 5vw, 60px); /* Responsive font */
    font-weight: 700;
    margin-top: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #CDDDF2; /* Keep the border consistent */
    border-radius: 10px;
    overflow: hidden; /* Ensure the border surrounds the content */
    transition: all 0.3s ease; /* Smooth transition for box expansion */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    color: #979BA1;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(18px, 2vw, 24px); /* Responsive font */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1); /* Subtle hover effect */
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    color: #D2D9DE;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(12px, 1.8vw, 20px); /* Responsive font */
    font-weight: 400;
    line-height: normal;
    opacity: 0; /* Hide the answer initially */
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px; /* Adjust to fit your answer content */
    padding: 16px 35px;
    opacity: 1; /* Make the answer visible */
}

/* Transition for the border covering both question and answer */
.faq-item.active {
    border: 1px solid #CDDDF2; /* Ensure the border is continuous */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow effect */
}

/* Media Queries */
@media (max-width: 768px) {
    .faq {
        padding: 80px 20px;
    }

    .faq-title {
        font-size: 48px;
    }

    .faq-highlight {
        font-size: 18px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-highlight {
        font-size: 16px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 16px;
    }
}
  /* 
    RESPONSIVE MEDIA QUERIES
    ------------------------
    Adjust styles for mobile, tablets, and smaller desktops.
  */
  
  /* 
    ========== Mobile First Approach ==========
    Base styles are fairly mobile-friendly, but we still refine further 
    if screen width is smaller than 768px or 480px, etc.
  */
  
  /* 
    For tablets and below (max-width: 992px or 768px)
  */
 
/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 60px 20px;
    background: #080B10;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

/* Static Background Image */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg-footer-1.png") no-repeat center center;
    background-size: cover;
    opacity: 0.8;
    z-index: -1;
}

.testimonials .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.testimonials .section-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    margin-bottom: 40px;
    color: #EAE9E9;
}

/* Carousel Wrapper */
.testimonials-carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible; /* Allow cards to extend beyond the container */
    width: 90%;
    margin: 0 auto;
    padding-top: 40px; /* Add space above the carousel */
}

/* Carousel */
.testimonials-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Testimonial Card */
.testimonial-item {
    flex: 0 0 300px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1; /* Ensure cards appear above other elements */
}

.testimonial-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 2; /* Bring the hovered card to the front */
}

.testimonial-item p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-item {
        flex: 0 0 220px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        flex: 0 0 90%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Contact Us Section */
.contact-us {
    position: relative;
    padding: 60px 20px;
    background: #080B10; /* Same background color as footer */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* Ensure content stays inside */
  }
  
  /* Background Image */
  .contact-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg-footer-1.png") no-repeat right center; /* Align to the right */
    background-size: cover; /* Cover the section */
    opacity: 0.8; /* Slight transparency for gradient effect */
    z-index: 1;
  }
  
  /* Content Overlay */
  .contact-overlay {
    position: relative;
    z-index: 2; /* Ensure content is above the background image */
  }
  
  /* Title and Description */
  .contact-us .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .contact-us .section-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    margin-bottom: 30px;
    color: #EAE9E9; /* Light Gray */
  }
  
  /* Contact Wrapper */
  .contact-wrapper {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px; /* Add padding for smaller screens */
  }
  
  /* Contact Form */
  .contact-form {
    background: transparent; /* Transparent background */
    color: #FFFFFF; /* White text */
    padding: 30px;
    border: 1px solid #FFFFFF; /* White border around the card */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Subtle shadow for visibility */
    width: 100%;
    max-width: 500px;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
  }
  
  .contact-form h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFFFFF;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #FFFFFF; /* White text for labels */
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #FFFFFF; /* White border */
    border-radius: 5px;
    outline: none;
    background: transparent; /* Transparent background */
    color: #FFFFFF; /* White text */
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #FFFFFF; /* White border on focus */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8); /* Glow effect */
    transform: scale(1.02); /* Slight scale-up animation */
  }
  
  .contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    background: #98C2D8;
    color: #0C3273;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #0C3273;
    color: #FFFFFF;
  }
  
  /* Responsive Design */
  /* Tablets */
  @media (max-width: 768px) {
    .contact-wrapper {
      padding: 0 15px; /* Add padding for smaller screens */
    }
  
    .contact-us .section-title {
      font-size: 24px;
    }
  
    .contact-us .section-description {
      font-size: 14px;
    }
  
    .contact-form {
      padding: 20px;
    }
  
    .contact-form h3 {
      font-size: 18px;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 13px;
      padding: 10px;
    }
  
    .contact-form button {
      font-size: 14px;
    }
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    .contact-wrapper {
      padding: 0 10px; /* Add padding for mobile screens */
    }
  
    .contact-us .section-title {
      font-size: 20px;
    }
  
    .contact-us .section-description {
      font-size: 12px;
    }
  
    .contact-form {
      padding: 15px;
    }
  
    .contact-form h3 {
      font-size: 16px;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 12px;
      padding: 8px;
    }
  
    .contact-form button {
      font-size: 13px;
      padding: 10px;
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* Footer Section */
.footer {
    position: relative;
    background: #080B10; /* Background color */
    color: #FFF;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden; /* Ensure content stays inside */
}

/* Overlay for the background image */
.footer-overlay {
    position: relative;
    z-index: 2; /* Ensure content is above the background */
}

/* Static Background Image */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg-footer-1.png") no-repeat right center; /* Align to the right */
    background-size: cover; /* Cover entire section */
    opacity: 0.8; /* Slight transparency for gradient effect */
    z-index: 1;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px; /* Add padding to keep the logo and buttons away from the edges */
    gap: 20px; /* Add gap between elements */
}

/* Footer Logo */
.footer-logo img {
    max-width: 150px;
    margin-left: 10px; /* Add some space from the left */
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    gap: 20px; /* Increase gap between the buttons */
    margin-right: 20px; /* Keep some space from the right edge */
}

/* App Store Button */
.footer-buttons .app-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* For spacing between the logo and text */
    padding: 10px 20px;
    border-radius: 10.117px;
    border: 0.5px solid #FFF;
    background: #010101;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-buttons .app-store:hover {
    background: #FFF;
    color: #010101;
}

/* Google Play Button */
.footer-buttons .play-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* For spacing between the logo and text */
    padding: 10px 20px;
    border-radius: 10.117px;
    background: #FFF;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-buttons .play-store:hover {
    background: #010101;
    color: #FFF;
}

/* Footer Content Section */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Footer Section */
.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-section h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a,
.footer-section p a {
    color: #CDCCCC;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
    color: #FFF;
}

.footer-section p {
    margin-bottom: 20px;
}

/* Location Box Styling */
.location-box {
    border: 1px solid #FFF; /* White border */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Inner padding */
    margin-bottom: 20px; /* Spacing between boxes */
    text-align: center; /* Center-align text */
    line-height: 1.6; /* Improve readability */
}

/* Responsive Adjustments for Location Box */
@media (max-width: 768px) {
    .location-box {
        max-width: 90%; /* Use 90% of the available width on smaller screens */
        padding: 15px; /* Reduce padding */
    }
}

@media (max-width: 480px) {
    .location-box {
        max-width: 100%; /* Use the full width on very small screens */
        padding: 10px; /* Further reduce padding */
    }
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
}

.separator {
    width: 100%;
    height: 1px;
    background: #878484;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px; /* Add spacing between elements */
}

.footer-info .developed-by {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #CDCCCC; /* Subtle color for non-hover state */
    transition: color 0.3s ease, font-weight 0.3s ease;
}


.footer-info .copyright {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px; /* Add spacing between social icons */
    justify-content: center; /* Center-align for consistency */
}

.social-icons .social-icon {
    width: 80px; /* Adjust size for icons */
    height: 80px;
    display: inline-block;
    background-color: transparent; /* Default white background */
    border-radius: 50%; /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #080B10; /* Default color for icons */
    font-size: 16px; /* Font size for fallback */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons .social-icon img {
    max-width: 26px; /* Adjust the size of icons */
    height: auto;
}

.social-icons .social-icon:hover {
    background-color: #e3e3e15f; /* Gold hover effect */
    color: #080B10; /* Ensure contrast on hover */
}

/* Responsive Design */

/* Tablets */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section ul li a,
    .footer-section p {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section ul li a,
    .footer-section p {
        font-size: 12px;
    }

    .footer-buttons .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .location-box {
        padding: 15px;
    }
}

  /* General Animations for Section Load */
section {
    animation: fadeInUp 1s ease-in-out;
  }
  
  /* Smooth Hover Transitions for Buttons */
  .btn, .btn-secondary {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .btn:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Animations for Hover Effects */
  .feature-item:hover, .details-item:hover, .trade-card:hover {
    transform: scale(1.05);
  }
  
  /* Testimonials Carousel Hover */
  .testimonial-item:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Contact Form Input Focus */
  .contact-form input:focus, .contact-form textarea:focus {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
  }
  
  /* Smooth Scroll for Links */
  html {
    scroll-behavior: smooth;
  }
  
  /* Keyframe Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  

  /* Trades Marquee Pause/Play Animation */
  .trades-marquee {
    animation: scroll-left 20s linear infinite;
  }
  
  .trades-marquee:hover {
    animation-play-state: paused;
  }
  
  /* Footer Hover Interactions */
  .footer-links a:hover, .footer-contact a:hover {
    color: #FFD700; /* Gold */
    text-decoration: underline;
  }

/* REUSABLE CLASSES */


/* HERO SECTION */


/* DETAILS SECTION */


/* TRADES SECTION */


/* FEATURES SECTION */


/* HOW IT WORKS SECTION */


/* APP PREVIEW SECTION */


/* FAQ SECTION */


/* TESTIMONIALS SECTION */


/* CONTACT US SECTION */


/* FOOTER SECTION */


/* GENERAL RESPONSIVE DESIGN */


/* MEDIA QUERIES */