/* General Styles */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  margin-bottom: 50px;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  font-weight: 600;
  color: #333;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #007bff;
}

nav ul li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #007bff;
  transition: width 0.3s ease;
  margin: 5px auto 0;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu .bar {
  height: 3px;
  width: 25px;
  background: #333;
  transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.open .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

nav ul.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 10px;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  width: 200px;
  gap: 15px;
  z-index: 999;
}

/* Hero Section */
.hero-section {
  height: 72vh;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  clip-path: ellipse(100% 85% at 50% 50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/internet.jpg") no-repeat center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

/* Add Shadow Beneath Hero Section */
.hero-shadow {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 50px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #0056b3;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #0056b3;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
      display: none;
  }

  .mobile-menu {
      display: flex;
  }

  .hero-section h1 {
      font-size: 2rem;
  }

  .hero-section p {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
      font-size: 1.8rem;
  }

  .hero-section p {
      font-size: 0.9rem;
  }

  .cta-btn {
      padding: 8px 20px;
      font-size: 0.9rem;
  }
}


/* Arc Divider */
.arc-divider svg {
  display: block;
  margin-top: -5px;
}


/* Service section*/

/* Services Section */
.services-section {
  background-color: #ffffff;
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Container */
.services-container {
  width: 100%;
  max-width: 1600px;
  overflow: hidden;
  position: relative;
}

/* Wrapper to hold the animation */
.services-wrapper {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Services Grid */
.services-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide 45s linear infinite;
}

/* Individual Service Card */
.service {
  min-width: 345px;
  padding: 5px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.1); /* Thin border */
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.service:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/* Icons */
.service .icon img {
  width: 30px;
  height: 30px;
  margin-bottom: 0px;
}

/* Titles */
.service h3 {
  font-size: 0.9rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 2px;
}


/* Infinite Looping Animation */
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Duplicate the grid for smooth looping */
.services-grid::after {
  content: "";
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    animation: slide 35s linear infinite;
  }
  .services-section {padding: 15px 0;}
  .services-container {
  max-width: 345px;
  overflow: hidden;
  position: relative;
}
  .service {
    min-width: 300px;
    padding: 2px;
  }

  .service:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
  }

/* Adjust animation speed for smoother mobile experience */
  @keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}








.services-section .first-letter {
  font-size: 2em; /* Adjust size */
  font-weight: bold; /* You can adjust the weight */
  color: #003366; /* Example color */
}


/*how it works*/
.how-it-works {
  padding: 40px 0px;
  background-color: #ffffff;
  text-align: center;
}


.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.how-it-works .section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #00aaff;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}


.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.step:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.step {
  background-color: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #ccc;
  box-sizing: border-box;
  max-width: 400px; /* Optional: to control max size of each step */
}

.step-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.step p {
  font-size: 1rem;
  color: #666;
}

@media (min-width: 768px) {
  .steps {
      flex-direction: row;
      gap: 20px;
  }

  .step {
      flex: 1 1 calc(25% - 20px); /* For horizontal stacking on desktop */
  }
}






/* Custom Solutions*/
.custom-solutions {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.custom-solutions .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.custom-solutions .section-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  background-color: #fff;
  padding: 20px;
  width: 200px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 10px;
}

.service-item h3 {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

.btn-primary {
  background-color: #004085;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  display: inline-block;
  margin-top: 40px;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #0056b3;
}











/*Footer styling*/
.footer {
    background-color: #080c1d;
    color: #B0BEC5;
    padding: 25px 15px;
    position: relative;
    box-shadow: 0 -4px 10px rgba(255, 255, 255, 0.15);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #B0BEC5;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    color: #B0BEC5;
    margin: 0;
}

.footer-logo p {
    font-size: 1.0rem;
    margin: 5px 0 0;
    color: #B0BEC5;
}

.footer-social .social-icon {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 6px;
    transition: color 0.3s ease;
}

.footer-social .social-icon:hover {
    color: #1e90ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
  background-color: #080c1d;
  color: #1E90FF;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section {
  flex: 1 1 calc(25% - 20px);
  margin: 20px;
  min-width: 220px;
}

.footer-section h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #B0BEC5;
  text-transform: uppercase;
}

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

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

.footer-section ul li a {
  text-decoration: none;
  color: #B0BEC5;
  font-size: 14px;
  transition: color 0.3s, transform 0.3s;
}

.footer-section ul li a:hover {
  color: #1e90ff;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .footer-section {
      flex: 1 1 100%;
      margin: 10px 0;
  }

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

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


.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: #B0BEC5;
}

@media (min-width: 768px) {
    .footer-top {
        justify-content: space-around;
    }

    .footer-links {
        justify-content: flex-start;
        padding-left: 25px;
    }
}









/* Get a Free Quote */
.get-free-quote {
  background-color: #c9d4e9;
  color: #000000;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.get-free-quote .container {
  max-width: 600px;
  margin: 0 auto;
}

.get-free-quote .section-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.get-free-quote .section-desc {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-quote {
  background-color: #ffc107;
  color: #1d3b73;
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-quote:hover {
  background-color: #ffa000;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .get-free-quote .section-title {
      font-size: 1.5rem;
  }

  .get-free-quote .section-desc {
      font-size: 0.9rem;
  }

  .btn-quote {
      padding: 8px 20px;
      font-size: 0.9rem;
  }
}


/* Free Consultation */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

.book-consultation {
    text-align: center;
    padding: 60px 20px;
    background-color: #000000;
    color: #fff;
}

.consultation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    color: #ffda44;
}

.consultation-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.consultation-btn {
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background-color: #0056b3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.consultation-btn:hover {
    background-color: #007bff;
}

@media (max-width: 768px) {
    .consultation-title {
        font-size: 2rem;
    }

    .consultation-intro {
        font-size: 1rem;
    }
}




/*Custom */
.personalized-services .section-title {
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  color: #222222;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.personalized-services .section-description {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #555555;
  margin-bottom: 30px;
  text-align: center;
}

.personalized-services .service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.personalized-services .category {
  text-align: center;
}

.personalized-services .category-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.personalized-services .category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.personalized-services .category h3 {
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  color: #222222;
  margin-bottom: 15px;
}

.personalized-services .category ul {
  list-style: none;
  padding: 0;
}

.personalized-services .category ul li {
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #555555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.personalized-services .icon {
  font-size: 12px;
  color: #003366;
  margin-right: 5px;
}

.personalized-services .btn-custom {
  display: block;
  margin: 30px auto 0;
  background-color: #0056b3;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.personalized-services .btn-custom:hover {
  background-color: #007bff;
}
.btn-custom {
  display: block;
  background-color: #004085;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  display: inline-block;
  margin-top: 40px;
  font-size: 1rem;
}

