*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
  }
  
  html{
    overflow-x: hidden;
  }
  
  :root {
    --bg-color: #ffffff;
    --main-color: #202c5d;
    --second-color: #B99B3B;
    --text-color: #000000;
  
    --h1-font: 5.5rem;
    --h2-font: 2.8rem;
    --p-font: 1.1rem;
  }
  
  body{
    background: var(--bg-color);
    color: var(--text-color);
  }
  
  /*navigation bar*/
  header{
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    background: var(--bg-color);
    box-shadow: 0 2px 5px -2px #0000001a;
    transition: all .6s ease;
  }
  
  .logo img {
    max-width: 180px;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .navlist {
    display: flex;
  }
  
  .navlist a {
    display: inline-block;
    font-size: var(--p-font);
    color: var(--text-color);
    margin: 0 30px;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
    transition: all .6s ease;
    text-decoration: none;
  }
  
  .navlist a:hover {
    color: var(--main-color);
    border-bottom: 2px solid var(--second-color);
    text-decoration: none;
  }
  
  .nav-content {
    display: flex;
    align-items: center;
  }
  
  .nav-content a{
    display: inline-block;
    font-size: 23px;
    color: var(--text-color);
    margin: 0 10px;
    transition: all .6s ease;
    text-decoration: none;
  }
  
  .nav-content button:hover{
    transform: scale(1.1);
    color: var(--second-color);
    text-decoration: none;
  }
  
  /*hero image*/
  section {
    padding: 80px 10% 80px;
  }
  
  .hero {
    position: relative;
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(32, 44, 93, 1.2), rgba(246, 246, 246, 0.4)), 
    url(../img/team-newyear.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1920/600;
  }
  
  .hero-text h1 {
    align-items: center;
    font-size: var(--h1-font);
    font-weight: 700;
    color: var(--bg-color);
    margin: 10px 0 20px;
    line-height: 1;
  }
  
  .hero-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-color);
    letter-spacing: 4px;
    margin: 140px 0 20px;
  }
  
  .hero-text p{
    font-size: 25px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bg-color);
    margin-bottom: 30px;
  }
  
  /* btn ws */
  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 20px;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid var( #1DA851);
      color: var(--bg-color);
      letter-spacing: 2px;
      transition: all .6s ease;
      text-decoration: none;
  }
  
  .btn-whatsapp {
      background-color: #25D366;
      border-color: #25D366;
      color: #fff;
  }
  
  .btn-whatsapp:hover {
      background-color: #1DA851;
      border-color: #1DA851;
      color: #fff;
  }
  
  .btn-whatsapp i {
      margin-right: 8px;
      font-size: 18px;
  }
  /*---------*/
  
  .btn:hover {
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
    color: var(--text-color);
  }
  
  .center-text {
    margin-top: -30px;
    text-align: center;
  }
  
  .center-text h6{
    font-size: 12px;
    font-weight: 600;
    color: var(--second-color);
  }
  
  .center-text h2{
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        color: #202c5d;
        margin-bottom: 20px;
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: 2px;
  }
  
  h2 {
    text-align: center;
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
  }
  
  h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffffff, #f9a825);
    margin: 0 auto;
  }

  /*--- menu bars---*/
.toggle_btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--main-color);
}

.action_btn {
    background-color: #B99B3B ;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20pc;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover {
    scale: 1.05;
    color: #fff; 
}

.action_btn:active {
    scale: 0.95;;
}

