﻿
.heroo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #5988aa, #b99c9c);
}

    .heroo h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #0d47a1;
    }

    .heroo p {
        font-size: 1.2rem;
        max-width: 700px;
        margin-bottom: 30px;
        color: #333;
    }

.cta-buttonss {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

    .cta-buttonss a {
        text-decoration: none;
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: 600;
        transition: background 0.3s ease;
    }

.btn-primary {
    background-color: #0d47a1;
    color: white;
}

    .btn-primary:hover {
        background-color: #1565c0;
    }

.btn-secondary {
    background-color: transparent;
    border: 2px solid #0d47a1;
    color: #0d47a1;
}

    .btn-secondary:hover {
        background-color: #e3f2fd;
    }

.trust-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 600px) {
    .heroo h1 {
        font-size: 2rem;
    }

    .heroso p {
        font-size: 1rem;
    }
}
/*---------------------what we offer-------------------------*/
.features {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

    .features h2 {
        font-size: 2rem;
        color:black;
        margin-bottom: 40px;
    }

.cont {
    max-width: 1319px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #242425;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .feature-item h3 {
        color: white;
        margin: 15px 0 10px;
    }

    .feature-item p {
        color: white;
        font-size: 1rem;
    }

.icon {
    font-size: 2.2rem;
    color: white;
}

/* Hover Effects */

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Shine Effect */
.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(76deg, rgb(80 76 76 / 20%) 0%, rgb(137 137 137 / 80%) 50%, rgb(69 67 67 / 20%) 100%);
    transform: skewX(-25deg);
}

.shine:hover::before {
    animation: shine 1.2s ease-in-out forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Shake Effect */
.hover-shake:hover {
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

/*---------------why choose us------------------*/
.why-choose-alt {
    background-color: #a9c732;
    padding: 80px 20px;
}

.container-alt {
    max-width: 1046px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.left-content {
    flex: 1;
    min-width: 300px;
}

    .left-content h2 {
        font-size: 2.2rem;
        color: #0d47a1;
        margin-bottom: 30px;
    }

        .left-content h2 span {
            color: white;
        }

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-list li {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 1.05rem;
        color: white;
        padding: 12px 10px;
        border-radius: 6px;
        transition: background 0.3s ease, transform 0.2s ease;
        cursor: default;
    }

        .why-list li:hover {
            background-color: #e3f2fd;
            transform: translateX(4px);
        }

        .why-list li i {
            color: #3135c2;
            font-size: 1.3rem;
            margin-right: 15px;
        }

.right-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .right-image img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    }
    /*----------pricing section------------*/
.pricing-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

    .pricing-section h2 {
        font-size: 2.2rem;
        color: #0d47a1;
        margin-bottom: 10px;
    }

    .pricing-section .subheading {
        font-size: 1rem;
        color: #555;
        margin-bottom: 50px;
    }

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: #353a40;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 30px;
    width: 300px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        border-image: linear-gradient(135deg, #0d47a1, #42a5f5);
        border-image-slice: 1;
        box-shadow: 0 6px 20px rgba(13, 71, 161, 0.15);
    }

    .pricing-card h3 {
        color: #cecece;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .pricing-card .price {
        font-size: 1.8rem;
        color: #1565c0;
        margin-bottom: 20px;
    }

        .pricing-card .price span {
            font-size: 0.9rem;
            color: #a2a2a2;
        }

    .pricing-card ul {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
    }

        .pricing-card ul li {
            margin-bottom: 10px;
            color: #ffffff;
            font-size: 0.95rem;
        }

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    border: 2px solid #739fe2;
    color: #ececec;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .btn:hover {
        background-color: #e3f2fd;
    }

    .btn.primary {
        background-color: #0d47a1;
        color: white;
    }

        .btn.primary:hover {
            background-color: #1565c0;
        }

/* Featured Plan Style */
.featured {
    border: 2px solid #0d47a1;
}
/*------faqs-----*/
.faq-section {
    background-color: #67a6e4;
    padding: 80px 20px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-section h2 {
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #0d47a1;
    cursor: pointer;
    position: relative;
}

    .faq-question::after {
        content: "+";
        position: absolute;
        right: 20px;
        font-size: 1.2rem;
        transition: transform 0.3s;
    }

    .faq-question.active::after {
        content: "–";
    }

.faq-answer {
    padding: 0 20px 18px;
    display: none;
    color: #333;
    font-size: 0.95rem;
}