.btn-custom:hover {
  background-color: #007bff;
}




.services-solutions {
  padding: 80px 20px;
  background: linear-gradient(to bottom right,  #f9f9f9);
  text-align: center;
}

.services-solutions .container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-solutions .section-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.services-solutions .section-description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 50px;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-category {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.service-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-category h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  font-size: 1em;
  color: #555;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .services-solutions {
      padding: 60px 10px;
  }
  
  .service-category {
      padding: 20px;
  }
}































.digital-partner {
  background: linear-gradient(to right, #f7f7f7, #ffffff);
  text-align: center;
  padding: 100px 20px;
}
.digital-partner h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.digital-partner p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.digital-partner .cta-button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
}








.selling-points {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.selling-points-container {
  max-width: 1200px;
  margin: 0 auto;
}

.selling-points-table h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.selling-points-table .col {
  display: inline-block;
  width: 30%;
  margin: 15px 1.5%;
  text-align: center;
}

.selling-points-table .col i {
  font-size: 3em;
  color: #003366;
  margin-bottom: 15px;
}

.selling-points-table .col p {
  font-size: 1em;
  color: #555;
}

@media (max-width: 768px) {
  .selling-points-table .col {
    width: 45%;
    margin: 10px 2.5%;
  }
}

@media (max-width: 480px) {
  .selling-points-table .col {
    width: 90%;
    margin: 10px 5%;
  }
}














/* About Section Scoped Styles */
/* General Section Styling */
.what-we-do {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.what-we-do .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #002855;
  position: relative;
  margin-bottom: 1rem;
}

.what-we-do .section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #00aaff;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}

.what-we-do .section-intro {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Objective Card Styling */
.objective-card {
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.objective-card .icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.objective-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #002855;
  margin-bottom: 0.5rem;
}

.objective-card p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .what-we-do {
    padding: 2rem 1rem;
  }

  .what-we-do .section-title {
    font-size: 1.75rem;
  }

  .objective-card {
    padding: 1.5rem;
  }

  .objective-card h3 {
    font-size: 1.1rem;
  }

  .objective-card p {
    font-size: 0.9rem;
  }
}


/* About Intro Section Styles */
/* Home About Section */
.home-about-intro {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Two-Column Layout */
.home-about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
}

/* Left Side - Text Content */
.home-about-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.home-about-title {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
}

.home-about-title-line {
  width: 60px;
  height: 4px;
  background-color: #1E90FF; /* Perfect Blue */
  margin: 10px 0;
  
}

.home-about-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-about-link {
  display: inline-block;
  padding: 12px 24px;
  background: #0056b3;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.home-about-link:hover {
  background: #1E90FF;
}

/* Right Side - Image Card */
.home-about-image-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

.about-us-image {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-us-image:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-about-container {
    flex-direction: column;
    text-align: left;
  }

  .home-about-image-card {
    order: 1; /* Image on top for mobile */
  }
}

/* About Section Scoped Styles */
.about-section {
  padding: 4rem 1.5rem;
  background-color: #f9f9f9; /* Light neutral background for a clean aesthetic */
}

.about-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-section__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-section__text {
  flex: 1 1 50%;
  color: #4b5563; /* Muted dark gray for text */
  font-family: 'Inter', sans-serif; /* Clean and modern font */
  line-height: 1.75;
  font-size: 1.1rem;
}

.about-section__title {
  font-size: 1.25rem; /* Slightly larger for a bold statement */
  font-weight: 800;
  color: #003366; /* Premium blue for a standout headline */
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif; /* Premium headline font */
}

.about-section__paragraph {
  margin-bottom: 1.5rem;
  font-weight: 400; /* Lighter weight for a minimalist feel */
}

.about-section__image {
  flex: 1 1 50%;
  text-align: center;
}

.about-section__image img {
  max-width: 50%;
  border-radius: 1.5rem;
 transition: transform 0.3s ease;
}

.about-section__image img:hover {
  transform: scale(1.05); /* Slight hover effect for a dynamic feel */
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section__content {
    flex-direction: column;
    text-align: center;
  }

  .about-section__text,
  .about-section__image {
    flex: 1 1 100%;
  }

  .about-section__title {
    font-size: 1.25rem; /* Adjusted for smaller screens */
  }

  .about-section__paragraph {
    font-size: 1rem;
  }
}






/* Meet the Team Section Styling */
/* Meet the Team Section Styling */
.meet-the-team {
  padding: 4rem 2rem;
  background-color: #f4f5fa;
  text-align: center;
}

.meet-the-team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.meet-the-team .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #002c4b;
  margin-bottom: 1rem;
  position: relative;
}

.meet-the-team .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0074d9;
  margin: 0.5rem auto 2rem;
  border-radius: 3px;
}

.meet-the-team .section-intro {
  font-size: 1rem;
  color: #5a6470;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

/* Team Card Styling */
.team-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-image-container {
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #0074d9;
}

.team-content {
  padding: 1.5rem;
}

.team-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #002c4b;
  margin-bottom: 0.5rem;
}

.team-content .role {
  font-size: 1rem;
  color: #0074d9;
  margin-bottom: 1rem;
}

.team-content .bio {
  font-size: 0.9rem;
  color: #5a6470;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1500px) {
  .meet-the-team {
    padding: 2rem 1rem;
  }

  .team-photo {
    height: 200px;
  }

  .team-content h3 {
    font-size: 1.2rem;
  }

  .team-content .bio {
    font-size: 0.85rem;
  }
}



/* General Styling for Page Intros */
.page-intro {
  padding: 4rem 2rem;
  background: #0a0f24; /* Light Gray Background */
  text-align: center;
  position: relative;
}

.page-intro .intro-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f8f9fa; /* Dark Navy */
  margin-bottom: 1rem;
}

.page-intro .intro-subtitle {
  font-size: 1rem;
  color: #fff; /* Muted Gray */
  margin-bottom: 2rem;
  line-height: 1.6;
}

.page-intro .intro-accent {
  width: 80px;
  height: 4px;
  background: #0074d9; /* Blue Accent */
  margin: 0 auto;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-intro {
    padding: 2rem 1rem;
  }

  .page-intro .intro-title {
    font-size: 2rem;
  }

  .page-intro .intro-subtitle {
    font-size: 0.9rem;
  }
}














