@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* =========================================General Styling================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  /* font-optical-sizing: auto; */
  line-height: 1.6;
  display: flex;
  height: 100%;
  margin: 0;
  flex-direction: column;
}

textarea {
  font-family: "Montserrat", sans-serif;
  /* font-optical-sizing: auto; */
  line-height: 1.6;
  display: flex;
  height: 100%;
  margin: 0;
  flex-direction: column;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

}

p {
  background: rgb(0, 0, 0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: justify;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #f0e6e6;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* ==========================================PreLoadPage========================================= */

#preloader {
  background: #243642;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 9999;
  /* Make sure it's above all other content */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Center the star */
  top: 0;
  left: 0;
}

.star-container-load {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
}

.animated-star-load {
  width: auto;
  height: auto;
  animation: loader 3s ease-in-out infinite;
}

/* Keyframes for the rotation animation */
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =========================================Header SECTION========================================= */
header {
  position: fixed;
  /* height: 10vh; */
  width: 100%;
  left: 0;
  z-index: 99;
  background: linear-gradient(90deg, hsla(0, 25%, 90%, 1) 0%, hsla(212, 100%, 14%, 1) 33%);
  padding: 10px;
  transition: top 0.3s ease;
}

.logo img {
  max-width: 150px;
  height: auto;
  position: relative;
}

header nav {
  width: auto;
  position: absolute;
  right: 0;
  top: 0;
  padding: 18px;
}


header nav ul {
  display: flex;
  justify-content: flex-end;
}

header nav ul li {
  padding: 15px;
}

header nav ul li a {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  overflow: hidden;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #007bff;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

header nav ul li a:hover {
  color: #007bff;
}

header nav ul li a:hover::after {
  width: 100%;
}

header nav ul li a:active {
  transform: scale(0.95);
}

header nav ul {
  flex-direction: row;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  /* left: 50%; */
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 1px solid rgb(255, 255, 255);

}

.dropdown-content {
  width: 250px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 4px;
  max-width: 100vw;
  max-height: 80vh;
  overflow-y: auto;
}

.about-dropdown {
  position: relative;
}

.about-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  /* left: 50%; */
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 1px solid rgb(255, 255, 255);

}

.about-dropdown-content {
  width: 250px;
}

.about-dropdown:hover .about-dropdown-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 4px;
  max-width: 100vw;
  max-height: 80vh;
  overflow-y: auto;
}

.column {
  width: 180px;
  margin-bottom: 20px;
}

.column h4 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.column a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.column p {
  color: grey;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-family: "Oswald", sans-serif;
}

.column a:hover {
  background: #007bff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* text-align: justify; */
}

/* Line under the active link */
header nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

header nav ul li a:hover::after {
  width: 100%;
}

.nav-mobile,
.menu-icon {
  display: none;
}

