html, body {
    width: 100%;
    /*overflow-x: hidden;*/
    background-color: #f1f1f1;
    color: #001220;
    font-family: "Poppins", sans-serif;    
}
header {
background-color: #001220;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
padding: 10px 0;
}
.navbar-nav .nav-link {
color: #fff;
font-family: "Poppins" !important;
transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
background: linear-gradient(135deg, #FE0360, #2AA9DC);
-webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
color: transparent; /* Make the text color transparent so the gradient shows */
}
.launch-btn {
background: linear-gradient(135deg, #FE0360, #2AA9DC) !important;
color: #fff !important;
text-decoration: none !important;
font-weight: 600 !important;
border: none !important;
padding-left: 3% !important;
padding-right: 3% !important;
padding-bottom: 1% !important;
padding-top: 1% !important;
border-radius: 30px !important;
transition: transform 0.2s ease, box-shadow 0.3s ease !important;
outline: none !important;
font-family: "Poppins" !important;
}
.launch-btn:hover {
transform: scale(1.1);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
color: #fff !important;
}


/* ////////////////////////////////////////////////// */
.banner{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #001220;
    /* margin-top: 100px; */
}
.banner-img{
    width: 100%;
    max-width: 100%;
    height: auto;
}
/* ////////////////////////////////////////////////// */
.hero-title {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 200px;
    font-family: "Poppins";
    }
    
    .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    font-family: "Poppins";
    }
    
    .hero-buttons {
    margin: auto;
    /* display: flex; */
    /* gap: 15px; */
    margin-top: 40px;
    font-family: "Poppins";
    }
    
    .hero-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    /* font-weight: bold; */
    text-decoration: none;
    font-family: "Poppins";
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: auto;
    }
    
    .hero-btn.primary1{
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    /* background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59); */
    color: #fff;
    border: none;
    }
    
    .hero-btn.secondary1{
    background: transparent;
    color: #fff;
    border: 2px solid #FE0360;
    }
    
    .hero-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }
    
/* ////////////////////////////////////////////////// */

.circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: expand 5s ease-in-out infinite;
}

@keyframes expand {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(10); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}



/* ////////////////////////////////////////////////// */
.features-section {
    background-color: #f1f1f1; 
    /* White background */
    color: #001220;
    padding: 60px 20px;
    text-align: center;
}

.features-section .container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.features-section-title {
    font-size: 2.5rem;
    /* height: auto; */
    font-weight: bold;
    margin-bottom: 20px;
    /* color: #FE0360; */
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */
}

.features-section-subtitle {
    font-size: 1.25rem;
    /* color: #7f8c8d; */
    color: #001220;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #fff;
    /* background: #f1f2f6; */
    border-radius: 10px;
    padding: 20px;
    /* border: 1px solid #e1e1e1; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    /* color: #FE0360; */
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
-webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
color: transparent; /* Make the text color transparent so the gradient shows */
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1rem;
    /* color: #7f8c8d; */
    color: #001220;
}




/* ////////////////////////////////////////////////// */
.explore-tools-section {
    background-color: #fff; 
    /* White background for contrast */
    color: #001220;
    /* color: #fff; */
    padding: 80px 20px;
    text-align: center;
}

.explore-tools-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    /* color: #FE0360; */
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
-webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
color: transparent; /* Make the text color transparent so the gradient shows */

}

.explore-section-subtitle {
    font-size: 1.25rem;
    color: #001220;
    /* color: #7f8c8d; */
    margin-bottom: 40px;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusts columns dynamically */
    gap: 20px;
    justify-items: center;
}

.tool-item {
    /* background: #333; */
    text-align: center;
}

.tool-logo {
    max-width: 40px;
    max-height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.tool-name {
    font-size: 0.8em;
    font-weight: 500;
    /* color: #333333; */
    color: #001220;
    /* color: #ddd; */
}








/* ////////////////////////////////////////////////// */
.total-tools-section {
    background: #001220;
    /* background-color: #f5f5f5;  */
    /* Light background for contrast */
    /* color: #001220; */
    color: #ddd;
    padding: 80px 20px;
    text-align: center;
}

.total-tools-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.total-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    /* color: #FE0360; */
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */
}

.total-section-subtitle {
    font-size: 1.25rem;
    /* color: #7f8c8d; */
    /* color: #001220; */
    color: #ddd;
    margin-top: 20px;
    margin-bottom: 40px;
}

.tools-count {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.counter {
    text-align: center;
}

.count-number {
    font-size: 7em;
    font-weight: 700;
    /* color: #FE0360; */
    margin-bottom: 10px;
    animation: count-up 2s ease-in-out forwards;
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */

}

.count-text {
    font-size: 1.25rem;
    font-weight: 500;
    /* color: #7f8c8d; */
    color: #ddd;
}

.section-description {
    font-size: 1.25rem;
    /* color: #333333; */
    color: #ddd;
    margin-top: 20px;
}

/* Count-up animation */
@keyframes count-up {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}







/* ////////////////////////////////////////////////// */
.testimonials-section {
    background: #f1f1f1;
    /* background-color: #001220;  */
    /* Dark background to differentiate from Features section */
    /* color: #ffffff; */
    color: #001220;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-weight: bold;
    /* color: #FE0360; */
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */

}

.testimonials-section-subtitle {
    font-size: 1.25rem;
    /* color: #b0c4de;  */
    color: #001220;
    /* Lighter text for contrast */
    margin-bottom: 40px;
    margin-top: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: #ffff; 
    /* Darker background for each testimonial card */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-size: 1.125rem;
    /* color: #ecf0f1;  */
    color: #001220;
    /* Light text color for better readability */
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */
    
}

.testimonial-role {
    font-size: 1rem;
    /* color: #bdc3c7;  */
    color: #001220;
    /* Lighter text color for roles */
}
/* //////////////////////////////////////////////////////// */







/* ////////////////////////////////////////////////// */
.partners-section {
    background-color:#001220 ; 
    /* White background for simplicity */
    /* background: #fff; */
    color: #ddd;
    /* color: #001220; */
    padding: 80px 20px;
    text-align: center;
}

.partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    /* color: #FE0360; */
    margin-bottom: 10px;
    font-weight: bold;
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */
}

.partners-section-subtitle {
    font-size: 1.25rem;
    /* color: #7f8c8d; */
    color: #ddd;
    margin-bottom: 40px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}










/* ////////////////////////////////////////////////// */
.cta-section {
    /* background-color: #001220; */
    /* color: #ffffff; */
    background: #fff;
    color: #001220;
    padding: 80px 20px;
    text-align: center;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    /* color: #001220; */
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */
font-weight: bold;
}

.cta-description {
    font-size: 1.25rem;
    color: #001220;
    /* color: #b0c4de; */
    margin-bottom: 40px;
}

.cta-btn {
    background: #fff;
    /* background: linear-gradient(135deg, #FE0360, #2AA9DC); */
    color: #001220;
    padding: 15px 30px;
    padding-left: 3%;
    padding-right: 3%;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    border: 3px solid transparent; /* Set the border to transparent */
  border-image: linear-gradient(135deg, #FE0360, #2AA9DC) 1; /* Apply the gradient to the border */
  /* padding: 10px;  */
  /* Optional: Add padding to make the border more prominent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ////////////////////////////////////////////////// */
.footer-section {
    background-color: #1a1a1a; /* Dark gray background for distinction */
    color: #f4f4f4; /* Light text color */
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.25rem;
    /* color: #FE0360;  */
    /* Accent color */
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-column p {
    font-size: 0.9rem;
    color: #e4e4e4;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #f4f4f4;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    /* color: #FE0360; */
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */

}

.footer-socials {
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    font-size: 1.5rem;
    color: #f4f4f4;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */

    /* color: #FE0360; */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.875rem;
    color: #e4e4e4;
}

.footer-bottom a {
    /* color: #FE0360; */
    background: linear-gradient(135deg, #FE0360, #2AA9DC);
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    color: transparent; /* Make the text color transparent so the gradient shows */

    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ////////////////////////////////////////////////// */






































div,section{
    width: 100%;
    max-width: 100%;
}

.text-align-left{
    text-align: left;
}
.text-align-left .container h1,.text-align-left .container h2{
    font-weight: 500;
    font-family: "Poppins";
    color: #2AA9DC;
    text-align: left;
}
.text-align-left .container p{
    text-align: left;
    line-height: 30px;
    font-family: "Poppins";
    /* line-height: 1.6; */
    text-align: justify;
}

.text-align-left .container a{
color: #FE0360;
}






.contact-form-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form-box input, .contact-form-box textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}
.contact-form-box button {
    background: linear-gradient(135deg, #2AA9DC, #FE0360);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
.contact-form-box button:hover {
    /* background-color: #e6b800; */
    transform: scale(1.1);
}







.faq {
    /* margin-bottom: 20px; */
    margin-top: 30px;
}
.faq h2 {
    font-size: 18px;
    color: #2AA9DC;
}
.faq p {
    line-height: 1.6;
    text-align: justify;
}


.w3-100{
    width: 1300px;
    max-width: 100%;
}    


