/* Modern Styling for SEO Section */



/* .level-section {
    margin: 50px 0;
} */



/* meeet our client  */
/* .team-section-simple {
    padding: 80px 0;
    background: #f8f9fa;
} */

.sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title .title {
    font-size: 14px;
    font-weight: 600;
    color: #0028a2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sec-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1f2e;
    margin-bottom: 15px;
}

.sec-title .text {
    font-size: 16px;
    color: #6c757d;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    padding: 30px 30px 0;
}

.member-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0028a2;
}

.member-info {
    padding: 20px;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 5px;
}

.member-info p {
    font-size: 14px;
    color: #0028a2;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #0028a2;
    color: white;
}

@media (max-width: 768px) {
    .team-section-simple {
        padding: 50px 0;
    }

    .sec-title h2 {
        font-size: 28px;
    }

    .team-member {
        width: 260px;
    }

    .member-image img {
        width: 150px;
        height: 150px;
    }
}



/* banner index carasoul */
.banner-carousel {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    animation: fadeEffect 0.5s ease;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.banner-content .title {
    font-size: 14px;
    font-weight: 600;
    color: #0028a2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.banner-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1a1f2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content .text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.banner-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
}

/* Navigation Buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 43, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #0028a2;
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.carousel-dots {
    text-align: center;
    margin-top: 40px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0028a2;
    width: 30px;
    border-radius: 10px;
}

.dot:hover {
    background: #0028a2;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-carousel {
        padding: 50px 0;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-image {
        margin-top: 30px;
    }

    .banner-image img {
        max-width: 100%;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}


/* pricing list */

.pricing-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .badge {
    background: rgba(255, 107, 43, 0.1);
    color: #0028a2;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    display: inline-block;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0a0f1c;
    margin-bottom: 16px;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 43, 0.2);
}

/* Popular Plan Highlight */
.pricing-card.popular {
    border: 2px solid #0028a2;
    background: white;
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #0028a2;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
}

.plan-price {
    margin: 20px 0 10px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #0028a2;
}

.price-period {
    font-size: 16px;
    color: #7e8b9c;
    font-weight: 500;
}

.plan-description {
    font-size: 14px;
    color: #5a6e85;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.features-list li {
    margin-bottom: 14px;
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: #0028a2;
    font-size: 16px;
    width: 20px;
}

.features-list li.disabled {
    color: #b9c2d0;
}

.features-list li.disabled i {
    color: #cbd5e1;
}

/* Button */
.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: 2px solid #0028a2;
    color: #0028a2;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-plan:hover {
    background: #0028a2;
    color: white;
    transform: translateY(-2px);
}

.pricing-card.popular .btn-plan {
    background: #0028a2;
    color: white;
    border: none;
}

.pricing-card.popular .btn-plan:hover {
    background: #e05a1f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1199px) {
    .col-lg-3 {
        width: 50%;
    }
}

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

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .col-lg-3 {
        width: 100%;
    }

    .price {
        font-size: 38px;
    }

    .popular-badge {
        font-size: 10px;
        padding: 4px 30px;
        top: 15px;
    }
}





/* banner form each pages */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a2a3f;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.col-6 {
    flex: 0 0 50%;
    padding: 0 16px;
}

.col-4 {
    flex: 0 0 33.333%;
    padding: 16px 16px;
}

.col-3 {
    flex: 0 0 25%;
    padding: 0 16px;
}

.col-12 {
    flex: 0 0 100%;
    padding: 0 16px;
}

@media (max-width: 992px) {

    .col-6,
    .col-4,
    .col-3 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a2540;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title .badge {
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-title p {
    color: #5a6e7c;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background: #f5a623;
    padding: 14px 32px;
    border-radius: 40px;
    color: #0a2540;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #ffb84d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid #f5a623;
    color: #f5a623;
}

.btn-outline:hover {
    background: #f5a623;
    color: #0a2540;
}

/* Hero Section */
.hero {
    background: linear-gradient(105deg, #0a2540 0%, #1b4a6e 100%);
    padding: 80px 0 100px;
    color: white;
}

.hero h1 {
    color: white;
    font-size: 52px;
}

.hero .highlight {
    color: #f5a623;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.feature-list li i {
    color: #f5a623;
    font-size: 18px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

/* Form Box */
.form-box {
    background: white;
    border-radius: 20px;
    padding: 28px;
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-box h4 {
    color: #0a2540;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-group input {
    flex: 1;
    min-width: 160px;
    padding: 14px 18px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

.form-group button {
    background: #0028a2;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

/* Cards */
.card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #ecf2f8;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Pricing Table */
.pricing-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    /* text-align: center; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #ecf2f8;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #0028a2;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    margin: 25px 0;
}

.pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf2f8;
}

/* Process Steps */
.step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #f5a623;
    color: white;
    font-size: 32px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* FAQ Accordion */
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid #ecf2f8;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px 24px;
    border-top: 1px solid #ecf2f8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-plus {
    display: none;
}

.faq-item.active .faq-minus {
    display: inline-block;
}

.faq-minus {
    display: none;
}

/* Audit Form */
.audit-section {
    background: #f9fbfd;
    padding: 60px 0;
}

.audit-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.audit-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.audit-form input {
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    width: 280px;
}

/* Footer CTA */
.cta-section {
    background: #0a2540;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}