/* Responsive Design for screens below 768px */
@media (max-width: 768px) {

  /* Hide desktop navigation */
  header nav ul {
    display: none;
  }

  /* Show mobile menu icon */
  .menu-icon {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2em;
    color: white;
    cursor: pointer;
  }

  /* Mobile navigation menu */
  .nav-mobile {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: linear-gradient(90deg, hsla(0, 25%, 90%, 1) 0%, hsla(212, 100%, 14%, 1) 33%);
    padding: 20px;
    z-index: 1001;
  }

  /* Mobile menu active state */
  .nav-mobile.active {
    display: block;
  }

  /* Styling for mobile links */
  .mobile-nav-links {
    list-style: none;
    text-align: left;
    padding: 0;
  }

  .mobile-nav-links li {
    margin-bottom: 15px;
  }

  .mobile-nav-links li a {
    font-size: 16px;
    background: white;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  /* Adjust dropdown for mobile */
  .dropdown-content,
  .about-dropdown-content {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    max-height: none;
    overflow-y: visible;
    padding: 10px;
    box-shadow: none;
    border: none;
  }

  .dropdown:hover .dropdown-content,
  .about-dropdown:hover .about-dropdown-content {
    display: block;
  }

  .column {
    width: 100%;
    margin-bottom: 10px;
  }

  .column h4 {
    font-size: 16px;
  }

  .column a,
  .column p {
    font-size: 14px;
  }

  /* Adjust logo size for mobile */
  .logo img {
    max-width: 100px;
  }

  /* Ensure header padding is consistent */
  header {
    padding: 10px;
  }
}

/* Responsive Design for screens below 768px */
@media (max-width: 768px) {

  /* Submenu styling */
  .submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .submenu.active {
    display: block;
  }

  /* Submenu items styling */
  .submenu li {
    margin-bottom: 10px;
  }

  .submenu li a {
    font-size: 16px;
    /* Adjust font size for better readability */
    background: white;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    /* Add padding for better touch targets */
    border-radius: 4px;
    /* Rounded corners for a modern look */
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  /* Back arrow styling */
  .back-arrow {
    display: none;
    font-size: 18px;
    /* Slightly larger font size for the back arrow */
    cursor: pointer;
    margin-bottom: 15px;
    color: #fff;
    padding: 8px 15px;
    /* Match padding with submenu items */
    border-radius: 4px;
    /* Rounded corners for consistency */
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .back-arrow.active {
    display: block;
  }

  /* Adjust mobile menu items when submenu is active */
  .mobile-nav-links.active {
    display: none;
  }
}

/* =============================================Home Section====================================== */


#home {
  height: 75vh;
  background-image: url('IMAGE/back.PNG');
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply Animation to Home Section */
#home .home-content h2,
#home .home-content p {
  animation: fadeInUp 1.5s ease-out;
}

#home .home-content h2 {
  animation-delay: 1s;
  font-size: 50px;
  font-weight: bold;
  color: #00c8ff;
  text-shadow:
    2px 2px 0 rgb(255, 255, 255),
    2px -1px 0 rgb(38, 72, 167),
    3px -2px 0 #141414,
    2px -2px 0 #fff9f9;

}

#home .home-content p {
  animation-delay: 1s;
  text-align: center;
  font-size: 30px;
  /* Default for desktop */
  background-color: #000000;
  color: white;
  text-shadow:
    2px 2px 0 #ffffff,
    1px -1px 0 #eb2626,
    2px -2px 0 #0f0f0f,
    2px -2px 0 #f0e9e9;
}

/* General Styles */
#company-summary {
  padding: 40px 0;
  background-color: #f9f9f9;
}

#company-summary .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#company-summary h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: #213993;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.summary-content {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  justify-content: space-between;
}

.summary-image {
  flex: 1 1 45%;
  max-width: 45%;
  /* margin-right: 5%; */
}

.summary-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.summary-text {
  flex: 1 1 50%;
  max-width: 50%;
}

.summary-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.summary-text p strong{
  background: #3e60db;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.home-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #0F4C75;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-bottom: #0F4C75;
}

.home-button:hover {
  background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .summary-content {
    flex-direction: column;
  }

  .summary-image,
  .summary-text {
    flex: 1 1 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  #company-summary h2 {
    font-size: 2rem;
  }

  .summary-text p {
    font-size: 1rem;
  }

  .home-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}



/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Goals Summary Section */
#goals-summary {
  background-color: #fff;
  padding: 60px 0;
}

#goals-summary .container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

#goals-summary h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  letter-spacing: 2px;
  background: #213993;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.goals-content {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  width: 100%;
  padding-bottom: 20px;
  user-select: none;
}

.goals-content::-webkit-scrollbar {
  display: none;
}

.goal {
  flex: 0 0 auto;
  width: 20%;
  height: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  font-family: "Oswald", sans-serif;
}

.goal:hover {
  transform: translateY(5px);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
}

.goal img {
  width: 60%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.goal:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

.goal h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

.goal a {
  font-size: 1.5rem;
  color: #0077b5;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.goal a:hover {
  color: #005582;
  transform: scale(1.2);
}

/* Swipe Buttons */
.swipe-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.swipe-button {
  background-color: #0077b5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swipe-button:hover {
  background-color: #005582;
  transform: scale(1.1);
}

.goals-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* Add some space between goals */
}

