body {
    font-family: "Poppins", sans-serif;
}

.header {
    /* background: #e7eefe; */
    transition: all 0.2s ease-in-out;
    margin: 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.header.nav-scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: rgba(67, 71, 85, 0.01) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.01) 0px 0.25em 1em;
}
.header .nav-link {
    color: #222;
    font-weight: 500;
    margin: 0 4px !important;
    padding: 5px 25px !important;
    border-radius: 50px;
}
.header .nav-link:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: rgba(67, 71, 85, 0.1) 0px 0px 0.25em,
        rgba(90, 125, 188, 0.1) 0px 0.25em 1em;
}
.hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.gradient-spin {
    position: absolute;
    bottom: 0%;
    width: 1080px;
    height: 1080px;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 180deg at 50% 50%,
        rgba(0, 255, 194, 0.08) 0deg,
        rgba(38, 0, 255, 0.12) 120.07deg,
        rgba(0, 119, 255, 0.08) 179.52deg,
        rgba(255, 0, 153, 0.05) 241.65deg,
        rgba(4, 112, 229, 0.2) 299.6deg,
        rgba(0, 255, 194, 0.08) 360deg
    );
    z-index: -1;
    border-radius: 50%;
    transform: translate(20%, 10%) rotate(0deg);
    filter: blur(100px);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(10%, 50%) rotate(0deg);
        width: 2080px;
        height: 2080px;
        opacity: 1;
        filter: blur(100px);
    }
    100% {
        transform: translate(10%, 50%) rotate(360deg);
        width: 2080px;
        height: 2080px;
        opacity: 1;
        filter: blur(100px);
    }
}

.hero .content {
    position: relative;
    z-index: 1; /* ensures content is above the gradient */
}
.lead {
    font-size: 16px;
}
.feature-icon {
    font-size: 3rem;
    color: #4f46e5;
}

.site-img {
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s;
    height: 230px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #eee;
}
footer {
    font-size: 0.9rem;
    color: #777;
}
@media (min-width: 1200px) {
    .fs-4 {
        font-size: 2.5rem !important;
    }
}
.cta-button {
    background: linear-gradient(135deg, #e7eefe 0%, #fff 100%);
    color: #000;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.bg-light-gradient {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 194, 0.01) 0%,
        rgba(0, 119, 255, 0.04) 50%,
        rgba(4, 112, 229, 0.2) 100%
    );
    background-size: 200% 200%;
    background-repeat: no-repeat;
    transition: background-size 1s ease, background-position 1s ease;
    background-position: left center;
}

.bg-light-gradient:hover {
    background-position: center;
    background-position: right center;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #333;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accordion-button {
    transition: background-color 0.3s, box-shadow 0.3s;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #000;
    box-shadow: none;
    font-weight: 600;
}

.accordion-body {
    transition: opacity 0.3s ease-in-out;
    padding-top: 0;
    color: #777;
    font-size: 14px;
}

.icon-25 {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.icon-35 {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.icon-45 {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.bg-custom-primary {
    background: #e7eefe;
}

.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.price {
    font-size: 2rem;
    font-weight: 600;
}
.social-icons a {
    font-size: 1.2rem;
    color: #343a40;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #0d6efd;
}

.pricing-plans {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 194, 0.04) 0%,
        rgba(0, 119, 255, 0.08) 50%,
        rgba(4, 112, 229, 0.2) 100%
    );
    background-size: 200% 200%;
    background-repeat: no-repeat;
    transition: background-size 1s ease, background-position 1s ease;
    background-position: left center;
}
@media (max-width: 768px) {
    .header.nav-scrolled {
        border-radius: 10px;
    }
    .header {
        border-radius: 10px;
    }
}

@media (max-width: 990px) {
    .header .nav-link {
        background: transparent;
        padding: 5px 5px !important;
    }
    .header.nav-scrolled {
        margin: 12px;
    }
    .header {
        margin: 12px;
    }
    .header .nav-link:hover {
        background-color: transparent;
        box-shadow: none;
    }
}
