:root {
    --navy-blue: #001F54;
    --light-navy: #003366;
    --accent-blue: #0047AB;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-gray: #CCCCCC;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--navy-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: var(--navy-blue);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--accent-blue);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--white);
    transform: translateX(5px);
}

.brand-icon {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    transform: rotate(90deg);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::before {
    width: 100%;
}

/* Main Content */
main {
    min-height: calc(100vh - 300px);
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    opacity: 0.1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-primary-custom {
    background-color: var(--white);
    color: var(--navy-blue);
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--white);
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-left: 1rem;
}

.btn-secondary-custom:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--light-navy);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Card Styling */
.card-custom {
    background-color: var(--light-navy);
    border: 2px solid var(--accent-blue);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 71, 171, 0.3);
    border-color: var(--white);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-text {
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-navy) 100%);
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--light-navy);
    border-left: 4px solid var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-left-color: var(--accent-blue);
    transform: translateX(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    font-weight: 700;
    color: var(--white);
}

.testimonial-position {
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Service Grid */
.service-item {
    background-color: var(--light-navy);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    clip-path: polygon(0 0, 98% 0, 100% 5%, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--white);
    transform: scale(1.03);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Compliance Standards */
.compliance-badge {
    background-color: var(--light-navy);
    border: 2px solid var(--white);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-badge:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    transform: scale(1.1);
}

.compliance-badge-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    background-color: var(--light-navy);
    padding: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 98%, 98% 100%, 0 100%);
}

.form-control-custom {
    background-color: var(--navy-blue);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 20px;
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: var(--navy-blue);
    border-color: var(--white);
    color: var(--white);
    outline: none;
    box-shadow: none;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label-custom {
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info-box {
    background-color: var(--light-navy);
    padding: 2rem;
    margin-bottom: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-left: 4px solid var(--white);
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-text {
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: #000B1E;
    padding: 60px 0 20px;
    border-top: 3px solid var(--accent-blue);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}