:root {
    --primary-blue: #003366;
    --secondary-blue: #0A2540;
    --accent-yellow: #FFC000;
    --soft-yellow: #FFF9E6;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(12px);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-yellow);
    position: relative;
    display: inline-block;
}

.tag {
    display: inline-block;
    background: var(--soft-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo .square,
.logo-text .square {
    color: #FFC000 !important;
}

.logo .off,
.logo-text .off {
    color: #0070C0 !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 0.8; 
}

.logo-text div {
    margin: 0;
    padding: 0;
}

.logo-tagline {
    display: block;
    font-size: 8.5px;
    font-weight: 700; /* Bolder for better readability */
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #e2e8f0; /* Lighter color for better contrast */
    margin-top: -12px;
}

.nav-links ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links li.current-menu-item > a,
nav li.current-menu-item > a {
    color: #FFC000 !important;
}

/* Global menu resets */
nav a, 
.nav-links a,
.nav-links ul li a {
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: var(--transition);
    text-shadow: none !important;
}

nav a:hover,
.nav-links a:hover,
.current-menu-item a,
.nav-links li.current-menu-item > a {
    color: #FFC000 !important;
}

/* Logo Sizing */
.site-logo-header {
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo-header:hover {
    transform: scale(1.05);
}

.site-logo-footer {
    width: auto;
}

.cta-btn-sm,
.nav-links li.cta-btn-sm > a {
    background: var(--accent-yellow);
    color: var(--primary-blue) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.cta-btn-sm:hover,
.nav-links li.cta-btn-sm > a:hover {
    background: #fff !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../hero-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(10, 37, 64, 0.7) 100%);
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
}

.hero-content h2 {
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-blue);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.stats-grid {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.hero-full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 180px; /* Increased to clear floating header */
    padding-bottom: 100px;
    background-color: #020617;
}

.hero-compact {
    min-height: 70vh !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.7), rgba(2, 6, 23, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px; /* Slightly tighter for better readability */
    padding: 0 1.5rem;
    margin-top: -40px; /* Micro-adjustment to balance visual center */
}

/* Standardized Hero Typography */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500; /* Medium weight for better definition */
    line-height: 1.8; /* Increased leading for editorial feel */
    letter-spacing: 0.01em;
    opacity: 0.85;
}


.stat-item p {
    font-weight: 600;
    color: #888;
}

.about-image {
    background: url('https://images.unsplash.com/photo-1573164060897-425941c30241?auto=format&fit=crop&q=80&w=1000') no-repeat center center/cover;
    height: 500px;
    border-radius: 20px;
    position: relative;
}

.about-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 280px;
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.about-card i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--secondary-blue);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    opacity: 0.7;
}

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

.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* CTA / Contact Section */
.cta-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.cta-box {
    background: var(--primary-blue);
    color: #fff;
    padding: 5rem 3rem;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.info-item i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-family: inherit;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #050E17;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    opacity: 0.6;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        flex-direction: column;
    }
    .hero-btns {
        flex-direction: column;
    }
    .stats-grid {
        flex-wrap: wrap;
    }
}

/* Consultation Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.modal-input:focus {
    border-color: #FFC000;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 192, 0, 0.1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #64748b;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
}

.close-modal:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.btn-gold-action {
    background: #FFC000 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-gold-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 192, 0, 0.4);
}

/* Swiper Custom Styles */
.employee-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.employee-swiper.swiper-initialized .swiper-slide-active {
    opacity: 1;
}
/* Fallback if JS fails */
.employee-swiper:not(.swiper-initialized) .swiper-slide:first-child {
    opacity: 1;
}

.employee-swiper .swiper-slide {
    height: auto;
    display: flex;
    width: 100% !important;
}

.employee-pagination {
    bottom: 25px !important;
    z-index: 20 !important;
    transition: all 0.3s ease;
}

.employee-swiper.dots-white .swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.4;
}

.employee-swiper.dots-white .swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1;
}

.employee-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #003399 !important;
    opacity: 0.15;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 6px !important;
}

.footer-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-menu li a {
    color: #94a3b8; /* slate-400 */
    font-size: 0.875rem; /* text-sm */
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.footer-nav-menu li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.employee-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 4px;
    background: #FFC000 !important;
    opacity: 1;
}