/* Freelance & Partnership Section */
.freelance-partnership-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.freelance-partnership-section .container {
  max-width: 1200px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-wrapper img:hover {
  transform: scale(1.03);
}

.content-wrapper {
  padding-left: 30px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.key-points {
  list-style: none;
  padding: 0;
}

.key-points li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.key-points img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.key-points span {
  font-size: 16px;
  color: #444;
  font-weight: 500;
}

@media (max-width: 991px) {
  .content-wrapper {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
  
  .key-points li {
    justify-content: center;
  }
}








/* Portfolio Section */
.portfolio-section {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

/* Section Title */
.portfolio-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Portfolio Filter Wrapper */
.portfolio-filter-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 30px;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1); /* Tiny shadow line */
}

/* Fade Indicators for Scroll */
.portfolio-filter-wrapper::before,
.portfolio-filter-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.portfolio-filter-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.portfolio-filter-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Portfolio Filter - Scrollable on Mobile */
.portfolio-filter {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  justify-content: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Webkit browsers */
.portfolio-filter::-webkit-scrollbar {
  display: none;
}

/* Filter Buttons */
.filter-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #f1f1f1;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  min-width: 140px; /* Uniform button width */
}

.filter-btn:hover,
.filter-btn.active {
  background: #002d5a;
  color: #fff;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.portfolio-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px;
  font-size: 0.9rem; /* Smaller font size */
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(10px);
}

/* Show Overlay on Hover */
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-filter-wrapper {
    margin: 0 auto;
    max-width: 95%;
  }

  .portfolio-filter {
    justify-content: flex-start;
  }

  .filter-btn {
    font-size: 13px;
    min-width: 120px;
    padding: 8px 14px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}















/* FAQ Section Styling */
.faq-section {
  background: #f9f9f9;
  color: #111;
  padding: 50px 20px;
  text-align: center;
}

/* Title */
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Search Bar */
.faq-search {
  width: 100%;
  max-width: 450px;
  padding: 12px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  color: #333;
  font-size: 1rem;
  margin-bottom: 20px;
  border-radius: 25px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.faq-search:focus {
  border-color: #000;
  background: #fff;
}

/* FAQ Categories - Scrollable Tab Bar */
.faq-categories-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 20px auto;
  overflow: hidden;
}

/* Fading Effect for Scroll */
.faq-categories-wrapper::before,
.faq-categories-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.faq-categories-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.faq-categories-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 2px solid #eee;
  justify-content: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Webkit browsers */
.faq-categories::-webkit-scrollbar {
  display: none;
}

/* FAQ Category Buttons */
.faq-categories .filter-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #f1f1f1;
  color: #0b0b0b;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  min-width: 140px; /* Uniform button width */
}

/* Hover & Active States */
.faq-categories .filter-btn:hover {
  background: #002c4b;
  color: #fff;
}

.faq-categories .filter-btn.active {
  background: #002c4b;
  color: #fff;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  text-align: left;
  background: #f9f9f9;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* FAQ Question */
.faq-question {
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* Plus Icon for Expand */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}

/* Rotating Icon When Active */
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* Hover Effect */
.faq-question:hover {
  background: #002c4b;
  color: #fff;
}

/* FAQ Answer */
.faq-answer {
  padding: 15px;
  font-size: 1rem;
  display: none;
  background: #f8f8f8;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* FAQ Categories Scroll */
  .faq-categories-wrapper {
    margin: 0 auto;
    max-width: 95%;
  }

  .faq-categories {
    justify-content: flex-start;
  }

  .faq-categories .filter-btn {
    font-size: 13px;
    min-width: 120px;
    padding: 8px 14px;
  }

  /* Adjust Question Font Size */
  .faq-question {
    font-size: 1.1rem;
  }
}
















/* Terms and Conditions Section */
.terms-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px 20px;
  background: #fff;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 2px solid #333; /* Cool Blue Accent */
}

/* Headings */
.terms-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0F52BA; /* Cool Blue */
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}

/* Paragraphs */
.terms-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
  font-weight: 400;
}

/* Lists */
.terms-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.terms-content ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(15, 82, 186, 0.05);
  transition: 0.3s ease;
}

.terms-content ul li:hover {
  background: rgba(15, 82, 186, 0.1);
}

/* Custom Tick Icon */
.terms-content ul li::before {
  content: "✔";
  font-size: 1rem;
  color: #0F52BA;
  font-weight: bold;
  margin-right: 10px;
}

/* Links */
.terms-content a {
  color: #0F52BA;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.terms-content a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-container {
      padding: 30px 15px;
  }

  .terms-content h2 {
      font-size: 1.2rem;
  }

  .terms-content p,
  .terms-content ul li {
      font-size: 0.95rem;
  }
}



/* Privacy Policy Section */
.privacy-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px 20px;
  background: #fff;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 2px solid #333; /* Cool Blue Accent */
}

/* Headings */
.privacy-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0F52BA; /* Cool Blue */
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}

/* Paragraphs */
.privacy-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #444;
  font-weight: 400;
}

/* Lists */
.privacy-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.privacy-content ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(15, 82, 186, 0.05);
  transition: 0.3s ease;
  position: relative;
}

/* Custom Tick Icon (Only for relevant items) */
.privacy-content ul li::before {
  content: "✔"; /* Single Checkmark */
  font-size: 1rem;
  color: #0F52BA;
  font-weight: bold;
  margin-right: 10px;
}

/* Exclude checkmarks from non-bullet sections */
.privacy-content ul li strong::before {
  content: none; /* Prevent double ticks on labeled items */
}

/* Links */
.privacy-content a {
  color: #0F52BA;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-container {
      padding: 30px 15px;
  }

  .privacy-content h2 {
      font-size: 1.2rem;
  }

  .privacy-content p,
  .privacy-content ul li {
      font-size: 0.95rem;
  }
}










/* General Section Styling */
/* General Section Styling */
.partners {
  background: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #002855;
  margin-bottom: 20px;
}

.partners .section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #00aaff;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}

/* Testimonial Section */
.testimonial-section {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}

/* Partner Logos Row */
.testimonial-logo-container {
  display: flex;
  justify-content: center;
  background: #f9f9f9;
  gap: 35px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 10px;
}

.testimonial-partner-logo {
  max-width: 100px; /* Prevents stretching */
  max-height: 60px; /* Ensures consistent height */
  object-fit: contain; /* Maintains aspect ratio */
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Testimonial Wrapper */
.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Testimonial Container */
.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
}