.goal {
  flex: 1;
  min-width: 250px;
  /* Ensures a minimum width */
  margin: 10px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.goal h3 {
  color: #213993;
  background-color: #00A9FF;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.goal p {
  font-size: 1rem;
  color: #555;
}

/* Tablet View */
@media screen and (max-width: 768px) {
  .goals-content {
    flex-direction: row;
    /* Stack the goals vertically on tablets */
    align-items: center;
  }

  .goal {
    width: 100%;
    /* Make each goal take up full width */
    max-width: 500px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .goals-content {
    flex-direction: row;
    /* Stacks goals vertically */
  }

  .goal {
    width: 100%;
    /* Full width for mobile */
    margin-bottom: 20px;
  }

  .goal h3 {
    font-size: 1.2rem;
    /* Adjust font size for mobile */
    padding: 8px;
  }

  .goal p {
    font-size: 0.9rem;
    /* Adjust font size for mobile */
  }
}

/* Get In Touch Section */
#get-in-touch {
  padding: 60px 0;
  background-color: #f8f8f8;
}

#get-in-touch .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#get-in-touch h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  background: #213993;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.get-in-touch-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company-details {
  margin-right: 100px;
  width: 45%;
  text-align: left;
  color: #555;
}

.company-details h1 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  background: #213993;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.company-details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.company-details ul {
  list-style-type: none;
  padding: 0;
}

.company-details ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.company-details ul li strong{
  background: #3e60db;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-form {
  margin-left: 600px;
  width: 45%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #555;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.submit-btn {
  padding: 12px 20px;
  font-size: 1rem;
  color: white;
  background-color: #0F4C75;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #0056b3;
}

/* Home Button Styles */
.home-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  /* background: white; */
  border: 2px solid transparent;
  /* Initial border set to transparent */
  border-radius: 30px;
  background-clip: padding-box;
  /* Ensures background stays within border radius */
  position: relative;
  transition: all 0.3s ease;
}

/* For tablets and mobile devices */
@media (max-width: 768px) {
  #home {
    height: 60vh;
  }

  #home .home-content h2 {
    font-size: 30px;
  }

  #home .home-content p {
    font-size: 1.6rem;
  }

  .summary-content {
    flex-direction: column;
  }

  .summary-text {
    width: 100%;
    padding-right: 0;
    margin-right: 20px;
  }

  .get-in-touch-content {
    flex-direction: column;
    align-items: center;
  }

  .company-details,
  .contact-form {
    width: 100%;
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  #home {
    position: relative;
    top: 60px;
    height: 50vh;
  }

  #home .home-content h2 {
    font-size: 2rem;
  }

  #home .home-content p {
    font-size: 1rem;
  }

  #company-summary h2,
  #get-in-touch h2 {
    font-size: 2rem;
  }

  .summary-text {
    width: 100%;
    margin-bottom: 30px;
  }

  .company-details {
    margin-right: 20px;
  }

  .company-details h3 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.9rem;
  }
}

/* Get In Touch Section Adjustments for Mobile */
@media (max-width: 768px) {
  .get-in-touch-content {
    flex-direction: column;
    align-items: center;
  }

  .company-details,
  .contact-form {
    width: 90%;
    /* Reduce the width to make it smaller */
    margin-bottom: 20px;
    /* Add some space between sections */
  }

  .company-details h3 {
    font-size: 1.5rem;
    /* Adjust font size for mobile */
  }

  .company-details p,
  .company-details ul li {
    font-size: 0.9rem;
    /* Reduce text size for mobile */
  }

  .form-group label {
    font-size: 0.9rem;
    /* Adjust label font size */
  }

  .form-group input {
    padding: 8px;
    /* Reduce padding inside input fields */
    font-size: 0.9rem;
    /* Reduce font size inside input fields */
  }

  .submit-btn {
    padding: 10px 15px;
    /* Adjust button padding */
    font-size: 0.9rem;
    /* Adjust button font size */
  }
}


/* =====================================Services Section=================================== */

#services {
  padding: 200px 0;
}

.services-layout {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  padding: 0 10vh;
}

.services-list {
  width: 25%;
  height: 1%;
  position: sticky;
  top: 100px;
  margin-right: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-list h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  background-color: #213993;
}

.services-list ul {
  list-style: none;
  padding: 0;
}


.services-list ul li {
  margin-bottom: 15px;
}

.services-list ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-list ul li a:hover {
  color: #3e60db;
}

.services-list ul li a.active {
  color: #3e60db;
  font-weight: bold;
}

.service-details {
  width: 75%;
}

.service-item {
  margin-bottom: 40px;
  display: none;
}

.service-item h2 {
  font-size: 30px;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  text-align: justify;
}

.service-item ul li {
  font-size: 20px;
  color: #666;
  margin-bottom: 12px;
}

