* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  background: #080808;
  color: black;
  background-image: url('image/profile.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/*------------------------------------------------------------------contactbar-----------------------------------*/
.contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00003a; /* dark blue */
  color: white;
  padding: 15px 30px; /* Increase padding for bigger height */
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px; /* Increase font size for the entire bar */
}

.contact-info {
  display: flex;
  gap: 30px; /* Increase space between elements */
  flex-wrap: wrap;
  align-items: center;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px; /* Increase gap for better visibility */
}

.contact-button {
  background-color: #ffb400; /* yellow */
  color: black;
  padding: 15px 25px; /* Larger button padding */
  font-weight: 700; /* Bold text for emphasis */
  font-size: 18px; /* Increase button text size */
  display: flex;
  align-items: center;
  gap: 12px; /* Larger gap for better spacing */
  cursor: pointer;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #e5a100;
}
/* For Tablets and Small Screens */
@media (max-width: 768px) {
  .contact-bar {
    padding: 12px 20px; /* Slightly smaller padding */
    font-size: 16px; /* Smaller font size for tablets */
  }

  .contact-info {
    gap: 15px; /* Reduce the gap between elements */
  }

  .contact-info span {
    gap: 6px; /* Adjust gap for better spacing */
  }

  .contact-button {
    padding: 12px 20px; /* Adjust padding for buttons */
    font-size: 16px; /* Smaller font size for buttons */
    gap: 10px; /* Adjust gap */
  }
}

/* Hide on Mobile */
@media (max-width: 480px) {
  .contact-bar {
    display: none; /* Hide the contact bar on mobile */
  }
}

/* Show on Tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .contact-bar {
    display: flex; /* Show the contact bar on tablet */
  }
}


#header {
  background-image: url('image/profile1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  padding: 10px 10%;
}

.logo {
  width: 50px; /* or any size you want */
  height: auto; /* keeps aspect ratio */
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}

nav ul li a::after {
  content: '';
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}

nav ul li a:hover::after {
  width: 100%;
}

.header-text {
  color: white;
  text-align: center;
  padding: 50px;
  font-family: 'Poppins', sans-serif;
}

.header-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.header-text .highlight {
  color: rgb(56, 48, 201); /* Indigo for DevMatrixLab */
}

.header-text .emphasis {
  color: #F59E0B; /* Amber for keywords */
  font-weight: 600;
}

.header-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify
}

/* ===== Responsive Media Queries ===== */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  .container {
      padding: 10px 5%;
  }

  nav ul li {
      margin: 8px 15px;
  }

  .header-text {
      padding: 40px;
  }

  .header-text h1 {
      font-size: 2.5rem;
  }

  .header-text p {
      font-size: 1rem;
      text-align: justify;
  }

  #header {
      background-image: url('image/profile1.jpg');
      background-attachment: scroll;
      background-position: center;
      background-size: cover;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .container {
      padding: 10px 3%;
  }

  nav {
      flex-direction: column;
      align-items: flex-start;
  }

  nav ul {
      width: 100%;
      padding: 10px 0;
  }

  nav ul li {
      display: block;
      margin: 10px 0;
  }

  .logo {
      width: 100px;
  }

  .header-text {
      padding: 30px 10px;
  }

  .header-text h1 {
      font-size: 2rem;
  }

  .header-text p {
      font-size: 1rem;
      line-height: 1.5;
      text-align: justify;
  }

  #header {
      background-image: url('image/profile1.jpg');
      background-attachment: scroll;
      background-position: top center;
      background-size: cover;
  }
}


/* about us*/
#about {
  padding: 60px 20px;
  text-align: center;
  background: transparent;
  background-image: url('image/profile.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#about .container {
  width: 100%;  /* full width */
  max-width: 100%; /* no limit */
  margin: 0; /* remove auto centering */
  padding: 0; /* remove inside padding */
}
#about p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: white;
  text-align: justify;
}
.about h2 {
  margin-top: 2rem;     /* Add spacing above */
  margin-bottom: 1.5rem; /* Add spacing below */
  text-align: center;   /* Center alignment */
  font-size: 2rem;      /* Adjust as needed */
  font-weight: bold;
  color: #ffffff;       /* Or your preferred color */
}

@media (max-width: 768px) {
  #about {
      background-attachment: scroll;
      padding: 40px 15px;
  }

  #about .container {
      width: 100%;
      padding: 0;
  }

  #about h2 {
      font-size: 28px;
  }

  #about p {
      font-size: 16px;
      line-height: 1.6;
      color: white;
      text-align: justify;
  }
}