/* Individual Slide */
.testimonial-slide {
  min-width: 100%;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.testimonial-text {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Testimonial Info */
.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-logo {
  width: auto;
  max-height: 50px;
  margin-bottom: 12px;
  border-radius: 20%;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.testimonial-logo:hover {
  transform: scale(1.1);
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.testimonial-position {
  font-size: 14px;
  color: #777;
}

/* Slider Navigation Arrows */
.testimonial-wrapper .prev-btn,
.testimonial-wrapper .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(180, 179, 179, 0.1);
  color: #333;
  border: none;
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-wrapper .prev-btn {
  left: 10px;
}

.testimonial-wrapper .next-btn {
  right: 10px;
}

.testimonial-wrapper .prev-btn:hover,
.testimonial-wrapper .next-btn:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

/* Minimalist Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #555;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-slide {
      padding: 30px;
  }

  .testimonial-text {
      font-size: 17px;
  }

  .testimonial-wrapper .prev-btn,
  .testimonial-wrapper .next-btn {
      width: 40px;
      height: 40px;
      font-size: 20px;
  }

  .testimonial-partner-logo {
      max-width: 90px;
      max-height: 55px;
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
      padding: 25px;
  }

  .testimonial-text {
      font-size: 16px;
  }

  .testimonial-wrapper .prev-btn,
  .testimonial-wrapper .next-btn {
      width: 38px;
      height: 38px;
      font-size: 18px;
  }

  .testimonial-partner-logo {
      max-width: 85px;
      max-height: 50px;
  }
}

@media (max-width: 480px) {
  .testimonial-slide {
      padding: 20px;
  }

  .testimonial-text {
      font-size: 15px;
  }

  .testimonial-name {
      font-size: 15px;
  }

  .testimonial-position {
      font-size: 12px;
  }

  .dot {
      width: 8px;
      height: 8px;
  }

  .testimonial-wrapper .prev-btn,
  .testimonial-wrapper .next-btn {
      width: 35px;
      height: 35px;
      font-size: 18px;
  }

  .testimonial-partner-logo {
      max-width: 75px;
      max-height: 45px;
  }
}









/* Expertise Section */
.expertise-section {
  background: #f8f9fc;
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* Expertise Title */
.expertise-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

/* Expertise Description */
.expertise-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 750px;
  line-height: 1.6;
  margin: 0 auto;
}

/* Cards Container */
.expertise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; /* Reduced spacing */
  max-width: 1200px;
  width: 100%;
}

/* Card */
.expertise-card {
  background: #ffffff;
  border: 2px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}

.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

/* Card Content */
.card-content {
  padding: 20px;
}

.expertise-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.expertise-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.expertise-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 25px;
  color: #fff;
  background: #0d4378;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.expertise-btn:hover {
  background: #0056b3;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .expertise-title {
      font-size: 2rem;
  }
  .expertise-description {
      font-size: 1rem;
  }
  .expertise-cards {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 10px;
  }
  .expertise-card {
      max-width: 300px;
  }
}

@media (max-width: 768px) {
  .expertise-title {
      font-size: 1.8rem;
  }
  .expertise-description {
      font-size: 0.95rem;
      margin-bottom: 30px;
  }
  .expertise-cards {
      grid-template-columns: 1fr;
      gap: 12px;
  }
  .expertise-card {
      max-width: 100%;
  }
}







.it-backbone {
  background: #f8f9fc; /* Light background for a premium look */
  color: #222; /* Dark text for readability */
  padding: 30px 5%;
  text-align: center;
}

.it-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.it-subtitle {
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 20px;
  color: #555;
  line-height: 1.6;
}

/* Grid Layout */
.it-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  margin-top: 20px;
}

/* Item Styling */
.it-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 15px 20px;
  border-radius: 10px;
  background: #f9f9f9;
  border: 2px solid #ddd;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.it-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Image Styling */
.it-image img {
  width: 50px;
  height: 50px;
  filter: brightness(0.7);
}

/* Text Styling */
.it-text h3 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 5px;
}

.it-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Minimalist Green Accent on Hover */
.it-item:hover h3 {
  color: #008a3e; /* Premium green brand color */
}

.it-item:hover p {
  color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .it-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }

  .it-item {
      flex-direction: column;
      text-align: center;
  }

  .it-image img {
      width: 65px;
      height: 65px;
  }
}

@media (max-width: 600px) {
  .it-title {
      font-size: 2rem;
  }

  .it-subtitle {
      font-size: 1.1rem;
  }

  .it-image img {
      width: 60px;
      height: 60px;
  }
}






/* General Section Styling */
.company-story {
  background: #f8f9fb; /* Light background for premium feel */
  color: #1a1a1a; /* Dark text for readability */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif; /* Modern premium font */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title Styling */
.story-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #141414;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Paragraph Styling */
.story-text {
  font-size: 1.3rem;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #444;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s ease-out forwards;
}

/* Grid Layout */
.story-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  gap: 25px;
}

/* Individual Story Item */
.story-item {
  flex: 1 1 calc(33.333% - 20px);
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.story-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

/* Story Headings */
.story-heading {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Story Descriptions */
.story-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Mission Section */
.story-mission {
  margin-top: 50px;
  padding: 40px;
  background: #eef6ff; /* Soft blue to differentiate */
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.1s ease-out forwards;
}

/* Call to Action Button */
.story-cta {
  margin-top: 40px;
}

.story-btn {
  display: inline-block;
  background: #0056b3; /* Brand-aligned blue */
  color: white;
  padding: 14px 32px;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
}

.story-btn:hover {
  background: #003d80;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .story-grid {
      flex-direction: column;
      align-items: center;
  }

  .story-item {
      flex: 1 1 100%;
      max-width: 500px;
  }

  .story-title {
      font-size: 2.5rem;
  }

  .story-text {
      font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .story-title {
      font-size: 2.2rem;
  }

  .story-text {
      font-size: 1.1rem;
  }

  .story-btn {
      font-size: 1rem;
      padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .story-title {
      font-size: 2rem;
  }

  .story-text {
      font-size: 1rem;
  }

  .story-heading {
      font-size: 1.4rem;
  }

  .story-btn {
      font-size: 0.95rem;
      padding: 10px 24px;
  }
}

















/* Join Us Section */
.join-us {
  background: #f8f9fa; /* Light premium background */
  padding: 50px 0;
  text-align: center;
  color: #0a0f24; /* Dark text */
}

/* Container */
.join-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title & Subtitle */
.join-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #0a0f24;
}

.join-subtext {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #4a4a4a; /* Softer contrast */
}

/* CTA Button */
.join-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0a0f24; /* Premium dark blue */
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.join-btn:hover {
  background: #1a237e;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .join-title {
      font-size: 2.2rem;
  }

  .join-subtext {
      font-size: 1rem;
  }

  .join-btn {
      font-size: 1rem;
      padding: 10px 20px;
  }
}






.why-choose-us {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a0f24;
  margin-bottom: 40px;
}

.why-choose-us .section-title span {
  color: #007bff; /* Brand accent color */
}

.why-choose-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.why-item {
  flex: 1;
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-icon img {
  width: 50px;
  height: 50px;
}

.why-content {
  text-align: left;
  margin-left: 15px;
}

.why-heading {
  font-size: 20px;
  font-weight: 600;
  color: #0a0f24;
  margin-bottom: 5px;
}

.why-text {
  font-size: 16px;
  color: #555;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .why-choose-row {
      flex-direction: column;
      align-items: center;
  }

  .why-item {
      width: 100%;
      max-width: 600px;
  }
}

.faq-intro {
  background: #f8f9fc; /* Light background */
  padding: 60px 20px;
  text-align: center;
}

.faq-content {
  max-width: 700px;
  margin: 0 auto;
}

.faq-title {
  font-size: 28px;
  font-weight: 600;
  color: #0a0f24; /* Dark premium color */
  margin-bottom: 15px;
}

.faq-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.faq-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0056b3; /* Perfect Blue */
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
}