.service-details .service-item h2 {
  background-color: #213993;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.service-details .service-item p strong {
  background-color: #3e60db;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.service-details .service-item ul li strong {
  background-color: #3e60db;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media screen and (max-width: 768px) {
  #services {
    padding: 100px 0;
  }

  .services-layout {
    flex-direction: column;
    padding: 0 5vh;
  }

  .services-list {
    width: 100%;
    position: static;
    top: auto;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 15px;
  }

  .services-list h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .services-list ul li {
    margin-bottom: 10px;
  }

  .services-list ul li a {
    font-size: 16px;
  }

  .service-details {
    width: 100%;
  }

  .service-item {
    margin-bottom: 30px;
  }

  .service-item h2 {
    font-size: 24px;
    text-align: center;
  }

  .service-item p {
    font-size: 16px;
    line-height: 1.6;
  }

  .service-item ul li {
    font-size: 16px;
  }

  .service-details .service-item h2 {
    padding: 8px;
  }

  .service-details .service-item p strong,
  .service-details .service-item ul li strong {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .desktop-services {
    display: none; /* Hide the original service list */
  }

  .dropdown {
    display: block; /* Show the dropdown */
  }

  .dropdown-selected {
    background: #ffffff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-options {
    position: absolute;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
  }

  .dropdown-options li {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-options li:last-child {
    border-bottom: none;
  }

  .dropdown-options li a {
    color: #000000;
    text-decoration: none;
    display: block;
  }

  .dropdown-options li a:hover {
    background-color: #f0f0f0;
  }
}

.dropdown-header, .dropdown-list{
  display: none;
}



@media screen and (max-width: 768px) {
  .pc-items li{
    display: none;
  }

  .dropdown {
    position: relative;
    cursor: pointer;
  }
  
  .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 10px;
    /* border-radius: 5px; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  }
  
  .dropdown-list {
    display: none;
    position: absolute;
    background: #ffffff;
    /* border-radius: 5px; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    margin-top: 5px;
    z-index: 10;
  }
  
  .dropdown-list li {
    padding: 10px;
  }
  
  .dropdown-list li a {
    color: #000000;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-list li a:hover {
    background-color: #f0f0f0;
  }
  
  .dropdown.active .dropdown-list {
    display: block;
  }
  .services-list {
    width: 100%;
    position: static;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 15px;
  }

  .dropdown {
    display: block;
  }

  .dropdown-header {
    font-size: 16px;
  }

  .dropdown-list {
    display: none; /* Initially hidden */
  }
}



/* =========================================About Section================================ */
/* Section Styling */
#about-us,
#about-team,
#vision,
#about-commit,
#about-Milestone {
  padding: 50px 10vh;
  padding-top: 10%;
  background: white;
}

.about-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#goals {
  margin-bottom: 0;
}

.about-container h2 {
  font-size: 36px;
  margin-bottom: 15px;
  text-align: center;
  background: #213993;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

}

.about-container strong {
  background: #3e60db;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

}

.about-container p {
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.about-container #goal {
  margin: 0;
}

.about-container ul.goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-container ul.goals-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.about-container ul.goals-list li:before {
  content: "✔";
  color: #007bff;
  position: absolute;
  left: 0;
  top: 0;
}

/* Content Layout */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.content .text {
  flex: 1;
  order: 1;
}

.content .image {
  flex: 1;
  order: 2;
  text-align: center;
}

.content .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Alternate Image Placement */
#about-team .content .image,
#goals .content .image {
  order: 1;
}

#about-team .content .text,
#goals .content .text {
  order: 2;
}

/* Add subtle animation for fade-in effect */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.goals-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  margin-top: 20px;
}

.Our-goal {
  position: relative;
  width: 200px;
  height: 150px;
  background: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Our-goal:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.Our-goal strong {
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.Our-goal:hover strong {
  opacity: 0;
}

.goal-detail {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #002147;
  color: #fff;
  font-size: 14px;
  padding: 15px;
  text-align: center;
  transform: translateY(0);
  transition: bottom 0.4s ease-in-out;
}

.Our-goal:hover .goal-detail {
  bottom: 0;
}

/* ===== Responsive Adjustments ===== */

/* Tablet and Mobile Adjustments */
@media (max-width: 1024px) {
  section h2 {
    font-size: 28px;
  }

  section p {
    font-size: 15px;
    line-height: 1.5;
  }

  .content {
    flex-direction: column;
    gap: 40px;
  }

  .content .text {
    text-align: center;
    order: 2;
  }

  .content .image {
    order: 1;
  }
}

@media (max-width: 768px) {
  section h2 {
    font-size: 26px;
  }

  section p {
    font-size: 14px;
    line-height: 1.4;
  }

  #about-us,
  #about-team,
  #vision,
  #goals {
    padding: 30px 20px;
  }

  .content {
    gap: 20px;
  }

  .content .text {
    flex: none;
  }

  .content .image {
    flex: none;
  }
}

@media (max-width: 480px) {
  #about-us {
    padding: 30px;
    margin-top: 50px;
  }

  #goals {
    margin-bottom: 0;
  }

  section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  section p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .content .text,
  .content .image {
    text-align: center;
    flex: none;
    width: 100%;
  }

  .content .image img {
    max-width: 90%;
  }
}



