/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');


:root {
    --white-color: #ffffff;
    --dark-color: #1b1b1b;
    --primary-color: #0a4da2;
    --secondary-color: #13b0ff;
    --accent-color: #f5b301;
    --light-bg: #f5f7fb;
    --light-pink-color: #faf4f5;
    --medium-grey-color: #cccccc;

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2.1rem;
    --font-size-xxl: 2.6rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --border-radius-s: 8px;
    --border-radius-n: 30px;
    --border-radius-card: 20px;

    --site-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark-color);
    background-color: var(--light-bg);
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.section-content {
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: var(--site-max-width);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(90deg, rgba(10, 77, 162, 0.9), rgba(19, 176, 255, 0.9));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    color: var(--white-color);
}

.nav-logo {
    font-family: "Miniver", cursive;
    font-size: 1.9rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-text {
    font-family: "Poppins", sans-serif;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.02em;
}

.logo-highlight {
    color: var(--accent-color);
}

.menu-toggle {
    color: var(--white-color);
    font-size: 1.6rem;
    display: none;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-item .nav-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-n);
    font-weight: var(--font-weight-medium);
    transition: background 0.3s ease, color 0.3s ease;
    color: var(--white-color);
}

.nav-item .nav-link a:hover,
.nav-item .nav-link a:focus-visible {
    background: var(--white-color);
    color: var(--primary-color);
}

.nav-close {
    display: none;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 5rem;
    background: linear-gradient(120deg, rgba(10, 77, 162, 0.85), rgba(19, 176, 255, 0.65)),
                url('check.jpg') center/cover no-repeat;
    color: var(--white-color);
}

.hero-content {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero-details .tagline {
    font-size: var(--font-size-s);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.8rem;
}

.hero-details .title {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.hero-details .description {
    font-size: var(--font-size-m);
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-details .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: var(--border-radius-n);
    background: var(--accent-color);
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(245, 179, 1, 0.2);
}

.button-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.hero-highlights {
    display: grid;
    gap: 0.7rem;
    font-size: var(--font-size-n);
}

.hero-highlights i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: min(360px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(245, 179, 1, 0.4)),
                url('check.jpg') center/cover no-repeat;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.about-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-section .section-content {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.section-title {
    position: relative;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: var(--accent-color);
}

.about-details p {
    font-size: var(--font-size-m);
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius-card);
    box-shadow: 0 20px 45px rgba(18, 60, 128, 0.2);
}

.service-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.service-section .service-heading {
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.service-section .service-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.service-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: var(--white-color);
    padding: 2.2rem 1.8rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 25px 60px rgba(12, 56, 116, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(10, 77, 162, 0.08);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: var(--font-weight-semibold);
}

.service-card p {
    font-size: var(--font-size-n);
    color: #425066;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(10, 77, 162, 0.18);
}

.contact-section {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white-color);
}

.contact-content {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: flex-start;
}

.contact-details p {
    margin: 1.2rem 0;
    color: rgba(255, 255, 255, 0.85);
}

.contact-list {
    display: grid;
    gap: 0.9rem;
    font-size: var(--font-size-n);
}

.contact-list i {
    color: var(--accent-color);
    margin-right: 0.7rem;
}

.contact-list a {
    color: var(--white-color);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.contact-form {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-card);
    padding: 2rem;
    display: grid;
    gap: 1.2rem;
    backdrop-filter: blur(4px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-s);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    font-size: var(--font-size-n);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    border: none;
    background: var(--accent-color);
    color: var(--dark-color);
}

.submit-button:hover,
.submit-button:focus-visible {
    box-shadow: 0 18px 40px rgba(245, 179, 1, 0.3);
}

.footer {
    padding: 2.5rem 0;
    text-align: center;
    background: #0a2640;
    color: var(--white-color);
}

.footer .social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer .social a {
    font-size: 1.3rem;
    color: var(--white-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social a:hover,
.footer .social a:focus-visible {
    transform: translateY(-3px);
    color: var(--accent-color);
}

.footer .list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-n);
}

.footer .list a {
    color: var(--white-color);
    transition: color 0.3s ease;
}

.footer .list a:hover,
.footer .list a:focus-visible {
    color: var(--accent-color);
}

.footer .copyright {
    font-size: 0.9rem;
    opacity: 0.75;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-item {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80%, 320px);
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
    }

    .nav-item .nav-link a {
        width: 100%;
        justify-content: flex-start;
        font-size: 1.05rem;
        color: var(--white-color);
        background: transparent;
        padding-left: 0;
    }

    .nav-item .nav-link a:hover,
    .nav-item .nav-link a:focus-visible {
        background: transparent;
        color: var(--accent-color);
    }

    body.show-mobile-menu .nav-item {
        right: 0;
    }

    .nav-close {
        display: block;
        margin-top: auto;
    }

    .hero-section {
        text-align: left;
        padding-top: 7rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .hero-details .title {
        font-size: 2.1rem;
    }

    .hero-details .description {
        font-size: 1rem;
    }
}