.faq-btn:hover {
  background: #003f80;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
      font-size: 24px;
  }
  
  .faq-text {
      font-size: 16px;
  }
  
  .faq-btn {
      font-size: 15px;
      padding: 10px 20px;
  }
}








/* General Styling */
.dls-services {
  padding: 50px 20px;
  background: #f7f7f7;
  text-align: center;
}

.dls-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dls-services-title {
  font-size: 34px;
  font-weight: 700;
  color: #0a0f24;
  margin-bottom: 12px;
}

.dls-services-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* Grid Layout */
.dls-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Service Item */
.dls-service-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
  height: 250px;
}

.dls-service-item:hover {
  transform: translateY(-5px);
}

/* Front (Image View) */
.dls-service-front {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: opacity 0.3s ease-in-out;
}

.dls-service-front img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.dls-service-front h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #0a0f24;
}

.dls-service-front h3:hover {
  color: #14499a;
}


/* Back (Dropdown Content) */
.dls-service-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(10px);
}

.dls-service-back ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dls-service-back li {
  padding: 8px 0;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #ddd;
  width: 100%;
  text-align: center;
}

.dls-service-back li:last-child {
  border-bottom: none;
}

/* Active State */
.dls-service-item.active .dls-service-front {
  opacity: 0;
  visibility: hidden;
}

.dls-service-item.active .dls-service-back {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .dls-services-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dls-services-grid {
      grid-template-columns: 1fr;
  }
}





/* General Section Styling */
.dls-one-stop-shop {
  padding: 50px 5%;
  text-align: center;
  background: #f7f7f7;
}

.dls-shop-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.dls-shop-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Benefits Grid */
.dls-shop-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.dls-benefit-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #ddd;
}

.dls-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.dls-benefit-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 0px;
  margin-bottom: 15px;
}

.dls-benefit-item h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.dls-benefit-item p {
  font-size: 1rem;
  color: #555;
}

/* CTA Button */
.dls-shop-button {
  margin-top: 40px;
}

.dls-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  background: #0e2e4e;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dls-btn:hover {
  background: #0b446a;
}









/* General Section Styling */
.dsl-about-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 50px 5%;
  text-align: center;
}

/* Title & Subtitle */
.dsl-about-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dsl-about-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.dsl-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Card Styling */
.dsl-about-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.dsl-about-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.dsl-about-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.dsl-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.dsl-about-item:hover .dsl-about-image img {
  transform: scale(1.1);
}

/* Text Content */
.dsl-about-heading {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin: 20px 0 10px;
}

.dsl-about-text {
  font-size: 1rem;
  color: #666;
  padding: 0 20px 20px;
  line-height: 1.6;
}







/* Our Commitment Section */
.dsl-commitment {
  background: #f8f9fa;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dsl-commitment-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Content */
.dsl-commitment-content {
  flex: 1;
  min-width: 350px;
}

.dsl-commitment-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.dsl-commitment-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 600px;
}

/* Commitment Points */
.dsl-commitment-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dsl-point h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

.dsl-point p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Image Section */
.dsl-commitment-image {
  flex: 1;
  max-width: 500px;
}

.dsl-commitment-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .dsl-commitment-container {
      flex-direction: column;
      text-align: center;
  }

  .dsl-commitment-image {
      max-width: 100%;
  }
}






/* Our Commitment Section */
.dsl-objectives {
  background: #f8f9fa;
  padding: 60px 5%;
  text-align: center;
}

.dsl-objectives-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dsl-objectives-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.dsl-objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

/* Individual Card Styling */
.dsl-objectives-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  text-align: center;
  padding: 20px;
}

.dsl-objectives-item:hover {
  transform: translateY(-5px);
}

/* Image Styling */
.dsl-objectives-icon {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 15px;
}

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

/* Text Content */
.dsl-objectives-item h3 {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.dsl-objectives-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}








/* DLS Introduction Section */
.dsl-intro {
  background: linear-gradient(to right, #f9f9f9, #f7f7f7);
  color: #fff;
  padding: 50px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dsl-intro-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Text Content */
.dsl-intro-content {
  flex: 1;
  min-width: 350px;
}

.dsl-intro-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.dsl-intro-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 600px;
}

/* Highlights Section */
.dsl-intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dsl-highlight h3 {
  font-size: 1.1rem;
  color: #002855;
  font-weight: 600;
}

.dsl-highlight p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Image Section */
.dsl-intro-image {
  flex: 1;
  max-width: 560px;
}

.dsl-intro-image img {
  width: 80%;
  border-radius: 100px;
  border: 2px solid #ddd;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .dsl-intro-container {
      flex-direction: column;
      text-align: center;
  }

  .dsl-intro-image {
      max-width: 100%;
  }
}









/* Unmatched Expertise Section */
.dsl-expertise {
  background: #f9f9f9;
  color: #fff;
  padding: 50px 5%;
  text-align: center;
}

.dsl-expertise-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dsl-expertise-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #002c4b;
}

.dsl-expertise-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Expertise Grid */
.dsl-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

.expertise-item {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #ddd;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.expertise-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.expertise-item h3 {
  font-size: 1.2rem;
  color: #002c4b;
  margin-bottom: 10px;
}

.expertise-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Hover Effect */
.expertise-item:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 900px) {
  .dsl-expertise-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
}











/* Unmatched Expertise Section */
.dsl-expertise1 {
  background: #f9f9f9;
  color: #fff;
  padding: 50px 5%;
  text-align: center;
}

.dsl-expertise1-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dsl-expertise1-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.dsl-expertise1-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Expertise Grid */
.dsl-expertise1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}

.expertise1-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid #ccc;
}

.expertise1-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: cover;
}

.expertise1-item h3 {
  font-size: 1.2rem;
  color: #002c4b;
  margin-bottom: 15px;
}

.expertise1-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Hover Effect */
.expertise1-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px rgba(0, 76, 255, 0.3);
  border-color: #000;
}

/* 🔹 RESPONSIVE DESIGN 🔹 */
@media (max-width: 1024px) {
  .dsl-expertise1-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
      gap: 30px;
  }
}

@media (max-width: 768px) {
  .dsl-expertise1-grid {
      grid-template-columns: 1fr; /* 1 column on mobile */
      gap: 20px;
  }
  
  .dsl-expertise1-title {
      font-size: 2.2rem;
  }

  .dsl-expertise1-text {
      font-size: 1.1rem;
  }
}




























