﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
}

.thispage a {
    text-decoration: none;
    color: inherit;
}

.thispage nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #182848;
    color: white;
    position: relative;
    z-index: 1000;
}

.thispage .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f7d774;
}

.thispage .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1002;
}

    .thispage .menu-btn span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .thispage .menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .thispage .menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .thispage .menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.thispage .nav-links {
    display: flex;
    gap: 2rem;
}

    .thispage .nav-links a {
        color: white;
        font-weight: 500;
        transition: color 0.3s;
    }

        .thispage .nav-links a:hover {
            color: #f7d774;
        }

@media (max-width: 768px) {
    .thispage .menu-btn {
        display: flex;
    }

    .thispage .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 2rem;
        background: rgba(24, 40, 72, 0.97);
        padding: 1rem 1.5rem;
        border-radius: 10px;
        gap: 1rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        width: max-content;
        z-index: 1001;
    }

        .thispage .nav-links.show {
            display: flex !important;
        }
}

.thispage .hero {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    color: #111;
    position: relative;
    overflow: hidden;
}

    .thispage .hero h1, .thispage .hero p {*/
        /* opacity: 0; */
        /* animation: fadeInUp 1s ease forwards; */
    /*}

    .thispage .hero h1 {
        font-size: 3rem;
        animation-delay: 0.3s;
    }

        .thispage .hero h1 span {
            color: #4b6cb1;
        }

    .thispage .hero p {
        font-size: 1.2rem;
        margin-top: 1rem;
        animation-delay: 0.6s;
    }

.thispage .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.thispage .particle {
    position: absolute;
    background: linear-gradient(90deg, rgba(75,108,183,0.2), rgba(24,40,76,0.3));
    border-radius: 50%;
    opacity: 0.6;
    animation: floatAround infinite ease-in-out;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(30px, -20px) scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: translate(-30px, 20px) scale(1);
        opacity: 0.4;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thispage section {
    padding: 4rem 2rem;
    opacity: 0;
}

.thispage #services.show {
    animation: fadeInLeft 1s ease forwards;
}

.thispage #pricing.show {
    animation: fadeInRight 1s ease forwards;
}

.thispage #about.show {
    animation: zoomIn 1s ease forwards;
}

.thispage #contact.show {
    animation: fadeInUp 1s ease forwards;
}

.thispage #services {
    background: #f1f6fb;
}

.thispage #pricing {
    background: #fef9ef;
}

.thispage #about {
    background: #f0f0f0;
}

.thispage #contact {
    background: #f9f9f9;
}

.thispage .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #182848;
}

    .thispage .section-title i {
        margin-right: 0.5rem;
        color: #f7d774;
    }

.thispage .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.thispage #services .card-grid {
    display: flex;
    flex-direction: column;
}

.thispage .card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .thispage .card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .thispage .card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .thispage .card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .thispage .card img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .thispage .card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .thispage .card h3 {
        color: #4b6cb1;
        margin-bottom: 0.5rem;
    }

    .thispage .card p {
        font-size: 1rem;
    }

.thispage form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

    .thispage form.show {
        opacity: 1;
    }

.thispage input,
.thispage textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.thispage button.submit {
    background: #4b6cb1;
    color: white;
    padding: 0.8rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

    .thispage button.submit:hover {
        background: #182848;
    }

footer {
    background: #182848;
    color: white;
    text-align: center;
    padding: 2rem;
}

    footer img {
        margin-top: 1rem;
        max-width: 80px;
        height: auto;
    }

@media (min-width: 700px) {
    .thispage .hero {
        padding: 10rem 2rem;
    }
    .thispage.particle{
        opacity: 0.4;
    }

        .thispage .hero h1 {
            font-size: 4rem;
        }

        .thispage .hero p {
            font-size: 2.4rem;
        }

    .thispage #services .card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.faq-link-container {
    text-align: center;
    margin-top: 2rem;
}

.faq-link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .faq-link-button:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

.faq-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}*/
/* PRICING SECTION */
/*.thispage .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.thispage .pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

    .thispage .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }

    .thispage .pricing-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .thispage .pricing-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .thispage .pricing-card:nth-child(3) {
        animation-delay: 0.6s;
    }

.thispage .plan-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #182848;
    margin-bottom: 0.5rem;
}

.thispage .plan-price {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4b6cb1;
}

    .thispage .plan-price span {
        font-size: 0.9rem;
        color: #888;
    }

.thispage .plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    color: #555;
}

    .thispage .plan-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

.thispage .pricing-card button {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.thispage .pricing-card.featured {
    border: 2px solid #4b6cb1;
    background: #f4f8ff;
}

.thispage .badge {
    display: inline-block;
    background: #d4a019;*/ /* darker yellow */
    /*color: white;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.main{
    width: 100%;
}*/
