@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");

:root {
  --primary-color: #5d3a5d;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.btn {
  padding: 1rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 2px 10px 20px #9e7f9e;
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

body {
  font-family: "Lato", sans-serif;
}

header {
  position: relative;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - 15rem);
  background-color: #fff;
  z-index: -1;
}
.toggleMenu{
  display: none;
}
nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}
.nav__logo img{
  width: 150px;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.link a {
  padding: 5px 0;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.link a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.header__container {
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire area */
  z-index: -1; /* Puts the video behind the content */
  opacity: 0.7; /* Optional: Add some opacity to dim the video */
}

.header__content h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}


.header__image {
  position: relative;
  padding-right: 2rem;
}

.header__socials {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header__socials a {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: 0.3s;
}

.header__socials a:hover {
  color: var(--primary-color);
}

.header__image img {
  max-width: 500px;
  margin: auto;
}
/*about*/
.about-us {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background-color: #ffffff;
  overflow: hidden; /* Ensures circles stay within section */
}

.about-content {
  max-width: 600px;
  text-align: center;
  z-index: 1; /* Ensures content is above the circles */
}

.about-us h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}
.about-us h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}

.about-us p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #ffff;
}

.why-content {
  max-width: 60%;
  
}

.why-choose-us h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
 
}
.why-choose-us h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}

.why-choose-us p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2.5rem;
  
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-item {
  display: flex;
  flex-direction: column;
}

.why-item .number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 1rem;
  color: #555;
}

.why-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Media Query for responsive design */
@media (max-width: 768px) {
  .why-choose-us {
    flex-direction: column;
  }

  .why-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    text-align: center;
  }

  .why-image img {
    max-width: 80%;
  }
}


/*---Statement Section---*/



.why-chooseus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40vh; /* Adjust as needed */
  background-color: #ffffff; /* White background */
  text-align: center;
  padding: 20px;
}

.why-chooseus h2 {
  font-size: 2em;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #5d3a5d, #F4E1E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-chooseus p {
  font-size: 1.2em;
  margin-bottom: 30px;
}




/*clients*/
.clients-section {
  text-align: center;
  padding: 3rem 0;
  background-color: #ffffff;
}

.clients-section h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}
.clients-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}
.clients-section p{
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.slide-track {
  display: flex;
  width: calc(250px * 8); /* Adjust width based on number of logos */
  animation: scroll 20s linear infinite;
}

.slide {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100px;
  filter: grayscale(100%); /* Optional for effect */
  transition: filter 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%); /* Color on hover */
}

/* Animation for continuous sliding */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide img {
    width: 100px;
  }
  
  .slide-track {
    width: calc(150px * 8);
  }
}
@media (max-width: 425px) {
  .slide img {
    width: 80px;
  }
  
  .slide-track {
    width: calc(150px * 8);
  }
}

/* Footer General Styling */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex-basis: 30%;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #9e7f9e; /* Golden color */
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 0.5rem;
}

ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul li a:hover {
  color: #ccc; /* Hover effect for links */
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons li {
  display: inline-block;
}

.social-icons li a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #555;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    flex-basis: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}
/*whatapp icon*/

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/*---CONTACT PAGE--*/
.location{
  width: 80%;
  margin: auto;
  padding: 80px 0;
}
.location iframe{
  width: 100%;
}
/*Form section*/
.contact2 {
  display: flex;
  justify-content: space-between;
  padding: 5rem 2rem;
  background-color: #555;
  gap: 3rem;
}

.contact__left {
  width: 40%;
}

.contact__left h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.contact__left h1 span {
  display: block;
  position: relative;
  margin-top: 0.5rem;
  color: #f5f5f5;
}

.contact__left h1 span::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--white); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}

.contact__left p {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--white);
}

/* Contact Details Styling */
.contact__details {
  margin-top: 3rem;
  
}

.contact__details p {
  margin: 1rem 0;
  font-size: 1rem;
  color: var(--white);
}

.contact__details a {
  color: var(--white);
  text-decoration: none;
}

.contact__details a:hover {
  text-decoration: underline;
}

.contact__right {
  width: 50%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  gap: 1.5rem;
}

input, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--white);
  background-color: #555;
  color: #f5f5f5;
  font-size: 1rem;
  border-radius: 5px;
}

textarea {
  resize: none;
}

input::placeholder, textarea::placeholder {
  color: #fff;
}

button {
  padding: 1rem;
  font-size: 1rem;
  color: #f5f5f5;
  background-color: transparent;
  border: 1px solid var(--white);
  cursor: pointer;
  border-radius: 25px;
}

button:hover {
  background-color: #F4E1E5;
  color: #1c1c1c;
}

@media (max-width: 768px) {
  .contact2 {
    flex-direction: column;
    align-items: center;
  }

  .contact__left, .contact__right {
    width: 100%;
  }

  .form-group {
    flex-direction: column;
  }
}

/*Services*/

.our-services {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
  color: #ffffff;
}

.services-header h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  text-align: center;
  position: relative; /* Ensures pseudo-elements are positioned relative to h2 */
  padding-left: 80px; /* Add space to make room for the red square */
}
.services-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}


