html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent container overflow on mobile */
@media (max-width: 768px) {
    .container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .hero-bg .childContainer,
    #about .flex,
    #how-it-works .flexLine {
        flex-wrap: wrap;
    }
    .Cards,
    #testimonials .grid {
        width: 100vw;
        margin-left: 0;
        margin-right: 0;
    }
}
        .nav-links{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .nav-links a {
            color: #cacfd9;
            text-decoration: none;
            /* margin-right: 20px; */
        } .nav-links a:hover {
            color: #eeeef0;
        }.auth-buttons{
        margin-right: 24px;
        display: flex;
        align-items: center;
        gap: 20px;
        }
        .auth-buttons button {
            background-color: transparent;
            color: white;
            border: none;
            padding: 12px 16px;
            cursor: pointer;
            font-weight: bold;
            border-radius: 6px;
            font-size: medium;
        }
        .auth-buttons .login {
            color: white;
            border: 1px solid #cacfd9;  
        }.auth-buttons .login:hover {
            background-color: #252525;
            color: 202020;
        }
        .auth-buttons .signUp {
            background-color: rgb(26, 25, 25);
            color: white;
        }
         .auth-buttons .signUp:hover {
            background-color: rgb(0, 0, 0);
         }
         .hero{
            margin-top: 70px;
            background: linear-gradient(135deg, #252525, black);
            color: white;
            padding: 100px 0;
         }
        .hero .container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-align: center;
        }
        .hero .getStartedBtn {
            background-color: transparent;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            border: 2px solid #252525;
            transition: background-color 0.3s ease;
        }
        .hero .getStartedBtn:hover {
            background-color: #252525;
        }
        .hero-bg{
            color: #cacfd9;
        }
        .hero-bg .container {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 50px 0px;
        }
        .hero-bg .childContainer {
            display: flex;
            /* flex-direction: row; */
            /* justify-content: space-between; */
            align-items: center;
            width: 100%;
        }
         .hero-bg .childContainer .leftSide {
            width: 50%;
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 10px;
            margin-left: 100px;
        }
        .hero-bg .childContainer .leftSide h1 {
            font-size: 3rem;
            color: whitesmoke;
            /* margin-bottom: 10px; */
        }
        .hero-bg .childContainer .leftSide .subWelcomeText p {
            font-size: 2rem;
            color: #6366f1;
        }
        .hero-bg .childContainer .leftSide .grandSubWelcomeText {
            font-size: 1.2rem;
            color: #eeeef0;
            margin-bottom: 10px;
        }
        .hero-bg .childContainer .leftSide .btn {
            width: 100%;
            display: flex;
            gap: 20px;
        }
        .hero-bg .childContainer .leftSide .btn button {
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s ease;
            background-color: transparent;
        }.hero-bg .childContainer .leftSide .btn button:nth-child(1){
           border: 2px solid #cacfd9;
            background-color: transparent;
        }
        .hero-bg .childContainer .leftSide .btn button:nth-child(1):hover {
            background-color: #252525;
        }
        .hero-bg .childContainer .leftSide .btn button:nth-child(2) {
            background-color: #3b3b3b;
            border: 2px solid #252525;
            color: white;
        }
        .hero-bg .childContainer .leftSide .btn button:nth-child(2):hover {
            background-color: transparent;
                      border: 2px solid #252525;

        }
        .hero-bg .childContainer .leftSide .review {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .hero-bg .childContainer .leftSide .review div {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .hero-bg .childContainer .leftSide .review span {
            font-size: 1.5rem;
            font-weight: bold;
            color: #6366f1;
        }
        .hero-bg .childContainer .leftSide .review span.text-gray-600 {
            font-size: 1rem;
            color: #eeeef0;
        }
        .hero-bg .childContainer .image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-bg .childContainer .image svg {
            width: 100%;
            height: auto;
            max-width: 500px;
        }
        .hero-bg .childContainer .image svg .cursor {
            animation: cursorAnimation 1.5s infinite;
        }
        @keyframes cursorAnimation {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }
        #features{
            /* background-color: #f8f9fa; */
            padding: 60px 0;
        }
        #features .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        #features h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            color:#e9ecef;
        }
        #features p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            text-align: center;
            color:#cacfd9;
        }
        #features .feature-card {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        #features .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0px 20px rgba(197, 197, 197, 0.2);
        }
        #features .feature-icon {
            /* background-color: #e9ecef; */
            border-radius: 50%;
            padding: 16px;
            display: inline-block;
            margin-bottom: 20px;
            /* border: 2px solid #e9ecef ; */
        }
        #features .feature-icon svg {
            width: 32px;
            height: 32px;
            color:#e9ecef;
        }
        #features .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            text-align: center;
             color: #e9ecef;
        }
        #features .feature-card p {
            font-size: 1rem;
            color: #cacfd9;
        }
        .Cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        #about {
            padding: 60px 0;
            /* background-color: #f8f9fa; */
        }
        #about .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        #about h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            color: #343a40;
        }
        #about p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #6c757d;
        }
        #about .flex {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #about .md\:flex-row {
            flex-direction: row;
        }
        #about .md\:w-1\/2 {
            width: 50%;
        }
        #about .md\:pl-10 {
            padding-left: 40px;
        }
        #about .text-3xl {
            font-size: 2rem;
            font-weight: bold;
            color: white;
        }
        #about .text-gray-600 {
            color:#cacfd9;
            margin-bottom: 20px;
        }
        #about .bg-white {
            /* background-color: white; */
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        #about .italic {
            font-style: italic;
            color: #6c757d;
        }
        #about .flex .items-center {
            display: flex;
            align-items: center;
        }
        #about .flex .-space-x-2 {
            margin-left: -8px;
        }
        #about .flex .w-10 {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }
        #about .flex .bg-indigo-500 {
            background-color: #6366f1;
        }
        #about .flex .bg-pink-500 {
            background-color: #ec4899;
        }
        #about .flex .ml-4 {
            margin-left: 16px;
        }
        #about .flex .text-sm {
            font-size: 0.875rem;
            font-weight: 500;
            color: #343a40;
        }
        #about .flex .text-xs {
            font-size: 0.75rem;
            color: #6c757d;
        }
        #about .flex .text-gray-800 {
            color: #343a40;
        }
        #about .flex .text-gray-500 {
            color: #6c757d;
        }
        #how-it-works {
            padding: 60px 0;
            /* background-color: #f8f9fa; */
        }
        #how-it-works .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        #how-it-works h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            color:#eeeef0;
        }
        #how-it-works p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color:#e9ecef;
            text-align: center;
        }
        #how-it-works .md {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        #how-it-works .md {
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        #how-it-works .md h3 {
            font-size: 1.5rem;
            /* margin-bottom: 10px; */
            color:#e9ecef;
        }
        #how-it-works .md p {
            font-size: 1rem;
            color:#cacfd9;
            width: 100%;
        }
        #how-it-works .w-20{
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
             background-color: #252525;
            
        }#how-it-works svg{
            width: 80px;
            height: 80px;
            color:#e9ecef;
        }#how-it-works .flex ,#how-it-works .flexLine{
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }#how-it-works .flexLine::before{
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            top: 20%;
            left: 15%;
            background: linear-gradient(90deg, #6366f1, #ec4899);
            animation: lineExpand 2s ease-in-out 1.5s forwards;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
        }
        
        @keyframes lineExpand {
            0% {
                width: 0%;
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                width: 75%;
                opacity: 1;
            }
        }
        #how-it-works .flex .bg-indigo-500 {
            background-color: #6366f1;
        }#how-it-works .flex .bg-pink-500 {
            background-color: #ec4899;
        }
        

        #testimonials {
            padding: 60px 0;
            /* background-color: #f8f9fa; */
        }
        #testimonials .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        #testimonials h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            color:#eeeef0;
        }
        #testimonials p {
            font-size: 1.2rem;
            /* margin-bottom: 40px; */
            color:#e9ecef;
            text-align: center;
        } #testimonials .text-center p{
            margin-bottom: 40px;
            color:#cacfd9;

        }
           #testimonials .grid{
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        #testimonials .testimonial-card {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        #testimonials .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0px 20px rgba(197, 197, 197, 0.2);
        }
        #testimonials .testimonial-card .testimonial-icon {
            background-color: #e9ecef;
            width:30px;
            height: 30px;
            border-radius: 50%;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* margin-bottom: 20px; */
            font-size: 20px;
            font-weight: bold;
            color: #030303;
        }#testimonials .testimonial-card .text-gray-600{
            color: #cacfd9;
            font-style: italic;
            font-size:1rem;
            margin-bottom: 40px;
        }
        #testimonials  svg {
            width: 32px;
            height: 32px;
            color: #f5d103;
        } #testimonials .testimonial-card  .flex{
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        #testimonials .testimonial-card h4 {
            /* margin-bottom: 10px; */
            text-align: center;
            color: #e9ecef;
        }#testimonials .testimonial-card .info{
            display: flex;
            flex-direction: column;
            align-content: center;
            justify-content: center;
        }
        #testimonials .testimonial-card p {
            font-size: 1rem;
            color: #cacfd9;
            text-align: center;
        } #testimonials blockquote{
                      font-size: 1.25rem;
            line-height: 1.75rem;
            font-style: italic;
            color: #cacfd9;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        
        }
        /* Footer Container */