/* ============================ Contact Section ============================= */
/* Base Styles (PC/Desktop view) */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 120px 0;
  padding-bottom: 1%;
  background: #ffffff;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
  margin: 10px;
}

.contact-form,
.contact-info h2,
.contact-info h3 {
  color: #00A9FF;
}

.contact-form h2 {
  background-color: #213993;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.contact-info h3 {
  background-color: #213993;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.contact-form .btn {
  background: #00A9FF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form .btn:hover {
  background: #213993;
}

.contact-form {
  max-width: 500px;
  margin-right: 5%;
}

.contact-form label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #555;
}

.contact-info .social-media-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #afc0d3;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-info .social-media-icons a:hover {
  color: #0056b3;
}

#map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

#Branches {
  padding: 60px 0;
  background-color: #ffffff;
}

#Branches h2 {
  background-color: #213993;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

#Branches .goals-content .goal h3 {
  background-color: #00A9FF;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.contact-info p strong {
  background-color: #00A9FF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Mobile View */
@media screen and (max-width: 480px) {
  .contact-form input,
  .contact-form label,
  .contact-form textarea {
    font-size: 15px;
  }

  .contact-info h3 {
    font-size: 25px;
  }

  .contact-info p {
    font-size: 13px;
  }
}

/* =====================================Carrer.html====================================================*/
/* Career Form Section */
/* Style for the Practice Areas section */
/* Practice Areas Section */
#practiceAreas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* Slightly increased spacing for better readability */
  margin-bottom: 20px;
  justify-content: center;
  /* Centers the checkboxes */
}

/* Style for each checkbox label */
#practiceAreas label {
  display: flex;
  align-items: center;
  font-size: 15px;
  /* Slightly larger text for better readability */
  color: #555;
  /* Softer text color */
  padding: 10px 15px;
  /* Adds padding for a modern button-like look */
  background: #f9f9f9;
  /* Light background for contrast */
  border-radius: 5px;
  /* Rounded edges for a modern feel */
  border: 1px solid #ddd;
  /* Subtle border */
  transition: all 0.3s ease;
  /* Smooth hover effects */
  cursor: pointer;
}

#practiceAreas label:hover {
  background: #e9ecef;
  /* Slight hover effect */
  border-color: #ccc;
  /* Slight color change on hover */
}

/* Style for the checkboxes */
#practiceAreas input[type="checkbox"] {
  margin-right: 10px;
  /* Adds space between checkbox and label text */
  width: 18px;
  /* Larger checkbox for better accessibility */
  height: 18px;
}

/* Style for the overall form container */
.form-container {
  background: #ffffff;
  padding: 150px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  /* Slightly larger form width */
  width: 100%;
  margin: 0 auto;
}

/* Heading styles */
.form-container h1,
.form-container h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #222;
  /* Slightly darker color for emphasis */
  font-family: 'Arial', sans-serif;
  /* Clean font style */
  font-weight: bold;
}

/* Form field styles */
.form-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  /* Bolder label text */
  color: #444;
  /* Softer text color */
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  /* Smoother corners */
  background: #f8f9fa;
  /* Light background for inputs */
  transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  border-color: #28a745;
  /* Highlight on focus */
  outline: none;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.25);
  /* Soft green focus shadow */
}

/* Button styles */
.form-container button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  /* Smoother corners */
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-container button:hover {
  background-color: #218838;
  transform: translateY(-2px);
  /* Slight lift on hover */
}

.form-container button:active {
  background-color: #1e7e34;
  /* Slightly darker green on click */
  transform: translateY(0);
  /* Reset the lift effect */
}



