﻿.slider-container {
  position: relative;
}
.slide {
  display: none; /* hide all by default */
}

.slide.active {
  display: block; /* show only the active one */
}


  
        
        /*body {
            font-family: 'Inter', sans-serif;
        }*/

        .glow-card {
            position: relative;
            z-index: 10;
        }

        .glow-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            padding: 2px;
            background: conic-gradient(from var(--angle), #a855f7, #ec4899, #06b6d4, #a855f7);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: rotate 4s linear infinite;
        }

        @property --angle {
            syntax: "<angle>";
            initial-value: 0deg;
            inherits: false;
        }

        @keyframes rotate {
            to {
                --angle: 360deg;
            }
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
   


      body {
    font-size: 20px; /* base size */
    line-height: 1.6; /* better readability */
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    body {
        font-size: 25px; /* slightly larger for desktops */
    }
}


        .glow-card {
            position: relative;
            z-index: 10;
        }

        .glow-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            padding: 2px;
            background: conic-gradient(from var(--angle), #a855f7, #ec4899, #06b6d4, #a855f7);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: rotate 4s linear infinite;
        }

        @property --angle {
            syntax: "<angle>";
            initial-value: 0deg;
            inherits: false;
        }

        @keyframes rotate {
            to {
                --angle: 360deg;
            }
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

/*Given*/

 body {
            font-family: 'Inter', sans-serif;
            background-color: #f0f2f5; 
        }

       
        @keyframes lineFlow {
            0% {
                opacity: 0;
                transform: scale(0.9) translate(0, 0);
            }
            20% {
                opacity: 0.2;
            }
            50% {
                opacity: 0.3;
                transform: scale(1) translate(1%, 1%);
            }
            80% {
                opacity: 0.2;
            }
            100% {
                opacity: 0;
                transform: scale(1.1) translate(2%, 2%);
            }
        }

        .hero-animated-background .animated-line {
            animation: lineFlow 15s ease-in-out infinite forwards; 
            transform-origin: center center;
        }

      
        @keyframes networkNodePulse {
            0%, 100% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        @keyframes networkLineDraw {
            0% {
                stroke-dashoffset: 1000; 
                opacity: 0;
                transform: scale(0.9);
            }
            10% {
                opacity: 0.7; 
                transform: scale(1);
            }
            90% {
                opacity: 0.7; 
                transform: scale(1);
            }
            100% {
                stroke-dashoffset: 0; 
                opacity: 0; 
                transform: scale(1.1);
            }
        }

        .network-graphic .network-node {
            animation: networkNodePulse 4s ease-in-out infinite alternate;
            filter: drop-shadow(0 0 4px rgba(46, 139, 87, 0.8)); 
        }

        .network-graphic .network-path {
            stroke-dasharray: 1000; 
            animation: networkLineDraw 15s linear infinite; 
            filter: drop-shadow(0 0 2px rgba(46, 139, 87, 0.6)); 
        }

      
        .network-graphic-bg {
            background: radial-gradient(circle at center, #2a3340 0%, #1A202C 100%);
        }


        /*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  
    color: #ffffff;
    font-size: 20px;
}*/

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: white;
    gap: 20px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 220px;
    text-align: center;
}

.feature-card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1e90ff;
}

.feature-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

.journey-section {
    background: #eef2f6;
    padding: 40px 20px;
    text-align: center;
}

.journey-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
}

.journey-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #333;
}
         .font {
        font-size: 25px;
        }