#about .highlight {
    color: #007BFF;
    font-weight: bold;
}
/* --------legacy,team,industry------------*/
.about-tabs {
  background-image: url('image/profile.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #007BFF;
}

.tab-box {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tab-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 20px;
}

.tab-box.active {
  display: block;
}

/* ===== Responsive Media Queries ===== */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  .tab-buttons {
      gap: 20px;
  }

  .tab-btn {
      padding: 8px 18px;
      font-size: 15px;
  }

  .tab-box {
      padding: 15px;
  }

  .tab-box p {
      font-size: 16px;
  }

  .about-tabs {
      background-attachment: scroll; /* For smoother mobile experience */
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .tab-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
  }

  .tab-btn {
      width: 80%;
      padding: 10px;
      font-size: 14px;
  }

  .tab-box {
      padding: 15px 10px;
      max-width: 100%;
  }

  .tab-box p {
      font-size: 14px;
  }

  .about-tabs {
      background-attachment: scroll;
      background-position: top center;
  }
}
/* ------------ our services -----------*/
#services {
  padding: 30px 0;
}

.sub-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.services-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 40px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.5s, transform 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  background-color: #ff004f;
  transform: translateY(-10px);
  color: #fff;
}

.service-card i {
  margin-bottom: 20px;
}
.service-card h1 {
  margin-top: 2rem;     /* Add spacing above */
  margin-bottom: 1.5rem; /* Add spacing below */
  text-align: center;   /* Center alignment */
  font-size: 2rem;      /* Adjust as needed */
  font-weight: bold;
  color: #ffffff;       /* Or your preferred color */
}

/* ⭐ Wider and shorter icon size */
.star-icon {
  font-size: 40px;
  width: 60px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #007bff; /* Customize icon color */
}

.service-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-card a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  margin-top: auto;
  display: inline-block;
}

.service-card p {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Read more toggles */
.more-text.hidden {
  display: none;
}

.more-text.visible {
  display: block;
}

.read-more {
  color: #ff004f;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
}

.read-more:hover {
  color: #00ff99;
}

/* ===== Responsive Media Queries ===== */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  .services-list {
    gap: 30px;
  }

  .service-card {
    flex: 1 1 45%; /* 2 cards per row */
    padding: 30px;
  }

  .sub-title {
    font-size: 32px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .services-list {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    flex: 1 1 100%; /* Full width */
    padding: 25px;
  }

  .sub-title {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 11px;
  }
}


/*-- ---------------- why choose us --------- --*/
/* -------------- Why Choose Us -------------- */
#why-choose-us {
  padding: 60px 0;
}

#why-choose-us .sub-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #fff; /* Change to #000 if background is light */
  margin-bottom: 30px;
}

.choose-us-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.choose-box {
  background: #fff;
  color: #000; /* 👈 Add this line */
  padding: 40px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.5s, transform 0.5s, color 0.5s;
  text-align: center;
}

.choose-box:hover {
  background: #ff004f;
  transform: translateY(-10px);
  color: #fff;
}

.choose-box i {
  font-size: 35px;
  margin-bottom: 20px;
  color: #007bff;
}

.choose-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.choose-box p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}
@media (max-width: 768px) {
  .choose-us-content {
    flex-direction: column;
    align-items: center;
  }

  .choose-box {
    flex: 1 1 100%;
    width: 90%;
    max-width: 500px;
  }
}



  
/* ------------- portfolio --------- */
#Portfolio {
  padding: 50px 0;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.work {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.work img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s;
}

.layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), #ff004f);
  color: white;
  opacity: 0;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.work:hover .layer {
  opacity: 1;
}

.layer h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.layer p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 90%;
}

.layer a {
  margin-top: 15px;
  background: white;
  color: #ff004f;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
}

.work:hover img {
  transform: scale(1.1);
}

/* ===== Responsive Media Queries ===== */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  .work-list {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
  }

  .work img {
    height: 220px;
  }

  .layer h3 {
    font-size: 16px;
  }

  .layer p {
    font-size: 13px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .work-list {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 15px;
  }

  .work img {
    height: 200px;
  }

  .layer h3 {
    font-size: 15px;
  }

  .layer p {
    font-size: 12px;
  }
}

/*-- --------- more our services ------ ---*/
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #37bd8c;
  margin: 0;
  padding: 40px 20px;
}