footer {
  color: #ffffff;
  padding: 2rem 0 1rem 0;
  background-color: #252525;
  margin-left: 0px;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

footer .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #f3f4f6;
}

footer .footer-brand i {
  font-size: 1.8rem;
  /* color: #6366f1; */
}

footer .footer-links {
  margin: 1rem 0;
}

footer .footer-links a {
  color: #d1d5db;
  text-decoration: none;
  margin: 0 0.8rem;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #6366f1;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

footer .social-icons a {
  color: #d1d5db;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

footer .social-icons a:hover {
  color: #6366f1;
}

footer .copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}




@media (max-width: 768px) {
    
     .hero-bg .container,
    #how-it-works .container,
    footer .container {
        padding: 0;
    }
      #features .container,  
    #about .container{
        padding: 0px;
      }
    .hero-bg .childContainer {
        flex-direction: column;
        gap: 30px;
    }
    .hero-bg .childContainer .leftSide,
    .hero-bg .childContainer .image {
        width: 100%;
        margin-left: 0;
        padding: 10px;
    }
    .hero-bg .childContainer .leftSide {
        align-items: center;
        text-align: center;
    }
    .nav-links {
        gap: 10px;
    }
    .auth-buttons {
        gap: 10px;
        margin-right: 10px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .hero-bg .childContainer .leftSide h1 {
        font-size: 2rem;
    }
    .hero-bg .childContainer .leftSide .subWelcomeText p {
        font-size: 1.2rem;
    }.hero-bg .childContainer .leftSide .btn{
        margin-left: -15px;
        gap: 10px;
    }
    .Cards {
        grid-template-columns: 1fr;
    }
    #features .feature-card{
        padding: 0px;
    }#testimonials {
        display: none;
        
    }
    #about .flex {
        flex-direction: column;
    }
    #about .md\:w-1\/2,
    #about .md\:pl-10 {
        width: 100%;
        padding-left: 0;
    }
    #how-it-works .md {
        gap: 10px;
    }
    #how-it-works .flex ,#how-it-works .flexLine{
        flex-direction: column;
    }
     #how-it-works .flex ,#how-it-works .flexLine::before{
        display: none;
     }
}