/* dropdown bar menu */
.dropdown_bar_menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-color);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.dropdown_bar_menu li {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.dropdown_bar_menu li a {
    color: var(--main-color);
    text-decoration: none;
}

.dropdown_bar_menu li:hover {
    background-color: #f9f9f9;
}

.dropdown_bar_menu.open {
    display: flex;
}

@media (max-width: 768px) {
    .navlist {
        display: none;
    }

    .toggle_btn {
        display: block;
    }
}

/* Submenu styles */
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default */
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.submenu li {
    padding: 0.5rem 1rem;
    white-space: nowrap; /* Prevent text wrapping */
}

.has-submenu:hover .submenu {
    display: block; /* Show submenu on hover */
}

/* Responsive dropdown bar */
@media (max-width: 768px) {
    .dropdown_bar_menu {
        display: none;
        flex-direction: column;
    }

    .dropdown_bar_menu.open {
        display: flex;
    }

    .submenu {
        position: static; /* Stack submenus for small screens */
    }
}

/*----whatsApp button phone size-----*/
.whatsapp-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var( #1DA851);
  color: var(--bg-color);
  letter-spacing: 2px;
  transition: all .6s ease;
  text-decoration: none;
}

@media (max-width: 768px) {
    .nav-content {
        display: none;
    }

    .whatsapp-btn {
        display: block;
    }
}

.whatsapp-mini-btn {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
}

.whatsapp-mini-btn:hover {
  background-color: #1DA851;
  border-color: #1DA851;
  color: #fff;
}

.whatsapp-mini-btn i {
  margin-right: 8px;
  font-size: 18px;
}



 /* Footer */
footer {
    background-color: #f9f9f9;
    padding: 2rem 0;
    color: #333;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 100vw;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 10%;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    margin: 1rem;
    max-width: 300px;
}

.footer-col .material-symbols-outlined {
    font-size: 20px;
    margin-right: 10px;
    color: #333;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--main-color);
}

/* Arrow for About and Services titles */
.footer-col .dropdown > a:after {
    content: " ▼";
    font-size: 0.8rem;
    margin-left: 5px;
}

.footer-col .dropdown:hover > a:after {
    content: " ▲"; 
}

/* Dropdown behavior for About and Services */
.footer-col .dropdown:hover {
    background-color: #f9f9f9; 
}

.footer-col .dropdown .sub-links {
    display: none; 
    padding-left: 20px;
}

.footer-col .dropdown:hover .sub-links {
    display: block; 
}

.footer-col p,
.footer-col ul,
.footer-col li {
    margin: 0.5rem 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin: 0.5rem 0;
}

.footer-col a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-col a:hover {
    color: var(--main-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
    }

    .hero-text h1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
    }

    .hero-text h1 {
        font-size: 25px;
    }
}

  
  /*------------------------------*/

 
.hero-text {
    color: white;
    max-width: 600px;
}


/*hero image*/
section {
    padding: 80px 10% 80px;
}

/* Who We Are Section */
.who-we-are .content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Text container */
.who-we-are .text {
    width: 50%;
    min-width: 300px;
    text-align: center;
}

.who-we-are p {
    font-size: 16px;
    font-weight: 100;
    line-height: 1.6;
    margin: 0 auto;
    text-align: justify;
    margin-top: 5%;
}

/* Button styling */
#toggle-button {
    background-color: #B99B3B;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    display: block;
    margin-left: 0; /* Align left */
}

#toggle-button:hover {
    background-color: #202c5d;
}

#toggle-button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Image container (Laptop Default: Images stay on the left) */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Image styles */
.about-image {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    transition: transform 0.5s ease-in-out;
}

.about-image:hover {
    transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .who-we-are .content {
        flex-direction: column;
        align-items: center;
    }

    .who-we-are .text {
        width: 80%;
    }

    .about-container {
        order: 2; /* Move images below the button */
    }
}

@media screen and (max-width: 768px) {
    .who-we-are .content {
        flex-direction: column;
        align-items: center;
    }

    .who-we-are .text {
        width: 90%;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        order: 2; /* Ensure images appear below button */
    }
}

@media screen and (max-width: 480px) {
    .who-we-are .text {
        width: 100%;
        padding: 0 15px;
    }

    .about-image {
        max-width: 250px;
    }
}


/*------------*/

.values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;
}

.value-box {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 280px;
    cursor: pointer;
    flex: 1 1 calc(25% - 20px); /* Adjust width for responsiveness */
    box-sizing: border-box;
}

.value-box:hover { /*to remove transition*/
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.value-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.value-box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-box {
        flex: 1 1 calc(50% - 20px); /* 2 items per row */
    }

    .value-box img {
        width: 60px;
        height: 60px;
    }

    .value-box h3 {
        font-size: 18px;
    }

    .value-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .value-box {
        flex: 1 1 100%; /* Full width for smaller screens */
    }

    .value-box img {
        width: 50px;
        height: 50px;
    }

    .value-box h3 {
        font-size: 16px;
    }

    .value-box p {
        font-size: 12px;
    }
}

/* Popup Card */
.popup-card {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
    margin-top: 0;
}