/* General Styling */
.pricing-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* Table Styling */
.table-wrapper {
  overflow-x: auto; /* Enables horizontal scroll for mobile */
}

table {
  width: 100%;
  min-width: 1000px; /* Ensures table does not shrink too much */
  border-collapse: collapse;
  background: #f9f9fb;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Table Header */
th {
  background: #0a0f24;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px;
  text-align: left;
}

.pricing-section .pricing-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #00aaff;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}

/* Price Styling */
.price {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
  color: #f8d210;
}

/* Table Cells */
td {
  color: #333;
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

/* Recommended Column Highlight */
.recommended {
  background: #0e1e2f;
  color: white;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  table {
      min-width: 1000px; /* Keeps table scrollable on small screens */
  }
}



.custom-request {
  text-align: center;
  margin-top: 20px;
}
.btn-custom {
  background: #0056b3;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}
.btn-custom:hover {
  background: #007bff;
}



iframe {
  width: 100%;
  height: 0px; /* Adjust height as needed */
  border: none;
  overflow: hidden;
}




/* Feature Comparison Section */
#comparison {
  background-color: #f8f9fa;
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Table Wrapper for Smooth Scrolling on Mobile */
.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
}

/* Feature Comparison Table Styling */
.feature-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.feature-table thead {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

.feature-table th, .feature-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
  white-space: nowrap;
}

.feature-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.feature-table tbody tr:hover {
  background-color: #e9ecef;
}

/* Responsive Design: Ensures Table Doesn't Break on Mobile */
@media screen and (max-width: 768px) {
  .table-wrapper {
      overflow-x: auto;
  }

  .feature-table th, .feature-table td {
      font-size: 14px;
      padding: 10px;
  }
}

/* Custom Button */
.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}







/* Add-On & Customization Section */
#add-ons {
  background-color: #f8f9fa;
  padding: 40px 20px;
  border-radius: 10px;
  border: 2px solid #c7c7c7;
}

/* Table Wrapper for Smooth Scrolling on Mobile */
.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
}

/* Add-On Feature Table Styling */
.add-on-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.add-on-table thead {
  background-color: #28a745;
  color: white;
  font-weight: bold;
}

.add-on-table th, .add-on-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
  white-space: nowrap;
}

.add-on-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.add-on-table tbody tr:hover {
  background-color: #e9ecef;
}

/* Responsive Design: Ensures Table Doesn't Break on Mobile */
@media screen and (max-width: 768px) {
  .table-wrapper {
      overflow-x: auto;
  }

  .add-on-table th, .add-on-table td {
      font-size: 14px;
      padding: 10px;
  }
}

/* Custom Button */
.btn-primary {
  background-color: #28a745;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #1e7e34;
}






/* Pricing Explanation Section */
.pricing-info {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.pricing-card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  color: #004a99; /* Fitting Blue */
  font-size: 1.5rem;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.payment-icon {
  width: 50px;
  height: auto;
}

.btn-primary {
  background: #004a99; /* Fitting Blue */
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background: #003570;
}






/* Pricing Benefits Section */
.pricing-benefits {
  background: #fff;
  padding: 15px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.benefit-card {
  background: #ffff;
  border-radius: 8px;
  border: 2px solid #ccc;
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card img {
  width: 60px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: #002c5f; /* Fitting Blue */
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-list {
  margin-top: 20px;
}

.feature-item {
  background: #f8f9fa;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  font-weight: 500;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: #004a99; /* Fitting Blue */
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background: #003570;
}








/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #004c97, #002c5f); /* Premium blue gradient */
  color: #fff;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-subtext {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Primary Button */
.cta-buttons .btn-primary {
  background-color: #ffcc00;
  color: #002c5f;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background-color: #e6b800;
}

/* Outline Button */
.cta-buttons .btn-outline-primary {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.cta-buttons .btn-outline-primary:hover {
  background-color: #ffcc00;
  color: #002c5f;
}

/* CTA Note */
.cta-note {
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

.cta-note a {
  color: #ffcc00;
  font-weight: bold;
}

.cta-note a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-buttons {
      flex-direction: column;
      gap: 10px;
  }
}








.pricing-faq {
  background: #f8f9fa; /* Subtle background */
  padding: 50px 20px;
  margin: 40px 0;
  border-radius: 8px;
}

.faq-heading {
  font-size: 28px;
  font-weight: 700;
  color: #000; /* Adjust to match brand */
  margin-bottom: 15px;
}

.faq-subheading {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: center;
}

.accordion-item {
  border: none;
  background: #ffffff;
  margin-bottom: 10px;
  border-radius: 6px;
}

.accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: #004aad; /* Brand’s fitting blue */
  background-color: #ffffff;
  border: none;
  border-radius: 6px;
}

.accordion-button:hover {
  background-color: #e8f0ff; /* Light blue hover effect */
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 16px;
  color: #333;
  background: #ffffff;
  border-radius: 6px;
}























.rth-process-section {
  background-color: #fefefe;
}

.section-title {
  color: #212529;
}

.process-card {
  background-color: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.step-number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto;
  background-color: #00386a; /* Fitting Blue */
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
}











.freelancer-onboarding-section {
  background-color: #f9f9f9;
}

.onboarding-card {
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.onboarding-card:hover {
  transform: translateY(-5px);
  border-color: #1d4ed8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.onboarding-card h5 {
  color: #1d1d1d;
}

.btn-primary {
  background-color: #1d4ed8;
  border: none;
}

.btn-primary:hover {
  background-color: #163db8;
}







/* Prevent Calendly modal from affecting global styles */
.modal-content {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  background: #fff;
}

.modal-header h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

.modal .btn-close {
  filter: none !important;
}

/* Ensure the Calendly widget doesn't mess up layout */
.calendly-inline-widget {
  all: initial;
  display: block;
  width: 100% !important;
  height: 700px !important;
  font-family: inherit !important;
  color: inherit !important;
}

/* Restore header button styles */
header a,
.navbar-nav .nav-link {
  text-decoration: none !important;
  color: inherit !important;
}

/* Fix footer brand font size */
footer .company-name {
  font-size: 1rem !important;
  font-weight: 600;
}

/* Prevent modal from shrinking font sizes globally */
body.modal-open {
  overflow: hidden !important;
}

/* Optional: Fix consultation modal responsiveness */
@media (max-width: 768px) {
  .modal-dialog.modal-xl {
    width: 100% !important;
    margin: 0;
  }

  .modal-body {
    padding: 1rem;
  }
}





.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}





/* OPTIONAL — scoped enhancements only */
.hero-section .hero-content h1 {
  font-size: 2rem;
  line-height: 1;
}

.hero-section .cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.5rem;
}

.hero-shadow {
  /* visual effect only if used */
}



/* Override default link style for service titles */
.services-section .service a {
  all: unset; /* removes all default styles, including color, underline, etc. */
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}

.services-section .service a:hover,
.services-section .service a:focus {
  color: #0054c3; /* Optional hover effect color */
  text-decoration: underline; /* Optional hover effect */
}









.stats-section {
  background: linear-gradient(to bottom right, #f9f9f9, #f1f3f5);
  padding: 60px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-box {
  flex: 1 1 200px;
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: 600;
  color: #1f1f1f;
}

.stat-label {
  margin-top: 8px;
  font-size: 16px;
  color: #6b6b6b;
}

.stat-value {
  font-size: 1.8rem;
  color: #222;
  transition: all 0.3s ease-in-out;
}


/* Responsive: 2 columns on small screens */
@media (max-width: 768px) {
  .stats-container {
    gap: 30px 20px;
    justify-content: center;
  }

  .stat-box {
    flex: 0 1 calc(50% - 20px); /* Two per row */
  }
}





/* Minimal CSS to ensure layout works */
  .book-consultation {
    padding: 3rem 1rem;
    text-align: center;
    background: #000000;
  }

  .consultation-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .consultation-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
  }

  .consultation-btn {
    padding: 0.75rem 1.5rem;
    background-color: #0057d9;
    color: #fff;
    border: none;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .consultation-btn:hover {
    background-color: #003f9a;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .modal-content {
    background: white;
    margin: 5% auto;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.3s ease;
  }

  .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
  }

  .iframe-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 700px) {
    .modal-content {
      margin-top: 20%;
    }

    .consultation-title {
      font-size: 1.46rem;
    }

    .consultation-intro {
      font-size: 1rem;
    }
  }

  .fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }





  .footer-logo-img {
    max-width: 150px;
    height: 38px;
    display: block;
  }
  







  /* Layout Container */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Each Step Card */
.step {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
}

/* Icon Styling */
.step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* Text Styling */
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step p {
  font-size: 1rem;
  color: #555;
}

.it-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
}



















/* Learn More Button */
.btn.btn-custom {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background-color: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.btn.btn-custom:hover,
.btn.btn-custom:focus {
  background-color: #005fa3;
  color: #fff;
  outline: none;
}

/* Scroll-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive text alignment for smaller screens */
@media (max-width: 480px) {
  .it-text h3 {
    font-size: 1rem;
  }
  .it-text p {
    font-size: 0.9rem;
  }
}

















.dsl-expertise1-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.dsl-expertise1-text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.expertise1-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.expertise1-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  padding: 0 1rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .dsl-expertise1-title {
    font-size: 1.5rem;
  }

  .expertise1-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .expertise1-item p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}







/* Section Title & Subtitle */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.it-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

/* Partner Logos */
.testimonial-logo-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.testimonial-partner-logo {
  height: 50px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.testimonial-partner-logo:hover {
  filter: none;
  opacity: 1;
}





/* Mobile Responsiveness */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }
}








