body{
    background-color: #f6f5ed !important;
}
:root {
    --default-font-family: 'Suranna', serif;
    --primary-color: #000000;
    --secondary-color: #828282;
    --background-color: #f6f5ed;
    --button-color: #000000;
    --button-text-color: #ffffff;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
    font-family: var(--default-font-family);
    background-color: var(--background-color);
    overflow: hidden;
    position: relative;
}

.about-section h2 {
    font-family: Suranna, var(--default-font-family);
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-transform: capitalize;
    animation: fadeIn 1s ease-out;
}

.about-section .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1300px;
    width: 100%;
}

.about-section .images {
    display: flex;
    gap: 20px;
}

.about-section .images img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    animation: slideIn 1s ease-out;
}

.about-section .images img:hover {
    transform: scale(1.05);
}

.about-section .text-content {
    font-family: var(--default-font-family);
    text-align: left;
    max-width: 500px;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeIn 1s ease-out;
}

.about-section .stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.about-section .stat {
    position: relative;
    text-align: center;
    width: 20%;
    min-width: 100px;
}

.about-section .stat .number {
    font-family: Suranna, var(--default-font-family);
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.about-section .stat .label {
    font-family: Suranna, var(--default-font-family);
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    z-index: 1;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-number-wrapper {
    position: relative;
    display: inline-block;
}

.stat-number-wrapper::before,
.stat-number-wrapper::after {
    content: '';
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg width="1" height="47" viewBox="0 0 1 47" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="0.5" y1="0" x2="0.5" y2="47" stroke="black"/></svg>');
    background-repeat: no-repeat;
    width: 1px;
    height: 47px;
    top: 50%;
    transform: translateY(-50%);
}

.stat-number-wrapper::before {
    left: -30px;
}

.stat-number-wrapper::after {
    right: -30px;
}


/* Footer Styles */
.footer {
    font-family: 'DM Sans', sans-serif;
    background-color: #000000;
    padding: 60px 0 30px;
    width: 100%;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-title {
    font-family: 'Suranna', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: capitalize;
    color: #ffffff;
}

.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-image {
    width: 200px;
    height: 200px;
    background-color: rgba(217, 217, 217, 0.2);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

/* Specific fix for Liens Rapides alignment */
.footer-section:nth-child(2) {
    padding-right: 20px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 12px;
    padding-left: 0;
    text-indent: 0;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
}

.footer-links a:hover {
    color: #dddddd;
    text-decoration: underline;
}

.logo-container {
    margin-bottom: 20px;
}

.company-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.section-footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #f2f2f2;
}

.contact-info {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: #aaaaaa;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #dddddd;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #555555;
    position: relative;
}

.copyright {
    color: #aaaaaa;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: #aaaaaa;
    transition: fill 0.3s;
}

.social-icon:hover {
    fill: #dddddd;
}

.scroll-up {
    position: absolute;
    right: 0;
    top: -60px;
    background: #555555;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.scroll-up:hover {
    background: #aaaaaa;
}

.scroll-up-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .gallery-image {
        width: 150px;
        height: 150px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    

    
    .footer-section:nth-child(2) {
        padding-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .scroll-up {
        position: static;
        margin: 20px auto 0;
    }

}

@media (max-width: 576px) {
    .footer-title {
        font-size: 28px;
    }
    
    .gallery-image {
        width: 120px;
        height: 120px;
    }
    
    .company-logo {
        max-width: 150px;
    }
}

/* end footer  */

/* detailed about us  */

:root {
    --primary-color: #070707;
    --secondary-color: #393939;
    --background-color: #f6f5ed;
    --image-overlay: rgba(205, 205, 205, 0.2);
    --button-hover: rgba(0, 0, 0, 0.05);
}

/* Main Container */
.content-section {
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f6f5ed;
}

/* Content Blocks */
.content-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.content-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-image {
    flex: 1;
    min-width: 300px;
    max-width: 654px;
    height: 399px;
    background-color: var(--image-overlay);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.content-text {
    flex: 1;
    min-width: 300px;
    max-width: 654px;
}

.content-title {
    font-family: 'Suranna', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--primary-color);
}

.content-description {
    color: var(--secondary-color);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Learn More Button */
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background-color: var(--button-hover);
}

.learn-more svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.learn-more:hover svg {
    transform: translateX(3px);
}

/* Divider */
.line-div {
    width: 90%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 4rem auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* cards section */

:root {
    --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
        "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
        "Source Han Sans CN", sans-serif;
    --primary-color: #000000;
    --secondary-color: #7a7a7a;
    --divider-color: rgba(0, 0, 0, 0.1);
}

.values-container {
    font-family: var(--default-font-family);
    color: var(--primary-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.values-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    text-align: center;
}

.values-title {
    font-family: 'Suranna', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    text-transform: capitalize;
}

.values-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: var(--secondary-color);
    line-height: 1.6;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    gap: 40px;
    width: 100%;
    align-items: start;
}

.value-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
    padding: 20px;
}

.card-image-container {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(156, 156, 156, 0.1);
    aspect-ratio: 4/3; /* Adjust this ratio as needed */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Changed from 'cover' to 'contain' */
    transition: transform 0.5s ease, opacity 0.3s ease;
    max-height: 250px; /* Limits very tall images */
}

.card-image:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: underline;
    color: var(--primary-color);
    margin-top: 10px;
}

.card-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--secondary-color);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.divider-about {
    width: 100%;
    height: 1px;
    background-color: var(--divider-color);
    margin: 15px 0;
}

/* Animation delays */
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }
.fade-in:nth-child(4) { animation-delay: 0.7s; }
.fade-in:nth-child(5) { animation-delay: 0.9s; }
.fade-in:nth-child(6) { animation-delay: 1.1s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-container {
        padding: 60px 15px;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-image-container {
        aspect-ratio: 16/9; /* More rectangular on mobile */
    }
}

/* vedio section */

:root {
    --black-900: #000000;
    --black-700: #333333;
    --black-500: #666666;
    --black-300: #999999;
    --black-100: #e6e6e6;
    --white: #ffffff;
    --bg-light: #f6f5ed;
}

/* Video Section - Using your exact original styling */
.video-section {
    background-color: var(--bg-light);
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 30%; /* Your original value */
    overflow: hidden;
}

.poster-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hidden initially */
}

/* Your original play button styles */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1; /* Changed from 0 to be visible by default */
    z-index: 2;
}

