@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* body */
:root {
    --primary-color-blue: #0086ff;
    /* blue */
    --secondary-color-dark: #02114D;
    /* dark */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif !important;
}


/* Smooth Scrolling for the Entire Page */
html {
    scroll-behavior: smooth;
}



.parallax-section .content,
.step-item,
.pricing-card,
.accordion-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.parallax-section .content.visible,
.step-item.visible,
.pricing-card.visible,
.accordion-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide,
.logo-item,
.blog-card,
.contact-info-item,
.form-group,
.footer-column {
    opacity: 0;
    transform: translateY(20px);
    /* Or translateX for slide-in */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-slide.visible,
.logo-item.visible,
.blog-card.visible,
.contact-info-item.visible,
.form-group.visible,
.footer-column.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Nav Active Highlighting */
.nav-link.active {
    color: var(--primary-color-blue);
    /* E.g., #007bff from Utilities Plus branding */
    font-weight: bold;
}

/* Navbar Animation on Scroll (shrink on down, expand on up) */
.navbar {
    transition: padding 0.3s ease, background-color 0.3s ease;
}

.navbar.is-sticky {
    padding: 10px 0;
    /* Shrink on scroll down */
    background-color: var(--secondary-color-dark);
    /* Slight color change for visibility */
}

.navbar.expanded {
    padding: 20px 0;
    /* Expand on scroll up */
}

/* Hero Form Styling (fits existing design) */
.hero-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-form h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: outfit;
    font-size: 16px;
}

.hero-form textarea {
    padding-bottom: 30px;
}

.hero-form button {
    background: var(--secondary-color-dark);
    /* Utilities Plus brand color */
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: outfit;
    font-weight: 400;
    font-size: 16px;
}

button.submit-button,
input,
textarea {
    font-family: outfit;
}

/* CTA Buttons (tweaked from existing download-btn) */
.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    /* Changed from justify-items to justify-content */
    margin-top: 20px;
    flex-wrap: wrap;
    /* Added for better responsiveness */
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center text within buttons */
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    /* Added for better readability */
    transition: all 0.3s ease;
    /* Added smooth transitions */
    min-width: 120px;
    /* Minimum width for consistency */
    text-align: center;
}

.cta-primary {
    cursor: pointer;
    background: var(--secondary-color-dark);
    color: #fff;

}

.cta-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.cta-secondary {
    background: var(--primary-color-blue);
    color: #fff;
    border: 2px solid var(--primary-color-blue);
}

.cta-secondary:hover {
    background: var(--primary-color-blue);
    border-color: var(--primary-color-blue);
    transform: translateY(-2px);
}

/* Fade-in Animation for Feature Cards on Scroll */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive CTA Buttons */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        /* Stack buttons vertically on mobile */
        align-items: center;
        /* Center the buttons */
        gap: 15px;
        /* Increase gap for touch-friendly spacing */
        width: 100%;

    }

    .cta-primary,
    .cta-secondary {
        width: 30%;
        /* Full width on mobile */
        max-width: 280px;
        /* Prevent buttons from being too wide */
        padding: 10px 2px;
        /* Slightly larger padding for touch */
        font-size: 16px;
        /* Ensure readable text size */
    }
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .cta-buttons {
        justify-content: center;
        /* Center buttons on tablet */
        gap: 15px;
    }

    .cta-primary,
    .cta-secondary {
        min-width: 100px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .cta-buttons {
        margin-top: 15px;
        gap: 12px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 20px;
        /* Larger touch targets */
        font-size: 14px;
        max-width: 100%;
    }
}

/* Large screens - optional enhancement */
@media (min-width: 1200px) {
    .cta-buttons {
        gap: 20px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 32px;
        min-width: 160px;
    }
}