.dls-service-cards .section-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-color, #222);
}

.dls-service-cards .section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--subtext-color, #666);
}



.dls-service-cards {
  padding: 2rem 2rem;
  background-color: #f4f5fa;
}

.service-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  border: 2px solid #ccc;
  flex: 1 1 calc(25% - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-icon img {
  width: 30px;
  height: 30px;
  margin-bottom: 0.8rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111;
}

.card-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #f0f0f0;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  width: fit-content;
  transition: background-color 0.2s ease;
}

.learn-more-btn:hover {
  background-color: #e0e0e0;
}

.card-illustration img {
  width: 100%;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 1 1 100%;
  }
}











/* Default Light Mode Styles */
.join-us {
  background-color: #f9f9f9;  /* or your intended light background */
  color: #111;                /* default text color */
}

.join-btn {
  background-color: #111;
  color: #fff;
  transition: background 0.3s;
}

/* Dark Mode (Optional) */
@media (prefers-color-scheme: dark) {
  .join-us {
    background-color: #111;
    color: #f0f0f0;
  }

  .join-btn {
    background-color: #00d084;
    color: #111;
  }
}



.aboutus-standalone {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  padding: 60px 20px;
  color: #111;
}

.aboutus-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  align-items: center;
}

.aboutus-label {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.aboutus-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.aboutus-subheading {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  font-weight: 500;
}

.aboutus-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.aboutus-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.aboutus-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.aboutus-features li {
  font-size: 14px;
  background-color: #f1f5f9;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.aboutus-image img {
  width: 100%;
  border-radius: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid #ccc;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .aboutus-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aboutus-heading {
    font-size: 28px;
  }

  .aboutus-title {
    font-size: 18px;
  }

  .aboutus-desc,
  .aboutus-subheading {
    font-size: 14.5px;
  }

  .aboutus-features {
    flex-direction: column;
    gap: 10px;
  }
}










.rth-expertise {
  background-color: #fefefe;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #111;
}

.rth-expertise-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rth-expertise-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #111;
}

.rth-expertise-text {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.rth-expertise-text em {
  font-style: italic;
}

.rth-expertise-text strong {
  font-weight: 600;
  color: #222;
}

.rth-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.expertise-item {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.07);
}

.expertise-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}

.expertise-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.expertise-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rth-expertise-title {
    font-size: 26px;
  }

  .rth-expertise-text {
    font-size: 15px;
    padding: 0 10px;
  }

  .expertise-item {
    padding: 25px 20px;
  }
}








.rth-about-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #111;
  font-family: 'Inter', sans-serif;
}

.rth-about-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.rth-about-title {
  font-size: 30px;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 20px;
}

.rth-about-subtitle {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #555;
  line-height: 1.7;
}

.rth-about-subtitle strong {
  color: #222;
  font-weight: 600;
}

.rth-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.rth-about-item {
  background-color: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.rth-about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.rth-about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
}

.rth-about-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0e0e0e;
}

.rth-about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.rth-about-text strong {
  color: #222;
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .rth-about-title {
    font-size: 24px;
  }

  .rth-about-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .rth-about-heading {
    font-size: 18px;
  }

  .rth-about-text {
    font-size: 14px;
  }

  .rth-about-item {
    padding: 25px 18px;
  }
}








