/* CSS Variables */
:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --success: #27ae60;
    --warning: #f39c12;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #95a5a6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation - Fixed and constrained */
.navbar {
    min-height: 70px !important;
    max-height: 70px !important;
    padding: 0.5rem 0 !important;
}

.navbar-brand {
    padding: 0 !important;
    margin-right: 2rem;
    height: 50px !important;
    overflow: hidden !important;
}

/* Brand container */
.brand-logo {
    display: flex;
    align-items: center;
    height: 56px;              /* navbar height */
    max-height: 56px;
    padding: 0 8px;
    overflow: visible;
}

/* Logo image – rectangular safe */
.brand-logo img,
.nova-logo,
.logo-img,
.navbar-brand img {
    height: 40px;              /* primary control */
    max-height: 40px;
    width: auto;               /* preserve aspect ratio */
    max-width: 220px;          /* allow rectangle width */
    object-fit: contain;
    display: block;
}

}

/* Navbar items alignment */
.navbar-nav {
    align-items: center;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

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

.navbar-cta {
    margin-left: 1rem;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0F172A 0%, #41255d 100%);
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #ffd700;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trust Section */
.trust-section {
    padding: 2rem 0;
    background: var(--light);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.5rem;
}

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

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.service-card h4 {
    margin-bottom: 1rem;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--secondary);
    margin-top: 5px;
}

.countries-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.country-flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.country-flag {
    text-align: center;
}

.country-flag img {
    width: 40px;
    height: 30px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.country-flag span {
    display: block;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
    color: #bdc3c7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Back to Top */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-cta {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    @media (max-width: 768px) {
    .brand-logo img {
        height: 34px;
        max-width: 180px;
    }
}

}