/* Responsive Styling */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }

  #practiceAreas label {
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 15px;
  }

  #practiceAreas {
    grid-template-columns: 1fr;
  }

  .form-container button {
    font-size: 14px;
    padding: 10px;
  }
}


/* ==========================================Footer========================================== */
/* General Footer Styling */
footer {
  background: linear-gradient(90deg, hsla(0, 25%, 90%, 1) 0%, hsla(212, 100%, 14%, 1) 33%);
  color: white;
  padding: 4vw 0 5vh 0;
  text-align: left;
}

.footer-container {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Oswald", sans-serif;
}

.footer-logo img {
  /* max-width: 450px;
  margin-bottom: 20px;
  border-bottom: 2px solid #000000;
  height: auto;
  width: 180px; */
  display: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-section {
  /* padding: 0 10px; */
  flex-grow: 1;
}

.header-name {
  flex: 15%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.services {
  flex: 20%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.contact-map {
  flex: 25%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.connect-with-us {
  flex: 40%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.connect-with-us p a i {
  padding-bottom: 30px;
  margin-right: 20px;
  font-size: 40px;
}

.contact-map,
.fab {
  font-size: 30px;
}

.footer-section h3 {
  font-size: 25px;
  font-family: "Kanit", sans-serif;
  /* border-bottom: 2px solid #000000; */
  margin-bottom: 15px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 5px;
}

.footer-section p,
.footer-section ul {
  font-family: "Kanit", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  background: #8c8eee;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-map a i {
  color: #000000;
}

.map-container {
  margin-top: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.footer-bottom p {
  text-align: center;
  margin-top: 10px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  padding-top: 50px;
  font-size: 14px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fa-instagram {
  background: linear-gradient(4500deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fa-linkedin {
  background: #0a66c2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Align icons and text horizontally with perfect alignment */
.business-info .info-item {
  display: flex;
  align-items: flex-start;
  /* Align items to the top */
  margin-bottom: 15px;
  /* Add spacing between items */
}

.business-info .info-item .material-icons {
  margin-right: 15px;
  /* Add spacing between icon and text */
  font-size: 20px;
  /* Adjust icon size if needed */
  flex-shrink: 0;
  /* Prevent icons from shrinking */
}

.business-info .info-item p {
  margin: 0;
  /* Remove default paragraph margin */
  line-height: 1.5;
  /* Improve readability of multi-line text */
}

.footer-section h3 .icon{
  display: none;
}

/* Responsive Footer for Screens Below 768px */
@media screen and (max-width: 768px) {
  footer {
    background: linear-gradient(180deg, hsla(0, 25%, 90%, 1) 0%, hsla(212, 100%, 14%, 1) 33%);
  }

  .footer-container {
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: left;
    text-align: left;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically (optional) */
    margin-bottom: 20px;
    /* Adjust as needed */
  }

  .footer-section {
    flex: 100%;
    margin-bottom: 30px;
    position: static;
    left: 0;
  }

  .header-name,
  .services,
  .contact-map,
  .connect-with-us {
    flex: 100%;
    left: 0;
    bottom: 0;
    font-size: calc(14px + 1vw);
  }

  .footer-logo img {
    width: 150px;
    margin-bottom: 10px;
    display: block;
  }

  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-section p,
  .footer-section ul {
    font-size: 14px;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }

  .connect-with-us iframe {
    width: 100%;
    height: 250px;
  }

  .business-info .info-item {
    justify-content: left;
  }

  .footer-bottom p {
    font-size: 12px;
    padding-top: 20px;
  }

  .connect-with-us p a i {
    font-size: 30px;
    margin-right: 15px;
  }

  /* Collapsible Content */
  .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .collapsible-content.open {
    max-height: 500px;
  }

  .collapsible-content li a {
    font-size: 18px;
  }

  .contact-map p,
  i {
    font-size: 20px;
  }

  /* Toggle Icon */
  .toggle-icon {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .toggle-icon::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .toggle-icon.active::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Icon Styling */
  .footer-section h3 .icon {
    position: absolute;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display:inline-block
  }

  .footer-section h3 .icon.active {
    content: "-";
  }
}

/* ========================================== quick-connect ================================ */
/* Contact Floating Div */

.quick-connect {
  position: fixed;
  bottom: 25%;
  right: 0px;
  width: 280px;
  max-width: 90%;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

/* Initially hidden on mobile */
.quick-connect.hidden {
  transform: translateX(100%);
}

/* Quick Icon - only displayed on mobile */
.quick-icon {
  user-select: none;
  display: none;
  position: fixed;
  bottom: 20px;
  left: -45px;
  background-color: #0F4C75;
  color: white;
  padding: 5px 10px;
  border-radius: 20px 0 0 20px;
  cursor: Auto;
  z-index: 1001;
  font-size: 25px;
}

/* Form Content */
.quick-form {
  display: flex;
  flex-direction: column;
}

.quick-form h2 {
  margin-top: 0;
  font-size: 18px;
  color: #0F4C75;
}

.quick-form label {
  margin: 10px 0 5px;
  font-size: 14px;
  color: #333;
}

.quick-form input {
  width: 100%;
  height: 30px;
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.quick-form textarea {
  width: 100%;
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.quick-form button {
  width: 100%;
  background-color: #0F4C75;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.quick-form button:hover {
  background-color: #0a3a57;
}

.quick-connect {
  transform: translateX(100%);
}

.quick-icon {
  display: block;
}


/* Mobile view - hide form initially and show icon */
@media (max-width: 768px) {
  .quick-connect {
    transform: translateX(100%);
  }

  .quick-icon {
    display: block;
  }
}















@media (max-width: 768px) {
  #about-us .about-container {
    padding: 20px 0%;
  }

  #about-us .content {
    display: flex;
    flex-direction: column-reverse; /* Places the image on top */
    align-items: center;
    text-align: center;
  }

  #about-us .image img {
    max-width: 100%;
    height: auto;
  }

  #about-us .text {
    padding: 0;
  }

  #about-us .text h2 {
    font-size: 30px;
    margin: 20px;
  }

  #about-us .text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  #about-team .about-container {
    padding-top: 20%;
  }

  #about-team .content {
    display: flex;
    flex-direction: column-reverse; /* Places the image on top */
    align-items: center;
    text-align: center;
  }

  #about-team .image img {
    max-width: 100%;
    height: auto;
  }

  #about-team .text {
    padding: 0;
  }

  #about-team .text h2 {
    font-size: 30px;
    margin: 20px;
  }

  #about-team .text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  #vision .about-container {
    padding-top: 20%;
  }

  #vision .content {
    display: flex;
    flex-direction: column-reverse; /* Places the image on top */
    align-items: center;
    text-align: center;
  }

  #vision .image img {
    max-width: 100%;
    height: auto;
  }

  #vision .text {
    padding: 0;
  }

  #vision .text h2 {
    font-size: 30px;
    margin: 20px;
  }

  #vision .text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