.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50vh;
    padding: 0 20px;

    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    color: #cbd5e1;
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-buttons a {
    margin: 0 10px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-primary-custom {
    background-color: #22c55e;
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #16a34a;
}

.btn-outline-custom {
    border: 2px solid #22c55e;
    color: #22c55e;
    background-color: transparent;
}

.btn-outline-custom:hover {
    background-color: #22c55e;
    color: white;
}

.watermark-text {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.section {
    padding: 60px 20px 30px 20px;
    text-align: center;
    background-color: #ffffff;
    color: #222;
}

.section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section p,
.section ul {
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.section-dark {
    background-color: #111827;
    color: #fff;
}

.section-dark h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-dark h3 {
    color: #22c55e;
}

.section-dark ul {
    list-style-type: square;
    padding-left: 1.5rem;
}

.btn-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.bg-light-blue {
    background: linear-gradient(to right, #f9fafb, #eef2ff);
    color: #111827;
}

.bg-blue-dark {
    background: linear-gradient(to right, #0f172a, #1e3a8a);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.reliable-machinery {
    background-color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.reliable-machinery h2 {
    color: #1e3a8a;
}

.reliable-machinery p {
    max-width: 700px;
    margin: 0 auto;
    color: #4b5563;
}

.timeline-section {
    background-color: #f9fafb;
}

.timeline-heading {
    color: #0f172a;
}

.timeline-step {
    background-color: #e0f2fe;
}

.equipment-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.tailored-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
}

.sales-flow-section {
    background-color: #eef2f6;
    padding: 60px 20px;
    text-align: center;
}

.sales-flow-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.sales-flow-box {
    background-color: #fff;
    margin: 0 auto;
    padding: 30px 40px;
    max-width: 700px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sales-flow-box ol {
    padding-left: 20px;
    margin: 0;
}

.sales-flow-box li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.sales-flow-box li strong {
    color: #000;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.categories ul {
    list-style-type: disc;
    padding-left: 20px;
    flex: 1;
    min-width: 250px;
    margin: 0 30px 20px 30px;
}

.categories li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.who-we-serve {
    background-color: #f5f8fb;
    padding: 40px 20px;
}

.who-we-serve h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #222;
}

.who-we-serve ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.who-we-serve li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}

.who-we-serve li i {
    color: #28a745; 
    margin-right: 10px;
}

.advantage-section {
    /*padding: 60px 20px;*/
    text-align: center;
}

.advantage-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background-color: #1d293b;
    border-radius: 12px;
    padding: 30px 25px;
    width: 300px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.advantage-card .icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
}

.advantage-card p .highlight {
    color: #32cd32;
    font-weight: bold;
}

@media (max-width: 768px) {
    .advantage-card {
        width: 90%;
    }
}

.contact-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.contact-section .highlight {
    color: #00d37b;
    font-weight: bold;
}

.form-container {
    background-color: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    padding: 40px 30px;
    text-align: left;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #218838;
}
  #back-to-top {
      position: fixed;
      bottom: 15px;
      right: 20px;
      font-size: 16px;  
      display: none;
      z-index: 9999;
      height: 35px;
      width: 60px;
    }
    .translate-container {
      position: fixed;
      bottom: 15px;
      left: 20px;
      z-index: 9999;
      background: white;
      padding: 8px 16px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .goog-logo-link,
    .goog-te-gadget span {
      display: none !important;
    }

    .goog-te-combo {
      padding: 8px 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      
      background-color: #f9f9f9;
      color: #333;
    }

    .goog-te-combo:hover {
      border-color: #007bff;
      box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    }


   
    .slider-container {
        position: relative;
        height: 100%;
        overflow: hidden;
        font-family: 'Segoe UI', sans-serif;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .slide.active {
        opacity: 1;
        z-index: 1;
    }

    .slide img {
        width: 100%;
        height: 600px !important;
        object-fit: cover;
        
    }

    .overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        margin-top: -48px;
    }

    .tagline {
        font-size: 20px;
        color: #00a3e0;
        font-weight: bold;
    }

    h1 {
        font-size: 60px;
        margin: 10px 0;
    }

    .subheading {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .buttons .btn {
        padding: 12px 24px;
        margin: 0 10px;
        border-radius: 30px;
        font-size: 16px;
        text-decoration: none;
        color: white;
    }

    .btn.green {
        background-color: #00e092;
    }

    .btn.blue {
        background-color: #0096d6;
    }

    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        color: white;
        background-color: rgba(0, 150, 214, 0.8);
        padding: 10px 20px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
    }

    .nav-arrow.left {
        left: 20px;
    }

    .nav-arrow.right {
        right: 20px;
    }


.site-footer {
    background-color: #1e252f;
    color: #fff;
    padding: 20px 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #e74c3c;
    margin: 0 5px;
    text-decoration: none;
    font-weight: bold;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right span {
    margin-right: 10px;
}

.footer-right a {
    color: #fff;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
}

.footer-bottom .dev-name {
    color: #e74c3c;
    font-weight: bold;
}


.top-bar {
    background-color: #1e252f;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 8px;
}

.top-left i {
    color: #e74c3c;
    margin: 0 5px;
}

.top-right i {
    margin-right: 5px;
    color: #fff;
}


.main-header {
    background-color: white;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.logo span {
    font-size: 22px;
    font-weight: bold;
    color: navy;
}

.main-nav a {
    text-decoration: none;
    margin-left: 25px;
    color: navy;
    font-weight: bold;
    font-size: 15px;
    position: relative;
}

.main-nav i {
    font-size: 12px;
    margin-left: 5px;
}
/*ndjvn*/
.main-nav {
    display: flex;
    gap: 0px    ;
    align-items: center;
    background: white;
    padding: 10px 40px;
}

.main-nav a {
    text-decoration: none;
    color: navy;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    padding: 10px;
    display: inline-block;
}


.dropdown {
    position: relative;
}


.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    z-index: 999;
    padding: 0;
    list-style: none;
}


.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #f2f2f2;
}
        .heads {
        background-color: white; 
        color: black; width: 100%; 
        text-align: center; 
        margin-top: 20px;
     
        }
            .headds h2 {
            margin-top: -20px;
               font-size: 40px;
    margin-bottom: 15px;
    font-weight: bolder;
    color: white;
            }
            .heads p {
            color: black;
             display: block;
             font-weight: 600;
             margin-top: -20px;
            }
    .custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: justify;
}

.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    text-align: justify;
}

.custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #0d6efd;
    font-weight: bold;
}