.video-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid var(--black-900);
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* Your original responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        padding-bottom: 40%;
    }
}

@media (max-width: 576px) {
    .video-container {
        padding-bottom: 50%;
    }
}


/* achivement section */
:root {
    --blackcol-4: rgba(0, 0, 0, 0.4);
    --blackcol-6: rgba(0, 0, 0, 0.6);
    --blackcol-7: rgba(0, 0, 0, 0.7);
    --textgray-light: rgba(255, 255, 255, 0.7);
  }
  
  
  .frame {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 20px;
    position: relative;
    background-color: #000000;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
    color: white;
  }
  
  .frame .group {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .achievements-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
    width: 100%;
  }
  
  .achievement-card {
    width: 100%;
    max-width: 446px;
    height: 281px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  

  .achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;

  }

  

  .achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
  }

  

  .achievement-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  

  .achievement-card:hover::before {
    background: rgba(0, 0, 0, 0.4);
  }

  .achievement-number {
    font-family: 'Suranna', serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 22.4px;
    margin-bottom: 20px;
  }

  

  .achievement-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: auto; /* Pushes content below to stay aligned */
    flex-grow: 1; /* Takes remaining space */
  }

  .achievement-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
    flex-shrink: 0;
  }

  

  .achievement-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 22.4px;
    margin-top: auto; /* Sticks to bottom */
    flex-shrink: 0;

  }

  

  .card-content-wrapper {

    display: flex;

    flex-direction: column;

    height: 100%;

  }
  
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.2s;
  }
  
  .section-header.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .section-subtitle {
    font-family: 'Suranna', serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 14.1px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .section-title {
    font-family: 'Suranna', serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--textgray-light);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  
  .quote {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    font-size: 21px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.4s;
  }
  
  .quote.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Background images for each card */
  .achievement-card:nth-child(1) {
    background-image: url("{{ asset('images/3rdimage') }}");
  }
  
  .achievement-card:nth-child(2) {
    background-image: url("{{ asset('images/') }}");
  }
  
  .achievement-card:nth-child(3) {
    background-image: url("{{ asset('images/') }}");
  }
  
/* end achivement section */


:root {
    --text-gray: #828282;
    --text-dark: #000000;
    --bg-light: #f6f5ed;
    --transition-speed: 0.3s;
}

.services-section {
    font-family: 'DM Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.service-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-section-subtitle {
    font-family: 'Suranna', serif;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-section-title {
    font-family: 'Suranna', serif;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-section-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    max-width: 850px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    padding: 0 30px;
    position: relative;
    padding-bottom: 10px;
}

/* Content wrapper that expands to push the button down */
.content-card {
    flex-grow: 1; /* Takes remaining space, pushing button down */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px; 
}

.service-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.1);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-title {
    font-family: 'Suranna', serif;
    font-weight: 400;
    color: var(--text-dark);
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* Ensures description text doesn't affect button alignment */
.service-description {
    width: 100%;
    margin-bottom: 10px;
}

.learn-more-btn {
    margin-top: auto; /* Pushes button to the bottom of the card */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-top: 10px;
}

.learn-more-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: capitalize;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width var(--transition-speed) ease;
}

.learn-more-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform var(--transition-speed) ease;
}

.service-card:hover .learn-more-text {
    max-width: 100px;
}

.service-card:hover .learn-more-icon {
    transform: translateX(3px);
}