/* For #about-Milestone Section */
@media (max-width: 768px) {
  #about-Milestone{
    padding: 5%;
  }

  #about-Milestone .about-container {
    padding-top: 20%;
  }

  #about-Milestone .content {
    display: flex;
    flex-direction: column-reverse; /* Places the image on top */
    align-items: flex-start; /* Aligns content to the left */
    text-align: left; /* Aligns text to the left */
  }

  #about-Milestone .image img {
    max-width: 100%;
    height: auto;
  }

  #about-Milestone .text {
    padding: 0;
    text-align: justify; /* Justifies the text */
  }

  #about-Milestone .text h2 {
    font-size: 30px;
    margin: 20px 0; /* Adjusted margin */
  }

  #about-Milestone .text ul li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left; /* Ensures list items are aligned to the left */
  }
}

/* For #about-commit Section */
@media (max-width: 768px) {
  #about-commit{
    padding: 5%;
  }
  #about-commit .about-container {
    padding-top: 20%;
  }

  #about-commit .content {
    display: flex;
    flex-direction: column-reverse; /* Places the image on top */
    align-items: flex-start; /* Aligns content to the left */
    text-align: left; /* Aligns text to the left */
  }

  #about-commit .image img {
    max-width: 100%;
    height: auto;
  }

  #about-commit .text {
    padding: 0;
    text-align: justify; /* Justifies the text */
  }

  #about-commit .text h2 {
    font-size: 30px;
    margin: 20px 0; /* Adjusted margin */
  }

  #about-commit .text ul li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left; /* Ensures list items are aligned to the left */
  }

  #about-commit .text p{
    font-size: 13px;
    text-align: left; /* Ensures list items are aligned to the left */
  }
}