@media (max-width: 480px) {
    nav {
        max-width: 100vw;
        min-width: 0;
        align-items:center ;
    }
    .nav-links {
        display: none;
    }
    .auth-buttons {
        width: 100%;
        justify-content: flex-start;
        margin-right: 0;
    }
    .hero {
        padding: 40px 0;
        margin-top: 40px;
    }
    .hero h2 {
        font-size: 1.3rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-bg .container {
        padding: 0 5px;
    }
    .hero-bg .childContainer {
        flex-direction: column;
        gap: 16px;
    }
    .hero-bg .childContainer .leftSide {
        margin-left: 0;
        padding: 8px;
        align-items: center;
        text-align: center;
    }
    .hero-bg .childContainer .leftSide h1 {
        font-size: 1.2rem;
    }
    .hero-bg .childContainer .leftSide .subWelcomeText p {
        font-size: 1rem;
    }
    .hero-bg .childContainer .leftSide .grandSubWelcomeText {
        font-size: 1rem;
    }
    .hero-bg .childContainer .image svg {
        max-width: 250px;
    }
    #features h2,
    #about h2,
    #how-it-works h2,
    #testimonials h2 {
        font-size: 1.3rem;
    }
    #features p,
    #about p,
    #how-it-works p,
    #testimonials p {
        font-size: 1rem;
    }
    .Cards,
    #testimonials .grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    footer .footer-brand {
        font-size: 1.1rem;
    }
    footer .footer-links a {
        margin: 0 0.3rem;
        font-size: 0.9rem;
    }
    footer .social-icons {
        gap: 0.5rem;
    }
    footer {
        padding: 1rem 0 0.5rem 0;
    }
}