/* Nested list */
.custom-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    text-align: justify;
}

.custom-list ul li {
    padding-left: 1.5rem;
    text-align: justify;
}

.custom-list ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #0d6efd;
    font-weight: bold;
}
.custom-list,
.custom-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: justify;
}

.custom-list li,
.custom-list ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  text-align: justify;
}

.custom-list li::before,
.custom-list ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #0d6efd;
  font-weight: bold;
}
.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: center;
}

.custom-list li {
  /*display: inline-flex;*/
  /*align-items: flex-start;*/
  gap: 8px;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.custom-list li::before {
  content: "✔";
  color: #0d6efd;
  font-weight: bold;
  flex-shrink: 0;
}


    .slider-container {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        display: none;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        color: white;
        cursor: pointer;
        z-index: 1000;
        user-select: none;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
    }

    .nav-arrow.left {
        left: 20px;
    }

    .nav-arrow.right {
        right: 20px;
    }

    .buttons .btn {
        display: inline-block;
        padding: 10px 20px;
        margin: 10px 5px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
    }

    .btn.green {
        background-color: #28a745;
    }

    .btn.blue {
        background-color: #007bff;
    }
    /* Ensure the slide container positions correctly */
.slider-container .slide {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Make the image responsive */
.slider-container .slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay full size and stays inside image */
/*.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}*/

/* Hero text responsiveness */
.hero-section {
    color: #fff;
    max-width: 100%;
}

.hero-section h1,
.hero-section h2,
.hero-section p {
    margin: 10px 0;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Buttons on mobile */
.hero-buttons .btn {
    padding: 10px 20px;
    font-size: 1rem;
}

/* Mobile responsiveness */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section h2 {
        font-size: 1.5rem;
    }
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
    .interactive-card {
        border-radius: 16px;
        background: #ffffff;
        transition: all 0.4s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .interactive-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }

    .interactive-card h5 {
        font-weight: 700;
        font-size: 1.25rem;
        color: #1f2937;
    }

    .custom-list {
        padding-left: 1.2rem;
    }

    .custom-list li {
        margin-bottom: 0.75rem;
        position: relative;
        line-height: 1.6;
    }

    html {
        scroll-behavior: smooth;
    }
    .footer-section {
  background-color: #1d3c8f; /* Deep Blue */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.footer-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.footer-tagline {
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-contact {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-link i {
  margin-right: 5px;
  color: #f1f1f1;
}

.footer-link:hover {
  text-decoration: underline;
  color: #ffcc00;
}

.divider {
  color: #ccc;
  font-size: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  margin-top: 10px;
  opacity: 0.85;
}

.journey-section {
    background-color: #f2f6fb;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.journey-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.journey-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #333;
    width: 100px;
}



@media (max-width: 576px) {
    .step {
        width: 80px;
        font-size: 0.85rem;
    }

    .step i {
        font-size: 24px;
    }
}
       