.contact-section {
  padding: 50px 20px;
  background-color: #fff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact-header .small-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-header h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.contact-header .section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #00aaff;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}

.contact-header .subtitle {
  font-size: 16px;
  color: #555;
}







.contact-container {
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #93939a;
}

.contact-info,
.contact-form {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.contact-info {
  background: #f7f7f7;
  border-right: 1px solid #93939a;
}

.contact-info h2 {
  font-size: 24px;
  color: #1d1c1c;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 14px;
  color: #878787;
  margin-bottom: 30px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item i {
  font-size: 20px;
  color: #0d6ff0;
  vertical-align: middle;
  margin-right: 12px;
}

.info-item span {
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 14px;
  color: #f0f0f0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d68f0cc;
  outline: none;
}

.contact-form label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: #aaa;
  font-weight: bold;
}

.contact-form button {
  background: linear-gradient(135deg, #1d3b73, #0F52BA);
  border: none;
  color: white;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.contact-form button:hover {
  box-shadow: 0 0 20px rgba(0, 97, 254, 0.35);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    border-right: none;
    border-bottom: 1px solid #333;
  }
}

















.faq-intro {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.faq-text {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.faq-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #007bff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.faq-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.25);
}













.pricing-card {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
}

.btn-toggle {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #444;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  border-radius: 6px;
}

.btn-toggle:hover {
  background-color: #0056b3;
}

.list-group-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 15px;
}

.custom-quote {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

#pricingIframe {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  border: none;
  overflow: hidden;
}

@media (max-width: 768px) {
  #pricingIframe {
    height: 90vh;
  }
}












  .tech-icon {
    height: 50px;
    width: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .tech-card:hover .tech-icon {
    transform: scale(1.1);
  }

  .tech-card h6 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
  }








  #starter-pricing h2, #starter-pricing h4 {
    color: #004080;
  }
  #starter-pricing .table th,
  #starter-pricing .table td {
    vertical-align: middle;
  }
  #starter-pricing .card {
    border: none;
    border-radius: 10px;
  }
  






  .onboarding-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
  }
  .onboarding-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  










  .blog-section {
    background-color: #f9f9f9;
  }
  
  .blog-card {
    transition: transform 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-image-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .blog-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: .5rem .5rem 0 0;
  }
  
  .overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .blog-image-wrapper:hover .overlay-icon {
    opacity: 1;
  }
  
  .author-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .dot-divider::before {
    content: "•";
  }
  







  /* COMMUNITY SECTION */
.community-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.community-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1d3f75;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 50px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.community-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.community-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.community-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.btn-community {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-community:hover {
  background-color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}



#join-talent h2, #join-talent h4, #join-talent h5 {
  color: #004080;
}
#join-talent .form-control,
#join-talent .form-select {
  border-radius: 8px;
  border: 2px solid #ddd;
}
#join-talent .btn-primary {
  background-color: #004080;
  border: none;
  transition: 0.3s ease;
}
#join-talent .btn-primary:hover {
  background-color: #002f5f;
}








.showcase-section {
  padding: 60px 20px;
  max-width: 960px;
  margin: auto;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #1a1a1a;
}

.showcase-block {
  margin-bottom: 60px;
  text-align: center;
}

.showcase-block h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.showcase-block p {
  font-size: 1rem;
  color: #444;
  max-width: 720px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
}

.showcase-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.showcase-gallery img {
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.showcase-gallery img:hover {
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .showcase-gallery {
    flex-direction: column;
    gap: 15px;
  }

  .showcase-block h2 {
    font-size: 1.5rem;
  }

  .showcase-block p {
    font-size: 0.95rem;
  }
}










.cta-button {
  padding: 14px 28px;
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #2563eb;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.modal-content h2 {
  margin-top: 0;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-btn {
  background-color: #10b981;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #059669;
}










.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  margin: 5% auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content input, .modal-content textarea, .modal-content select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #10b981;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #059669;
}

.close {
  float: right;
  font-size: 28px;
  color: #888;
  cursor: pointer;
}

.close:hover {
  color: #000;
}











body {
  font-family: "Segoe UI", sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
  padding: 0;
}

.start-project {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.start-project h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.intro-text {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.project-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: 500;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #0066cc;
  outline: none;
}

.btn-submit {
  padding: 14px;
  background-color: #0066cc;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #004999;
}






.toggle-section {
  transition: all 0.3s ease-in-out;
}
#howItWorks.d-none, #applyNow.d-none {
  display: none !important;
}
.btn.active {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}












.agency-partner {
  background-color: #f9fafb;
}

.agency-partner ul li i {
  color: var(--primary, #4c6ef5);
  margin-right: 8px;
  font-size: 1.2rem;
}

.agency-partner .card {
  background: #fff;
  border-radius: 12px;
}

.agency-partner .form-control,
.agency-partner .form-select {
  border-radius: 0.5rem;
  padding: 0.75rem;
}










/* Root & Layout */
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.agency-partner-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.container {
  max-width: 1200px;
  margin: auto;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* Text Content */
.partner-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.partner-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form Styling */
.partner-form .form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.partner-form .form-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #222;
}

.form-card label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fafafa;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: #007bff;
  outline: none;
  background: #fff;
}

.form-card button {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-card button:hover {
  background-color: #0056d2;
}

.form-note {
  font-size: 0.875rem;
  color: #777;
  margin-top: 1.5rem;
  text-align: center;
}









/* ===== Root & Reset ===== */
:root {
  --primary-color: #0d6efd;
  --text-color: #212529;
  --muted-text: #6c757d;
  --bg-light: #f8f9fa;
  --border-radius: 1rem;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease-in-out;
  --max-width: 1140px;
}

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

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: var(--text-color);
  background-color: #fff;
}

/* ===== Section Styling ===== */
.project-detail-section {
  background-color: var(--bg-light);
  padding: 4rem 1rem;
}

.project-detail-section h2,
.project-detail-section h3,
.project-detail-section h4 {
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.project-detail-section p {
  color: var(--muted-text);
  font-size: 1.125rem;
}

.project-detail-section ul {
  padding-left: 1.25rem;
}

.project-detail-section ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ===== Image Styling ===== */
.project-detail-section img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.project-detail-section img:hover {
  transform: scale(1.02);
}

/* ===== Button Styling ===== */
.project-detail-section .btn {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.project-detail-section .btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.project-detail-section .btn-primary:hover {
  background-color: #084298;
  border-color: #084298;
}

.project-detail-section .btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
}

.project-detail-section .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ===== Typography Enhancements ===== */
.project-detail-section h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.project-detail-section h3,
.project-detail-section h4 {
  font-size: 1.5rem;
}

.project-detail-section ul.list-unstyled {
  list-style: none;
  padding-left: 0;
}

/* ===== Responsive Grid Adjustments ===== */
@media (min-width: 768px) {
  .project-detail-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .project-detail-section .col-lg-6 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .project-detail-section .col-md-6 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 767px) {
  .project-detail-section h2 {
    font-size: 2rem;
  }

  .project-detail-section p,
  .project-detail-section ul li {
    font-size: 1rem;
  }

  .project-detail-section img {
    margin-bottom: 1.5rem;
  }

  .project-detail-section .btn {
    width: 100%;
    padding: 0.75rem;
  }
}
