/* Google Fonts Imported HTML */

:root {
    --primary-color: #001f3f;
    /* Deep Navy Blue */
    --primary-light: #003366;
    --accent-color: #0271cb;
    /* Brand Blue */
    --accent-hover: #0258a3;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9fbfd;
    --bg-white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(2, 113, 203, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(2, 113, 203, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    box-shadow: 0 6px 15px rgba(2, 113, 203, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 10px rgba(2, 113, 203, 0.25));
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 5px;
    font-size: 1.1rem;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 31, 63, 0.75), rgba(0, 31, 63, 0.85)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 850px;
    color: var(--bg-white);
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 45px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* Services */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 50px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--accent-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(2, 113, 203, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(2, 113, 203, 0.3);
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* About Section */
.about {
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.about-features i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.about-image .image-wrapper {
    width: 100%;
    height: 550px;
    border-radius: 15px;
    background: url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?q=80&w=1974&auto=format&fit=crop') center/cover;
    box-shadow: -25px 25px 0 rgba(2, 113, 203, 0.2);
    transition: var(--transition);
}

.about-image:hover .image-wrapper {
    box-shadow: -15px 15px 0 rgba(2, 113, 203, 0.4);
    transform: translate(-5px, 5px);
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
}

/* ── Email Card ── */
.contact-email-box {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 31, 63, 0.09);
    overflow: hidden;
    border-top: 5px solid var(--accent-color);
    transition: var(--transition);
}

.contact-email-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(0, 31, 63, 0.13);
}

.contact-email-inner {
    padding: 60px 50px 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.contact-email-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(2, 113, 203, 0.15), rgba(2, 113, 203, 0.05));
    border: 2px solid rgba(2, 113, 203, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 28px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(2, 113, 203, 0.15);
}

.contact-email-box:hover .contact-email-icon {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 12px 35px rgba(2, 113, 203, 0.4);
    transform: scale(1.07) rotate(-5deg);
}

.contact-email-inner h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-email-inner>p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(2, 113, 203, 0.08);
    border: 2px solid rgba(2, 113, 203, 0.25);
    border-radius: 50px;
    padding: 14px 32px;
    margin-bottom: 28px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.contact-email-link i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-email-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.15);
}

/* ── Phone Links ── */
.contact-phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-light);
    border: 1px solid #e1e8ed;
    border-radius: 50px;
    padding: 10px 24px;
    transition: var(--transition);
}

.contact-phone-link i {
    color: var(--accent-color);
}

.contact-phone-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.1);
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    padding: 15px 40px;
}

/* ── Meta row (address + name) ── */
.contact-meta {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--primary-color);
    padding: 22px 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    background: rgba(255, 255, 255, 0.07);
    padding: 10px 22px;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-meta-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-meta-item i {
    color: var(--accent-color);
    font-size: 1rem;
}



/* Footer */
.footer {
    background-color: #030d17;
    color: var(--bg-white);
    padding: 80px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 50px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 22px;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(2, 113, 203, 0.25));
    transition: var(--transition);
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(2, 113, 203, 0.5));
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 450px;
    font-size: 1.05rem;
}

.footer-links h3 {
    color: var(--bg-white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        margin-bottom: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 30px 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f1f1f1;
    }

    .nav.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-list a {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Mobile Fixes for Added content */
    .logo-img {
        height: 60px;
        /* Limit huge logo height on phones */
    }

    .contact-email-inner {
        padding: 40px 20px 30px;
    }

    .contact-email-link {
        font-size: 1.05rem;
        padding: 12px 20px;
        word-break: break-all;
    }

    .contact-phone-link {
        font-size: 1rem;
        padding: 10px 18px;
        width: 100%;
        justify-content: center;
    }

    .contact-phones {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .contact-meta {
        padding: 15px 10px;
    }
}

/* ==========================================================================
   Cookie Bar
   ========================================================================== */
.cookie-bar {
    position: fixed;
    bottom: -150%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    justify-content: center;
    transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-bar.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.cookie-btn-accept:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 113, 203, 0.3);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .cookie-bar {
        padding: 20px 15px;
    }
}