.services-header p{
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.service {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.service:hover {
  background-color: #fff;
}

.service h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-top: 1rem;
}

.service p {
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  
  .services-header h2 {
    text-align: center;
  }

}

@media (max-width: 480px) {
  

  .services-header h2 {
    text-align: center;
  }

}
















/*certification*/
.certification {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
}

.certification-content h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  position: relative;
}
.certification-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}

.certification-content p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.certification-icon img {
  width: 100px;
  height: auto;
}

/*services2*/

.services2 {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.row {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services-col {
  flex-basis: 31%;
  background: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  transition: 0.5s;
  position: relative;
}
.services-col ul {
  list-style-type: disc; /* Default bullet style, can be changed to circle, square, etc. */
  padding-left: 20px;
  margin-top: 1rem;
}

.services-col li {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #555;
}


.services-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.services-col h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-top: 1rem;
}

.services-col p {
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.5rem;
}


/*industies*/

#industries {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}



.industries-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px; /* Space between the icons */
}

.industry {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industry img {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Similar shadow effect */
  transition: transform 0.3s;
}

.industry p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.industry img:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
}



/* Media queries for responsiveness */
@media(max-width: 700px) {
  .row {
      flex-direction: column;
  }
}

#mission-values {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.mission-section {
  margin-bottom: 60px;
}

.mission-section h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  position: relative;
}
.mission-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}
.mission-section p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.values-section h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  position: relative;
}
.values-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}
.values-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 3%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.value-card p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}





@media (width < 900px) {
  header::after {
    content: none;
  }

  .nav__links {
    gap: 1rem;
  }

  .header__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .header__content {
    text-align: center;
  }

  .header__content form {
    margin: auto;
  }

  .header__image {
    grid-area: 1/1/2/2;
  }

}




@media(max-width:1000px) {
  .toggleMenu {
    display: flex;
    cursor: pointer;
    background-color: transparent;
    background-image: url(assets/open.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    width: 30px;
    height: 30px;
    border: 0;
    z-index: 1000;
    transition: background-size 0.5s ease-in-out;
  }

  .toggleMenu.active {
    position: fixed;
    right: 5%;
    background-image: url(assets/close.png);
    background-size: 25px;
  }

  .nav__links {
    position: absolute;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    min-height: 0;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }

  .nav__links.active {
    position: fixed;
    min-height: 100%;
    opacity: 1;
    background-color: var(--white);
    z-index: 999;
    transform: scale(1);
  }
}

/* Styles for screens up to 425px */
@media (max-width: 425px) {
  .toggleMenu {
    background-size: 25px;
    width: 25px;
    height: 25px;
  }

  .nav__links {
    gap: 0.8rem;
  }
}

/* Styles for screens up to 375px */
@media (max-width: 375px) {
  .toggleMenu {
    background-size: 22px;
    width: 22px;
    height: 22px;
  }

  .nav__links {
    gap: 0.7rem;
  }
}

/* Styles for screens up to 320px */
@media (max-width: 320px) {
  .toggleMenu {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }

  .nav__links {
    gap: 0.6rem;
  }

  .nav__logo a {
    font-size: 14px;
  }

  .nav__links li a {
    font-size: 14px;
  }
}

/* General container styling */
.services-section {
  background-color: #ffffff;
  padding: 50px 0;
  
}

.container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.left-col, .right-col {
  flex: 1;
  padding: 20px;
}

/* Left column styling */
.left-col h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  position: relative;
}
.left-col h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}



.left-col .description {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}



/* Right column service items */
.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-item .icon {
  font-size: 30px;
  color: #000;
  margin-right: 15px;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  position: relative;
}

.service-content p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }
  
  .left-col, .right-col {
      padding: 10px;
  }
}
.about-me {
  position: relative;
  padding: 4rem 0;
  background-color: #fff;
}

.about-me h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 3rem;
  color: var(--text-dark);
  position: relative;
  text-align: center;
}
.about-me h2::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* Length of the underline */
  height: 3px; /* Thickness of the underline */
  background-color: var(--primary-color); /* Color of the underline */
  border-radius: 2px; /* For rounded ends */
}

.about-me-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 3rem;
  padding-left: 2rem;
}

.about-me-image {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.about-me-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-me-content {
  flex: 1;
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: -5rem; /* To make it protrude over the image */
  z-index: 1;
  position: relative;
  max-width: 50%;
}

.about-me-content p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column;
    padding-left: 0;
  }

  .about-me-image, .about-me-content {
    max-width: 100%;
    margin-left: 0;
  }

  .about-me h2 {
    
    text-align: center;
  }
}
.certified-section {
  background-color: #ffffff; /* Light background to make content pop */
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.certified-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.certified-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.certified-heading::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 100px;
  height: 4px;
  background-color: var(--primary-color); /* Accent color */
  border-radius: 2px;
}

.certified-subheading {
  font-size: 1.25rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.certified-accent {
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #5d3a5d, #9e7f9e); /* Gradient effect */
  margin-top: 2rem;
  animation: slideIn 2s ease;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .certified-heading {
    font-size: 2.5rem;
  }

  .certified-subheading {
    font-size: 1.25rem;
  }
}
