
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg,
            #0f172a 0%,
            #111827 50%,
            #1b2344 80%);
    color: white;
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: black;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-title img.logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

header h1 {
    font-size: 25px;
    margin: 0;
}

.desktop-links {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.desktop-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-links li a:hover {

    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}

.desktop-links li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #38bdf8;
    transition: 0.3s;
    transform: translateX(-50%);
}

.desktop-links li a:hover::after {
    width: 70%;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 25px 15px;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(to right,
            #38bdf8,
            #fefefe,
            lightslategray,
            #535cc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: white;
    font-size: 2.1rem;
}

.hero-content p {
    color: #dbeafe;
    line-height: 1.8;
    font-size: 1rem;
}

.buttons {
    margin-top: 35px;
}

.cta {
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(135deg,
            #2563eb,
            #38bdf8);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
}


.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 60px 20px;

}

.stat-card {
    background: whitesmoke;
    padding: 15px;
    border-radius: 15px;
    width: 220px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-card p {

    color: black;
    font-weight: 500;
}

.stat-card h2 {
    color: black;
}

.tips {
    padding: 70px 20px;
    text-align: center;
}

.tip-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tip-card {
    background: rgb(18, 76, 113);
    width: 280px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(56, 50, 50, 0.1);
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}


section {
    padding: 20px 8%;
}

section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #38bdf8;
}

section p {
    line-height: 1.7;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: none;

}

.card {
    background: white;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-10px);
}

.card h2 {
    color: black;
    margin-bottom: 15px;
}

.card p {
    color: black;
}

.reports-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report {
    background: linear-gradient(rgb(255, 255, 255),
            rgb(245, 245, 245)), ;
    width: 650px;
    padding: 10px;
    border-radius: 15px;
    margin-left: 300px;
    border: 1px solid rgb(255, 255, 255);
}

.report h3 {
    color: #f2f5f6;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #542be6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}


.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review {
    background: lightslategray;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.8;
}


.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category {
    padding: 15px 25px;
    border-radius: 30px;
    background: rgba(4, 115, 162, 0.15);
    color: white;
    transition: .3s;
}

.category:hover {
    background: #38bdf8;
}

.trust {
    text-align: center;
}

.trust ul {
    list-style: none;
    margin-top: 30px;
}

.trust li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}


.cta-banner {
    text-align: center;
    background: linear-gradient(135deg,
            #2563eb,
            #38bdf8);
    border-radius: 15px;
    margin: 15px 8%;
    padding: 20px 20px;
}

.cta-banner h2 {
    color: white;
}

.cta-banner button {
    margin-top: 15px;
    padding: 15px 15px;
    border: none;
    border-radius: 15px;
    background: white;
    color: #2563eb;
    font-weight: 700;
    cursor: pointer;
}

.tip-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 800px;
    margin: 30px auto;
}

.photo-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.photo-gallery img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeIn 1s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    width: 50%;
    height: 550px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    padding: 5px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .desktop-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 10px;
        background: #8b5cf6;
        width: 220px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .desktop-links.active {
        display: flex;
    }

    .desktop-links li {
        margin: 10px 0;
        list-style: none;
    }
}
