* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    scroll-behavior: smooth;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-text-container {
    position: absolute;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: fadeInTitle 1.5s ease forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.5rem;
    margin-top: 20px;
    animation: fadeInDesc 2s ease forwards;
    opacity: 0;
}

@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDesc {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-container {
    width: 100%;
    height: 50vh;
    display: flex;
    z-index: 2;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0 0 5% 5%;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.2);
}


.content-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.2;
    background-image: 
        linear-gradient(90deg, rgba(128, 128, 128, 0.5) 1px, transparent 1px), 
        linear-gradient(rgba(128, 128, 128, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
}



.footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2; 
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left, .footer-right, .footer-center {
    display: flex;
    align-items: center;
}

.tos-link, .footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    margin-right: 20px;
}

.tos-link:hover, .footer-link:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 30px; 
    margin: 0 10px; 
}

.footer-center img {
    display: inline-block;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #ddd;
}
.tos-container {
    padding: 100px 50px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
}
   
.tos-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #4d4d4d;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

strong {
    font-weight: bold;
    color: #555;
}

.progress-title {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

.circle-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 20px;
}

.circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.circle-text p {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-background {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 8;
}

#circle-left .circle-progress {
    fill: none;
    stroke: #dc3545;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s ease;
}

#circle-right .circle-progress {
    fill: none;
    stroke: #28a745;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-number {
    animation: countUp 0.5s ease forwards;
}

.roadmap-container {
    margin-top: 200px;
    max-width: 1200px;
    margin: auto; /* Centers horizontally */
    margin-top: 50px; /* Adjust as needed */
    display: flex;
    justify-content: center; /* Centers the roadmap inside the container */
}

.roadmap {
    display: flex;
    justify-content: center; /* Centers steps in the roadmap */
    align-items: flex-start;
    min-width: max-content;
    position: relative;
}
.roadmap::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: -1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    margin: 0 20px;
    opacity: 0;
    transform: translateX(50px);
}

.step-icon, .step-icon_false {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.step-icon {
    background-color: #aaffd0;
}

.step-icon_false {
    background-color: #ffbbaa;
}

.step-icon img {
    width: 30px; 
    height: 30px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}


@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 768px) {
    .step {
        width: 150px;
        margin: 0 10px;
    }
}
.about-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 200px; /* Moves the section 600px down */
    background: none; /* Ensures no background color */
}

.about-us-content {
    display: flex;
    align-items: center;
    max-width: 1200px; /* Adjust overall section width */
    margin: 0 auto;
    padding: 0 20px;
    gap: 230px; /* Increased space between image and text */
}

.about-us-image {
    z-index: 8;
    width: 400px;
    height: 280px;
    border-radius: 15px;
    animation: scaleUp 0.8s ease-in-out;
}

.about-us-text {
    max-width: 500px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.about-us-text h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.about-us-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}



.progress-box {
    z-index: 9;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 600px;
    margin: 20px auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    font-family: 'Poppins', sans-serif;
    cursor: default;
}

.progress-title {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    text-decoration: none;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.goal-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.goal-box:hover {
    transform: translateY(-5px);
}

.goal-box h3 {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
}

.goal-box p {
    color: #666;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .progress-box {
        width: 90%;
        margin: 20px auto;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }
}
#backToBlogs {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
  }
  #backArrow {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }
