/* ////////////////////////////////////////////////// */
.banner{
    width: 100%;
    max-width: 100%;
    /* height: 550px; */
    height: 100vh;
    background: #001220;
    /* margin-top: 100px; */

    /* background: linear-gradient(135deg, #3a3d96, #4e54c8); */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.banner-img{
    width: 100%;
    max-width: 100%;
    height: auto;
}
/* ////////////////////////////////////////////////// */
.hero-title {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    margin-top: -120px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    }
    .hero-buttons {
        margin: auto;
        /* display: flex; */
        /* gap: 15px; */
        margin-top: 40px;
        }
        
        .hero-btn {
        padding: 15px 50px;
        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;
        cursor: pointer;
        }
        
        .hero-btn.primary1{
        background: linear-gradient(135deg, #523f86, #d6055c);
        /* background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59); */
        color: #fff;
        border: none;
        }
        
        .hero-btn.secondary1{
        background: transparent;
        color: #fff;
        border: 2px solid #523f86;
        }
        
        .hero-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        
    /* ////////////////////////////////////////////////// */
    .star {
        position: absolute;
        width: 2px;
        height: 2px;
        background: white;
        border-radius: 50%;
        /* z-index: 20; */
        animation: twinkling 2s infinite ease-in-out;
    }
    @keyframes twinkling {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 1; }
    }
    .shooting-star {
        position: absolute;
        width: 3px;
        height: 3px;
        background: #fff;
        border-radius: 50%;
        animation: shooting 5s infinite linear;
        /* z-index: 20; */
    }
    @keyframes shooting {
        0% { transform: translate(0, 0); opacity: 1; }
        100% { transform: translate(200px, -200px); opacity: 0; }
    }
    


    /* ////////////////////////////////////////////////// */
.features-section {
    background-color: #f1f1f1; 
    /* White background */
    color: #001220;
    padding: 60px 20px;
    text-align: center;
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-section-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    /* color: #523f86; */
    background: linear-gradient(135deg, #523f86, #d6055c);
    -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: #523f86; */
    margin-bottom: 15px;
    background: linear-gradient(135deg, #523f86, #d6055c);
-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: #523f86; */
    margin-bottom: 10px;
    background: linear-gradient(135deg, #523f86, #d6055c);
-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-grid2 {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* 10 items per row */
    gap: 20px;
    justify-items: center;
}

.tools-grid2 .tool-item {
    /* background: #333; */
    text-align: center;
}

.tools-grid2 .tool-logo {
    max-width: 40px;
    max-height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.tools-grid2 .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 */
    background-color: #2d3436;
    /* 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: #523f86; */
    margin-bottom: 10px;
    color:#d6055c;
}

.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: #523f86; */
    margin-bottom: 10px;
    animation: count-up 2s ease-in-out forwards;
    color: #d6055c;

}

.count-text {
    font-size: 1.25rem;
    font-weight: 500;
    /* color: #7f8c8d; */
    color: #ddd;
}

.total-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: #523f86; */
    background: linear-gradient(135deg, #523f86, #d6055c);
    -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, #523f86, #d6055c);
    -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 ;  */
    background-color: #2d3436;
    /* 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: #523f86; */
    margin-bottom: 10px;
    font-weight: bold;
    color:#d6055c;
}

.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-box {
    /* 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-section-cta-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    /* color: #001220; */
    background: linear-gradient(135deg, #523f86, #d6055c);
    -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-section-description {
    font-size: 1.25rem;
    color: #001220;
    /* color: #b0c4de; */
    margin-bottom: 40px;
}

.cta-section-cta-btn {
    background: #fff;
    /* background: linear-gradient(135deg, #523f86, #d6055c); */
    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, #523f86, #d6055c) 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-section-cta-btn:hover {
    background: linear-gradient(135deg, #523f86, #d6055c);
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}




/* Call to Action Section */
.cta {
    /* background: linear-gradient(135deg, #4a90e2, #9013fe);  */
/* background: linear-gradient(135deg, #3a3d96, #4e54c8);  */
background: linear-gradient(135deg, #523f86, #d6055c);

/* Darker, contrasting gradient */
height: auto;
padding: 60px;
text-align: center;
color: #f0f0f0; /* Lighter grey for text */
animation: fadeIn 2s ease-in-out;
position: relative;
}

.cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
font-weight: bold;
text-transform: capitalize;
letter-spacing: 2px;
/* color: #feca57;  */
color: #fff;
/* Use bright yellow for headings to stand out */
}

.cta p {
font-size: 1.2rem;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
/* color: #e0e0e0;  */
color: #fff;
/* Lighter grey for readability */
}

/* CTA Button */
.cta-btn {
padding: 15px 40px;
/* background-color: #ff9f43;  */
background: #fff;
/* Bright orange button */
color: #333; /* Dark text on the button for contrast */
border-radius: 50px;
text-decoration: none;
font-size: 1.3rem;
font-weight: bold;
text-transform: capitalize;
transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
/* background-color: #ff6b1b;  */
/* Darker orange for hover effect */
transform: scale(1.1);
/* color: #ddd; */
}

/* CTA Features Section */
.cta-features {
display: flex;
justify-content: center;
margin-top: 40px;
gap: 30px;
flex-wrap: wrap;
}

.cta-feature {
background-color: rgba(255, 255, 255, 0.1); /* Transparent white */
padding: 30px;
border-radius: 15px;
width: 100%;
max-width: 300px;
text-align: left;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.cta-feature h3 {
font-size: 1.5rem;
margin-bottom: 15px;
/* color: #feca57;  */
color: #fff;
/* Yellow headings to stand out */
}

.cta-feature p {
font-size: 1rem;
/* color: #e0e0e0; */
color: #fff;
/* Light grey for readability */
}

.cta-feature:hover {
transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
.cta-features {
    flex-direction: column;
    align-items: center;
}
}
