﻿:root {
    --primary: #0047AB;
    --primary-dark: #002B5C;
    --secondary: #00A3E0;
    --accent: #3b82f6;
    --dark: #0a1628;
    --text: #333333;
    --text-light: #666666;
    --light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    padding: 10px 0;
    font-size: 14px;
}

    .top-bar a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.3s;
    }

        .top-bar a:hover {
            color: var(--accent);
        }

    .top-bar i {
        color: var(--accent);
        margin-right: 8px;
    }

/* Navbar */
.main-navbar {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 60px;
}

.main-navbar .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark) !important;
    padding: 25px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

    .main-navbar .nav-link::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 18px;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s;
    }

    .main-navbar .nav-link:hover::after,
    .main-navbar .nav-link.active::after {
        width: calc(100% - 36px);
    }

    .main-navbar .nav-link:hover {
        color: var(--primary) !important;
    }

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 30px !important;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s;
}

    .btn-nav:hover {
        background: var(--primary-dark);
    }

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0,47,107,0.92) 0%, rgba(0,27,68,0.85) 100%);
    }

.hero-slide-1 {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
}

.hero-slide-2 {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=80');
}

.hero-slide-3 {
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1920&q=80');
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15%;
}

    .hero-content .subtitle {
        color: var(--accent);
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .hero-content h1 {
        font-size: 60px;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-content p {
        font-size: 18px;
        color: rgba(255,255,255,0.85);
        max-width: 600px;
        margin-bottom: 35px;
    }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary-hero {
    background: var(--accent);
    color: var(--dark);
}

    .btn-primary-hero:hover {
        background: var(--white);
        color: var(--primary);
    }

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    margin-left: 15px;
}

    .btn-outline-hero:hover {
        background: var(--white);
        color: var(--primary);
        border-color: var(--white);
    }

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

    .slider-dot.active {
        background: var(--accent);
        transform: scale(1.3);
    }

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    font-size: 24px;
}

    .slider-arrow:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--dark);
    }

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 45px;
    color: var(--dark);
    line-height: 1.3;
}

    .section-title span {
        color: var(--primary);
    }

.section-desc {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
}

/* Services Section */
.services-section {
    background: var(--light);
}

.service-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 0;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-bottom: 3px solid transparent;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--primary);
        transition: height 0.4s;
        z-index: 0;
    }

    .service-card:hover::before {
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,71,171,0.2);
    }

    .service-card .icon {
        width: 80px;
        height: 80px;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: var(--white);
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
        transition: all 0.4s;
    }

    .service-card:hover .icon {
        background: var(--accent);
        color: var(--dark);
    }

    .service-card h4 {
        font-size: 22px;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
        transition: color 0.4s;
    }

    .service-card p {
        color: var(--text-light);
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        transition: color 0.4s;
    }

    .service-card:hover h4,
    .service-card:hover p {
        color: var(--white);
    }

    .service-card .read-more {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 1;
        transition: color 0.4s;
    }

    .service-card:hover .read-more {
        color: var(--accent);
    }

/* About Section */
.about-section {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

    .about-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .about-image-wrapper .experience-box {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background: var(--primary);
        color: var(--white);
        padding: 30px 40px;
        text-align: center;
    }

.experience-box .number {
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.experience-box .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    padding-left: 50px;
}

    .about-content .quote {
        font-size: 20px;
        font-style: italic;
        color: var(--primary);
        border-left: 4px solid var(--accent);
        padding-left: 25px;
        margin: 30px 0;
    }

        .about-content .quote span {
            display: block;
            font-size: 14px;
            font-style: normal;
            color: var(--text);
            margin-top: 10px;
            font-weight: 600;
        }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

        .feature-list li .icon-check {
            width: 24px;
            height: 24px;
            background: var(--accent);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .feature-list li strong {
            color: var(--dark);
        }

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

    .btn-main:hover {
        background: var(--primary-dark);
        color: var(--white);
    }

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
    }

.stat-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

    .stat-item::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60px;
        background: rgba(255,255,255,0.2);
    }

    .stat-item:last-child::after {
        display: none;
    }

    .stat-item .number {
        font-size: 60px;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: 10px;
        font-family: 'Poppins', sans-serif;
    }

        .stat-item .number span {
            color: var(--accent);
        }

    .stat-item .label {
        color: rgba(255,255,255,0.8);
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

    .cta-section h2 {
        font-size: 40px;
        color: var(--white);
        margin-bottom: 20px;
    }

    .cta-section p {
        color: rgba(255,255,255,0.8);
        font-size: 18px;
        margin-bottom: 30px;
    }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

    .btn-cta:hover {
        background: var(--white);
        color: var(--primary);
    }

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--primary);
    padding: 50px 40px;
    height: 100%;
    color: var(--white);
}

    .contact-info-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: var(--white);
    }

    .contact-info-card p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 40px;
    }

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

    .contact-info-item .icon {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .contact-info-item h5 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 5px;
        font-family: 'Poppins', sans-serif;
        color: var(--accent);
    }

    .contact-info-item span {
        font-size: 16px;
    }

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 18px;
        transition: all 0.3s;
        text-decoration: none;
    }

        .social-links a:hover {
            background: var(--accent);
            color: var(--dark);
        }

.contact-form-wrapper {
    background: var(--light);
    padding: 50px 40px;
    height: 100%;
}

    .contact-form-wrapper h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 55px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 15px 20px;
    font-size: 15px;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: none;
    }

textarea.form-control {
    height: 150px;
    resize: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

    .btn-submit:hover {
        background: var(--primary-dark);
    }

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-widget p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-widget .logo {
    margin-bottom: 20px;
}

    .footer-widget .logo img {
        height: 50px;
        filter: brightness(0) invert(1);
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

    .footer-contact-item i {
        color: var(--accent);
        font-size: 18px;
        margin-top: 3px;
    }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    margin-top: 60px;
}

    .footer-bottom p {
        color: rgba(255,255,255,0.6);
        margin: 0;
        font-size: 14px;
    }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding: 0 8%;
    }

        .hero-content h1 {
            font-size: 40px;
        }

    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .faq-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card {
        margin-bottom: 30px;
    }

    .stat-item::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .hero-slider {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn-hero {
        padding: 14px 25px;
        font-size: 13px;
    }

    .btn-outline-hero {
        display: none;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .slider-arrows {
        display: none;
    }

    .about-image-wrapper .experience-box {
        right: 0;
        bottom: -20px;
        padding: 20px 30px;
    }

    .experience-box .number {
        font-size: 36px;
    }
}