/* Navabar style css start */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.is-sticky {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 36px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon,
.close-icon {
    width: 24px;
    height: 24px;
    stroke: #000000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.close-icon {
    display: none;
}

.navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-item {
    margin: 0 6px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color-blue);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 27px;
    background: var(--secondary-color-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.5s ease;
}

.download-btn:hover {
    background: var(--primary-color-blue);
}

.download-btn svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
        padding: 10px;
    }

    .navigation {
        display: none;
        width: 100%;
        margin-top: 20px;
    }

    .navigation.active {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 20px;
    }

    .nav-item {
        margin: 5px 0;
    }

    .download-btn {
        display: none;
    }

    .navbar.is-sticky .close-icon {
        display: block;
    }

    .navbar.is-sticky .menu-icon {
        display: none;
    }

    .navbar .close-icon {
        display: none;
    }

    .navbar .menu-icon {
        display: block;
    }

    .navigation.active+.menu-toggle .close-icon {
        display: block;
    }

    .navigation.active+.menu-toggle .menu-icon {
        display: none;
    }
}

/* Navabar style css End */




/* Hero Section Style css Start    */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-section {
    padding: 128px 0;
    background-image: url('./images/bg-1.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
    background-color: rgba(100, 116, 139, 0.1);
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.hero-text {
    padding: 80px 40px;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    border-radius: 9999px;
}

.hero-label svg {
    width: 24px;
    height: 24px;
    stroke: #000000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 8px;
}

.hero-title {
    font-size: 36px;
    color: var(--primary-color-blue);
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0 10px;

}

.hero-title span {
    color: var(--secondary-color-dark);
}

.hero-description {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.75;
    margin-top: 4px;
    text-transform: capitalize;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.store-buttons img {
    height: 56px;
}

.hero-image {
    margin-top: 16px;
    padding-top: 8px;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
    display: block;
}

.feature-card {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: #ffffff;
    border-radius: 9999px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
}

.feature-card .icon {
    width: 36px;
    height: 36px;
    background: var(--secondary-color-dark);
    border-radius: 50%;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h6 {
    font-size: 14px;
    font: bold;

    color: var(--secondary-color-dark);
}

.feature-card.top {

    right: -50px;
}

.feature-card.bottom {
    bottom: 112px;
    left: -30%;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text {
        padding: 80px 40px;
        text-align: left;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-image {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-image img {
        height: 600px;
    }

    .store-buttons {
        justify-content: flex-start;
    }
}

@media (min-width: 1280px) {
    .feature-card {
        display: flex;
    }

    .feature-card.top {
        right: -80px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-text {
        padding: 40px 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-image img {
        height: 300px;

    }

    .store-buttons {
        justify-content: center;
    }

}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .store-buttons img {
        height: 48px;
    }
}


/* hero seaction style css End  */






/* Services Section Start  */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-section {
    padding: 80px 0;
}

.section-header {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}

.section-label-1 {
    display: inline-block;
    font-size: 14px;
    color: var(--secondary-color-dark);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.section-title-1 {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    line-height: 1.2;
}

.section-description-1 {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-top: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 48px;
}

.service-card {
    text-align: center;
}

.service-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 49% 80% 40% 90% / 50% 30% 70% 80%;
    border: 1px solid #e5e7eb;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary-color-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
}

.service-description {
    font-size: 16px;
    color: #4b5563;
    margin-top: 8px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 12px;
        padding-top: 80px;
    }

    .section-title-1 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 96px 12px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 48px 0;
    }

    .section-title-1 {
        font-size: 28px;
    }

    .section-description-1 {
        font-size: 14px;
    }

    .services-grid {
        padding-top: 32px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-title-1 {
        font-size: 18px;
    }

    .service-description-1 {
        font-size: 14px;
    }
}

/* Services Section End */





/* Feature Section Start */




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.features-section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: 400px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

.feature-content {
    margin-left: 32px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color-blue);
    margin-top: 16px;
    line-height: 1.2;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color-blue);
    text-decoration: none;
    margin-top: 24px;
}

.learn-more svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary-color-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.divider {
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 32px;
}

.feature-item:first-child {
    margin-top: 0;
}

.feature-icon {
    width: 20%;
    height: 50px;
    border-radius: 50%;
    border: 1px dashed rgba(37, 99, 235, 0.4);
    background-color: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--secondary-color-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.feature-description {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 8px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .feature-image img {
        height: 600px;
    }

    .feature-icon {
        width: 60px;
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-image img {
        height: 620px;
    }

    .feature-content {
        margin-left: 20px;
    }

    .feature-icon {
        width: 10%;
        height: 40px;
    }

}

@media (max-width: 640px) {
    .features-section {
        padding: 48px 0;
    }

    .feature-content {
        margin-left: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-image img {
        height: 400px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

    .feature-icon {
        width: 18%;
        height: 40px;
    }

    .feature-icon svg {
        width: 14px;
        height: 14px;
    }

    .feature-item {
        gap: 16px;
        margin-top: 24px;
    }

    .learn-more {
        font-size: 13px;
    }

    .learn-more svg {
        width: 20px;
        height: 20px;
    }
}

/* Feature Section End */




/* Detailed Examination Section Start  */





.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.parallax-section {
    position: relative;
    padding: 80px 0;
    background-image: url('/images/parallax.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Creates a basic parallax effect */
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.7);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.section-title-exam {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;

    line-height: 1.2;
}

.section-description-exam {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    max-width: 672px;
    margin: 24px auto 0;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.btn-primary {
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: var(--secondary-color-dark);

    text-decoration: none;
    transition: all 0.5s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color-dark);
    border-color: var(--secondary-color-dark);
}

.btn-secondary {
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
    transition: all 0.5s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color-blue);
    border-color: #ffffff;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title-exam {
        font-size: 36px;
    }

    .content {
        padding-bottom: 0;
    }
}

@media (max-width: 640px) {
    .parallax-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description-exam {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 6px 20px;
    }

    .button-group {
        gap: 8px;
        margin-top: 16px;
    }
}


/* Detailed Examination Section End  */



/* About Us Start  */





.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.content {
    margin-left: 32px;
    display: flow-root
}

.section-label {
    display: inline-flex;
    font-size: 14px;
    color: var(--primary-color-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: left !important;
    /* Align text to start */

}

.section-title {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    line-height: 1.2;
    text-align: left;
    /* Align text to start */
}

.section-description {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 24px;
    text-align: left;
    /* Align text to start */
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
}

.step-item {
    display: flex;
    flex-direction: column;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px dashed;
}

.step-icon.green {
    background-color: #f0fdf4;
    border-color: #f0fdf4;
}

.step-icon.red {
    background-color: #fef2f2;
    border-color: #fef2f2;
}

.step-icon.blue {
    background-color: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: #000000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-top: 24px;
}

.step-description {
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    margin-top: 8px;
}

.feature-image img {
    max-width: 100%;
    height: 400px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .feature-image img {
        height: 500px;
        margin-top: 10%;
    }


    .steps-grid {
        grid-template-columns: repeat(3, 2fr);
    }


}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .content {
        margin-left: 20px;

    }

    .feature-image img {
        height: 600px;

    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 48px 0;
    }

    .content {
        margin-left: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-icon {
        width: 64px;
        height: 64px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-image img {
        height: 300px;
    }

    .steps-grid {
        gap: 24px;
        margin-top: 24px;

        display: grid;
        grid-template-columns: auto auto;
        justify-content: center;
        align-items: center;

    }
}




/* About Us End  */


/* Pricing css Start  */




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.pricing-section {
    padding: 80px 0;
}

.header {
    max-width: 662px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.section-title-price {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    line-height: 1.2;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.toggle {
    display: inline-flex;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px;
    background-color: #f3f4f6;
}

.toggle-label {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    color: #374151;
    transition: all 0.3s ease;
}

.toggle input {
    display: none;
}

.toggle input:checked+.toggle-label {
    background-color: var(--secondary-color-dark);
    color: #ffffff;
    border-radius: 6px;
}

.toggle input:not(:checked)+.toggle-label:hover {
    background-color: #e5e7eb;
}

.toggle input#toggle-count-monthly:checked+.toggle-label {
    border-radius: 6px 0 0 6px;
}

.toggle input#toggle-count-annual:checked+.toggle-label {
    border-radius: 0 6px 6px 0;
}

.save-text {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    text-align: center;
    margin-top: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 56px;

}

.pricing-card {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px;
    overflow: hidden;

}

.card-header {
    text-align: center;
    padding-top: 40px;
}

.card-header img {
    width: 115px;
    height: 112px;
    margin: 0 auto;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
}

.card-price {
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 4px;
    display: inline-flex;
    align-items: center;
}

.card-price sup {
    font-size: 30px;
    margin-right: 4px;
}

.card-price-period {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}

.card-content {
    padding: 20px;
    margin: 0 auto;
}

.card-content ul {
    text-align: left;
}

.card-content li {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.card-content svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 8px;
}

.card-content .check {
    stroke: var(--primary-color-blue);
}

.card-content .cross {
    stroke: #6b7280;
}

.card-content h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.card-content h5.muted {
    color: #6b7280;
}

.card-footer {
    display: flex;
    justify-content: center;
    padding: 0 40px 40px;
}

.card-button {
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: var(--secondary-color-dark);
    border: 1px solid var(--primary-color-blue);
    text-decoration: none;
    text-align: center;
    width: 100%;
    transition: all 0.5s ease;
}

.card-button:hover {
    background-color: var(--secondary-color-dark);
    border-color: var(--secondary-color-dark);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }







}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .save-text {
        font-size: 14px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-price {
        font-size: 40px;
    }

    .card-price sup {
        font-size: 24px;
    }

    .card-price-period {
        font-size: 14px;
    }

    .card-content h5 {
        font-size: 14px;
    }

    .card-content svg {
        width: 50px;
        height: 20px;
    }

    .card-header img {
        width: 100px;
        height: 96px;
    }

    .card-button {
        font-size: 14px;
        padding: 6px 20px;
    }

    .toggle-label {
        font-size: 13px;
        padding: 6px 16px;
    }

    .pricing-grid {
        gap: 24px;
        margin-top: 32px;
    }
}

/* Pricing css End  */




/* FAQ Section Css start */






.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hr {
    font-weight: lighter;
}

.faqs-section {
    padding: 80px 0;
    background-color: #f9fafb42;
}

.header {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}

.section-label-faq {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color-blue);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1em;

}

.section-title-faq {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    line-height: 1.2;
}

.accordion {
    margin-top: 56px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 2px whitesmoke;
}



.accordion-item {
    position: relative;
    overflow: hidden;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color-dark);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Outfit;
}

.accordion-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-icon.open {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.open {
    max-height: 200px;
    /* Adjust as needed based on content size */
    padding: 0 20px 20px;
}

.accordion-content p {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .faqs-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-label {
        font-size: 13px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 12px 16px;
    }

    .accordion-content p {
        font-size: 14px;
    }

    .accordion-content {
        padding: 0 16px;
    }

    .accordion-content.open {
        padding: 0 16px 16px;
    }

    .accordion-icon {
        width: 14px;
        height: 14px;
    }
}

/* FAQ Section Css End' */



/* Testimonials section Style  Start */



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-section {
    padding: 80px 0;
}

.header {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.section-title-test {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    line-height: 1.2;
}

.carousel {
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 12px;
}

.testimonial-card {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin: 16px 0;
    line-height: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color-blue);
}

.testimonial-role {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-top: 4px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.nav-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
    background-color: var(--primary-color-blue);
    border-color: var(--primary-color-blue);
    color: #ffffff;
}

.nav-button svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .carousel-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 640px) {
    .testimonial-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-label {
        font-size: 13px;
    }

    .carousel {
        margin-top: 32px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-title {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 14px;
        margin: 12px 0;
    }

    .testimonial-user img {
        width: 40px;
        height: 40px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-role {
        font-size: 13px;
    }

    .carousel-nav {
        margin-top: 24px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .nav-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Testimonials section Style  End */



/* Trusted Client Company Style css Start  */





.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.trusted-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.header {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}

.section-title-trusted {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.logo-grid {
    margin-top: 56px;
    overflow: hidden;
}

.logo-wrapper {
    display: flex;

}

.logo-wrapper:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
        width: 160px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .logo-item {
        flex: 0 0 25%;
    }
}

@media (min-width: 1024px) {
    .logo-item {
        flex: 0 0 16.67%;
    }
}

@media (max-width: 640px) {
    .trusted-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .logo-grid {
        margin-top: 32px;
    }

    .logo-item {
        flex: 0 0 50%;
    }

    .logo-item img {
        height: 32px;
    }
}

/* Trusted Client Company Style css End  */




/* Blog Section Style css Start */




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-section {
    padding: 80px 0;
}

.header {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.section-title-blog {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    line-height: 1.2;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
    align-items: center;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.blog-image img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
    height: auto;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    list-style: none !important;
    outline: none;
    text-decoration: none;
    /* Removed underline (which appears as border-bottom) */
    border-bottom: none;
    /* Explicitly remove any border-bottom */
}

.blog-description {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
    border-bottom: none;
    /* Explicitly remove any border-bottom */
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author img {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    border-radius: 50%;
}

.blog-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 4px;
    transition: all 0.3s ease;
    border-bottom: none;
    text-decoration: none;
}

.blog-author-name:hover {
    text-decoration: underline;
    color: var(--primary-color-blue);
}

.blog-date {
    display: flex;
    font-weight: 500;
    color: #6b7280;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section-title-blog {
        font-size: 36px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding: 48px 0;
    }

    .section-title-blog {
        font-size: 28px;
    }

    .section-label {
        font-size: 13px;
    }

    .blog-grid {
        margin-top: 32px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-description {
        font-size: 14px;
    }

    .blog-content {
        padding: 16px;
    }

    .blog-author img {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }

    .blog-author-name {
        font-size: 13px;
    }

    .blog-date {
        font-size: 13px;
    }
}

/* Blog Section Style css End */


/* Contact Section Style css Start  */



.contact-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.contact-label {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.contact-title {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    line-height: 1.2;
}

.contact-info {
    display: grid;
    grid-template-columns: auto;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color-blue);
}

.info-text {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
}

.info-link {
    font-size: 12px;
    color: var(--primary-color-blue);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

.form-container {
    padding: 24px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;

}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #d1d5db;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    padding: 8px 24px;
    border-radius: 6px;
    border: 1px solid var(--secondary-color-dark);
    background-color: var(--secondary-color-dark);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 25px;
    transition: background-color 0.5s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color-dark);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .contact-title {
        font-size: 36px;
    }

    .contact-info {
        display: grid;

        text-align: left;
    }

    .contact-info-item {
        flex-direction: row;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-textarea-group {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr 2fr;
    }

    .form-container {
        margin-left: 96px;
    }
}

/* Contact Section Style css End  */



/* Footer style css Start   */

/* Footer Section Styles */
footer {
    background-color: #17243A;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-bottom: 64px;
    padding-top: 64px;
}

.logo-section-footer {
    grid-column: span 2;
}

.logo-container-footer {
    max-width: 672px;
    margin: 0 auto;
}

.logo-img {
    height: 40px;
    margin-right: 20px;
}

.logo-text {
    color: #d1d5db;
    max-width: 300px;
    margin-top: 24px;
    font-size: 16px;
}

.contact-links-footer {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.contact-link-footer {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #9ca3af;
}

.contact-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.footer-column {
    grid-column: span 1;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #f3f4f6;
    text-transform: uppercase;
}

.footer-links {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.footer-links p {
    margin: 0;
}

.footer-links a {
    display: inline-flex;
    gap: 8px;
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9ca3af;
}

.footer-bottom {
    padding: 16px 0;
    background-color: var(--secondary-color-dark);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-text {
    color: #ffffff;
    font-size: 16px;
}

.footer-bottom-text a {
    color: #ffffff;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color-blue);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .grid-footer {
        grid-template-columns: repeat(4, 1fr);
    }

    .logo-section-footer {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .grid-footer {
        grid-template-columns: repeat(5, 1fr);
    }

    .logo-section-footer {
        grid-column: span 2;
    }
}

/* Footer style css End   */


/* back to top Start  */

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color-blue);
    color: #ffffff;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    line-height: 36px;
    transition: background-color 0.3s ease;
}

.back-to-top svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    stroke-width: 2;
}

.back-to-top:hover {
    background-color: var(--secondary-color-dark);
}

/* back to top End   */