.popup-content p {
    margin-bottom: 20px;
}

.close-btn {
        font-size: 50px; /* Large '×' symbol */
        color: black; /* Color of the close button */
        position: absolute; /* Position in the top-right corner */
        top: 10px; /* Spacing from the top */
        right: 20px; /* Spacing from the right */
        cursor: pointer; 
}

/* Vision & Mission Section */
.asiarac-vision {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 8%; 
    gap: 0;
    background: linear-gradient(to right, rgba(32, 44, 93, 0.4), rgba(255, 254, 254, 0.8)); 
    border-radius: 0;
    margin-bottom: 0px; 
}

.asiarac-mission {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 8%;
    gap: 0;
    background: linear-gradient(to left, rgba(32, 44, 93, 0.4), rgba(255, 254, 254, 0.8)); 
    border-radius: 0;
    margin-bottom: 40px; 
}

h6 span {
    color: var(--second-color);
}

/* Vision Section */
.vision {
    flex-basis: 50%; 
    padding: 40px;
    box-shadow: none; 
    border-radius: 0; 
    height: 100%;
}

.vision-text h6 {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
}

.vision-text p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    text-align: justify;
}

/* Vision Image Section */
.vision-image {
    flex-basis: 50%; 
    display: flex;
    justify-content: flex-end;
    height: auto; 
}

.vision-image img {
    width: 60%;
    height: 60%;
    object-fit: cover; 
    border-radius: 0; 
    max-width: 1945px; 
    max-height: 7648px;
}

/* Mission Section */
.mission {
    flex-basis: 50%; 
    padding: 5px;
    box-shadow: none;
    border-radius: 0; 
    height: 100%; 
    order: 2;
}

.mission-text h6 {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
}

.mission-text ul {
    list-style: none; 
    padding-left: 0;
}

.mission-text ul li {
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: var(--text-color);
    text-align: justify;
}

/* Add the gif icon as the bullet point */
.mission-text ul li::before {
    content: '•'; 
    position: absolute;
    left: 0;
    top: 0;
    width: 20px; /* Adjust size as necessary */
    height: 20px;
}

/* Mission Image Section */
.mission-image {
    flex-basis: 50%; 
    display: flex;
    justify-content: flex-start;
    height: 100%;
    order: 1;
}

.mission-image img {
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: 0; 
    height: auto;
    max-width: 1945px; 
    max-height: 7648px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision, .mission {
        flex-basis: 100%;
    }

    .vision-image img,
    .mission-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .asiarac-mission {
        flex-direction: column-reverse;
    }

    .mission, .mission-image {
        flex-basis: 100%;
        padding: 20px;
    }

    .mission-image img {
        width: 100%;
        height: auto;
    }
    
}

@media (max-width: 768px) {
    .asiarac-vision {
        flex-direction: column;
    }

    .vision, .vision-image {
        flex-basis: 100%;
        padding: 20px;
    }

    .vision-image img {
        width: 100%;
        height: auto;
    }
    
}

/* Award & Recognition */
.awards {
    background: linear-gradient( to left, #B99B3B, #e0c978, #f3e7be);
}

.award-center-text {
    margin-top: -30px;
    text-align: center;
  }
  
  
  .award-center-text h1{
        text-align: center;
        color: #202c5d;
        font-size: 32px;
        margin-bottom: 20px;
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
  }
.award-container {
    width: 100%;
    display: flex;
    flex-direction: row; /* Ensures side-by-side layout */
    justify-content: space-between; /* Add spacing between the columns */
    align-items: flex-start; /* Align items to the top of the container */
    gap: 20%; 
    padding: 5% 30px;
    position: relative;
}

.left-col {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: 5%;
    padding: auto;
}

.right-col {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: auto;
}

.right-col h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Left Column Content */
.left-col .intro {
    font-weight: 500;
    text-align: justify;
    color: var(--main-color);
}

.left-col .intro span {
    color: var(--second-color);
    font-weight: 700;
}

/* Profile Section (CEO Speech) */
.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.profile-pic {
    margin-top: 250px;
    margin-left: -60px;
    width: 155px;
    height: auto;
    border-radius: 50%;
}

.speech {
    margin-top: 0;
}

.quote {
    position: relative;
    padding: 10px 55px;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    text-align: justify;
    color: var(--main-color);
}

.quote-mark {
    font-size: 80px;
    color: #ccc;
    position: absolute;
}

.quote-start {
    top: -20px;
    left: -20px;
}

.quote-end {
    bottom: -50px;
    right: 10px;
    position: absolute;
}

.ceo-name {
    font-size: 25px;
    font-weight: bold;
    margin-top: 20px;
    color: var(--second-color);
}

.ceo-title {
    font-size: 15px;
    font-weight: bold;
    color: #1E275B;
}

/* Right Column Content (Awards List) */
.right-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5%; 
    padding: 20px;
}