h2 {
  text-align: center;
  color: #f9f2f2;
  margin-bottom: 40px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Service Card Styling */
.service-card {
  background: #37bd8c;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive Media Queries ===== */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  body {
    padding: 30px 15px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    border-radius: 14px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  body {
    padding: 25px 10px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .services-grid {
    gap: 16px;
  }

  .service-card {
    border-radius: 12px;
  }
}
  /*-----------------------------------------------------------------------------------------------------------*/
  /* Card Content Section */
  #contact {
    padding: 60px 0;
    color: white;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .contact-left,
  .contact-right {
    flex: 1;
    min-width: 300px;
    margin: 20px;
  }
  
  .contact-left p {
    margin: 10px 0;
    font-size: 16px;
  }
  
  .social-icons a {
    margin-right: 15px;
    color: white;
    font-size: 24px;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    outline: none;
  }
  
  .btn.btn2 {
    display: inline-block;
    padding: 10px 30px;
    background: #ff004f;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn.btn2:hover {
    background: #e60045;
  }
  
  .copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
  }
  
  .whatsapp-float img {
    width: 60px;
    height: 60px;
  }
  #msg{
    color: #61b752;
    margin-top: -10px;
    display: block;
  }
  
  /* ===== Responsive Media Queries ===== */
  
  /* Tablet */
  @media (max-width: 1024px) {
    #contact {
      padding: 50px 20px;
    }
  
    .contact-left,
    .contact-right {
      margin: 15px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-left,
    .contact-right {
      width: 100%;
      margin: 10px 0;
    }
  
    .social-icons a {
      font-size: 20px;
      margin-right: 10px;
    }
  
    .btn.btn2 {
      width: 100%;
      text-align: center;
    }
  
    .whatsapp-float img {
      width: 50px;
      height: 50px;
    }
  
    .copyright {
      font-size: 13px;
    }
  }
  
  /*-------------------------------------------------------------------------------------------------------------------------------*/
  .service-card:hover img {
    transform: scale(1.1);
  }
  
  /* Title */
  .service-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Hover Information */
  .service-hover-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #6c63ff;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    transition: bottom 0.4s ease;
    z-index: 2;
  }
  
  .service-card:hover .service-hover-info {
    bottom: 0;
  }
  
  /* ===== Responsive Media Queries ===== */
  
  /* Tablet */
  @media (max-width: 1024px) {
    .service-title {
      font-size: 16px;
    }
  
    .service-hover-info {
      font-size: 13px;
      padding: 16px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .service-title {
      font-size: 15px;
      text-align: center;
    }
  
    .service-hover-info {
      position: static;
      background-color: transparent;
      color: #333;
      padding: 10px 0;
      font-size: 13px;
      line-height: 1.6;
      transition: none;
    }
  
    .service-card:hover .service-hover-info {
      bottom: auto;
    }
  }
/* ------------ visa process ------------*/
body {
    font-family: 'Segoe UI', sans-serif;
    /*background-color: #f4f4f4;*/
    margin: 0;
    padding: 40px 20px;
  }

  h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #fff; /* or change to black depending on your background */
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
  }

  .service-card {
    background: #47c2a0;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-align: center;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .card-content {
    padding: 20px;
  }

  .card-content img {
    max-width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .service-title {
    font-weight: bold;
    font-size: 18px;
    color: #143c3c;
  }

  .service-hover-info {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #6c63ff;
    /*color: #fff;*/
    padding: 16px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.5;
    transition: bottom 0.4s ease;
    overflow-y: auto;
  }

  .service-card:hover .service-hover-info {
    bottom: 0;
  }

  /* Make layout responsive */
  @media (max-width: 992px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
/*--------------------------------------------projects-----------------------------------*/
/* Project Section */
#projects {
  padding: 40px 20px;
}

.projects-h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  /*color: #143c3c;*/
  margin-bottom: 40px;
  margin-top: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}

.project-card {
  background: #47c2a0;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card .card-content {
  padding: 20px;
}

.project-card img {
  max-width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-title {
  font-weight: bold;
  font-size: 18px;
  color: #143c3c;
}

.project-hover-info {
  position: absolute;
  bottom: -60%;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #6c63ff;
  color: #fff;
  padding: 16px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.5;
  transition: bottom 0.4s ease;
  overflow-y: auto;
}

.project-card:hover .project-hover-info {
  bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
/*--------------------------------------------scoller------------------------------------*/
.counter-section {
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.counter-card {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 30px 20px;
  transition: transform 0.3s;
}

.counter-card:hover {
  transform: translateY(-5px);
}

.counter-card img {
  height: 60px;
  margin-bottom: 20px;
}

.counter-number {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.counter-number::after {
  content: "+";
  font-size: 36px;
  position: absolute;
  right: -18px; /* Adjust depending on font */
  top: 0;
  line-height: 1;
}

/* ===== Responsive Media Queries ===== */

/* Tablet */
@media (max-width: 1024px) {
  .counter-section {
    padding: 50px 15px;
  }

  .counter-number {
    font-size: 30px;
  }

  .counter-number::after {
    font-size: 30px;
    right: -12px; /* Adjust for tablet view */
  }

  .counter-grid {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .counter-section {
    padding: 40px 10px;
  }

  .counter-number {
    font-size: 28px;
  }

  .counter-number::after {
    font-size: 28px;
    right: -10px; /* Adjust for mobile view */
  }

  .counter-grid {
    gap: 15px;
  }

  .counter-card {
    padding: 20px;
  }

  .counter-card img {
    height: 50px;
  }
}
/*----------------------------------------------------fnq-----------------------------------------*/
#faq {
  padding: 60px 20px;
  text-align: left;
  color: #fcf8f8;
}

#faq .container {
  max-width: 1200px;
  margin: 0 auto;
}

#faq h2 {
  text-align: center;
  font-size: 42px; /* Bigger title */
  margin-bottom: 10px;
  font-weight: 700;
}

#faq .subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 22px; /* Bigger subtitle */
  color: #4cd585;
}

.faq-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.faq-column {
  flex: 1;
  min-width: 300px;
}

.faq-column ul {
  list-style-type: disc;
  padding-left: 20px;
}

.faq-column li {
  margin-bottom: 25px;
  font-size: 20px; /* Bigger FAQ text */
  line-height: 1.6;
}

.faq-column li strong {
  font-size: 21px; /* Bigger question */
  color: #a94747;
}

/* ===== Responsive Media Queries ===== */

/* Tablet */
@media (max-width: 1024px) {
  #faq h2 {
    font-size: 36px;
  }

  #faq .subtitle {
    font-size: 20px;
  }

  .faq-column li {
    font-size: 18px;
  }

  .faq-column li strong {
    font-size: 19px;
  }

  .faq-columns {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #faq h2 {
    font-size: 30px;
  }

  #faq .subtitle {
    font-size: 18px;
  }

  .faq-column li {
    font-size: 16px;
  }

  .faq-column li strong {
    font-size: 17px;
  }

  .faq-columns {
    flex-direction: column;
    gap: 20px;
  }
}




/* ------------------------------------------- footer-------------------------------------*/

/*--------------------------------------------icons---------------------------------*/
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative; /* Needed to control absolute children */
}

nav .fas {
  display: none; /* Hidden by default */
}

/* For navigation list (ul) */
nav ul {
  background: #ff004f;
  position: fixed;
  top: 0;
  right: -200px; /* Hidden offscreen */
  width: 200px;
  height: 100vh;
  padding-top: 50px;
  z-index: 2;
  transition: right 0.3s ease;
}

nav ul li {
  display: block;
  margin: 25px;
}

/* Close icon inside sidebar */
nav ul .fas {
  position: absolute;
  top: 25px;
  left: 25px;
  cursor: pointer;
}

/* Hamburger icon */
nav i {
  color: white;
}

/* ===================== MEDIA QUERIES ===================== */

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
  nav .fas {
    display: block;
    font-size: 25px;
    position: absolute;
    top: 20px;
    right: 20px; /* <-- Push hamburger to right */
    cursor: pointer;
  }

  nav ul {
    width: 180px;
  }
}

/* Tablets (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  nav .fas {
    display: block;
    font-size: 28px;
    position: absolute;
    top: 20px;
    right: 20px; /* <-- Same: push to right */
    cursor: pointer;
  }

  nav ul {
    width: 220px;
  }
}

/* Desktop (larger than 1024px) */
@media (min-width: 1025px) {
  nav ul {
    position: static;
    width: auto;
    height: auto;
    background: none;
    display: flex;
    padding-top: 0;
    justify-content: flex-end; /* Push nav items to right */
  }

  nav ul li {
    display: inline-block;
    margin: 0 20px;
  }

  nav .fas {
    display: none; /* Hide hamburger */
  }
}