.award-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 3%;
}

.year-box {
    width: 100px;
    height: 50px;
    padding: 12px;
    margin-left: 20px;
    background-color: var(--main-color);
    border-radius: 50px;
    text-align: center;
    
}

.year-box h5 {
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
}
.award-item p {
    padding: 7px 35px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--main-color);
}

/* Award Statue in the Middle */
.award-statue-container {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; 
    pointer-events: none; 
}

.award-statue {
    max-width: 100%; 
    height: 80%;
}

/* Continous Award & Recognition */
.instagram-feed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    box-shadow: #000000;

}

.post-container {
    display: grid;
    grid-template-columns: repeat(3, 4fr);
    gap: 50px;
}

/* Individual post styling */
.post {
    border: 1px solid transparent;
    border-radius: 30px;
    max-width: 400px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.post:hover {
    transform: scale(1.1);
}

.post img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #dbdbdb;
}

.year-box {
    width: 100px;
    height: 50px;
    padding: 12px;
    margin-top: 10px;
    margin-left: 20px;
    background-color: var(--main-color);
    border-radius: 50px;
    text-align: center;
    align-items: center;
    
}

.year-box h5 {
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
}

.post p {
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .post-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .post-container {
        grid-template-columns: 1fr;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    /* Adjust award container to stack columns vertically */
    .award-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .left-col,
    .right-col {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* Profile picture and speech adjustments */
    .profile-pic {
        margin: 20px auto 0 auto;
        width: 120px;
        margin-left: 0;
    }

    .speech {
        text-align: center;
    }

    .quote {
        padding: 10px;
        font-size: 12px;
    }

    .ceo-name {
        font-size: 18px;
    }

    .ceo-title {
        font-size: 14px;
    }

    /* Award items adjustments */
    .award-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-top: 20px;
    }

    .year-box {
        margin-left: 0;
        margin-top: 10px;
    }

    .award-item p {
        padding: 10px;
    }

    /* Instagram feed adjustments */
    .instagram-feed {
        padding: 20px 10px;
        gap: 10px;
    }

    .post-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .post {
        max-width: 100%;
    }

    /* Award Statue Below the Content */
    .award-statue-container {
        position: relative;  /* Changed from absolute to relative */
        top: auto;
        left: auto;
        transform: none;     /* Remove the centering transformation */
        margin-top: 20px;     /* Add space above the statue */
        z-index: 0;          /* Remove the stacking effect */
    }

    .award-statue {
        max-width: 70%;       /* Adjust statue size for smaller screens */
        height: auto;
        margin: 0 auto;       /* Center the statue horizontally */
    }
}

@media (max-width: 480px) {
    .award-statue-container {
        margin-top: 30px;     /* Ensure some space between content and statue */
        padding: 0 10px;      /* Add padding to the container for responsiveness */
    }

    .award-statue {
        max-width: 80%;       /* Slightly bigger statue on very small screens */
    }
}


.footer-bottom p {
    margin: 0.5rem 0; 
}

/*5 Key Promises */
.company-promises {
    align-items: center;
    margin-bottom: -20px;
}

.promise-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.promise-image img {
    max-width: 100%;
    height: auto;
}

@keyframes wipeIn {
    0% {
        transform: translateX(-100%); /* Start off-screen from the left */
    }
    100% {
        transform: translateX(0); /* End at its original position */
    }
}

@keyframes wipeOut {
    0% {
        transform: translateX(0); /* Starting position */
    }
    100% {
        transform: translateX(100%); /* Move off-screen to the right */
    }
}

.promise-image img {
    max-width: 100%;
    height: auto;
    animation: wipeIn 1s ease-in forwards; /* Add the animation */
}
