:root {
    --primary-blue: #1b4793;
    /* From Logo waves */
    --accent-gold: #f9bf2e;
    /* From Logo sun */
    --dark-text: #222222;
    --light-text: #ffffff;
    --bg-light: #f8f9fa;
}

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

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

main {
    padding-top: 105px; /* Adds space for the fixed header */
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    z-index: 1100;
    position: relative;
}

.top-bar .contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--light-text);
    text-decoration: none;
}

nav {
    background-color: var(--primary-blue) !important;
    padding: 10px 0 !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

nav.scrolled {
    top: 0;
    padding: 5px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
}

.logo-section img {
    height: 85px;
    width: 85px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.company-name {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.company-tagline {
    color: #f9bf2e;
    /* Gold color */
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2px 0 0 0;
    /* Slight negative margin to reduce gap */
    text-shadow: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px; /* Reduced from 30px for tighter spacing */
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-top: 3px solid var(--primary-blue);
    border-radius: 0 0 5px 5px;
}

.dropdown-content a {
    color: var(--dark-text);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-transform: none;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown>a i {
    font-size: 10px;
    margin-left: 5px;
}

.contact-btn {
    background-color: #133a7a; /* Slightly darker blue to stand out on the blue header */
    color: white !important;
    padding: 10px 20px; /* Reduced padding to match other gaps */
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #133a7a;
}

/* Hero Section */
.hero {
    height: 90vh;
    /* Increased from 80vh */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video covers the area without distortion */
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    /* Reduced from 20px */
    text-transform: uppercase;
}

.hero p {
    font-size: 1.8rem;
    /* Further increased from 1.5rem */
    max-width: 1000px;
    /* Adjusted to accommodate larger text */
    margin: 0 auto;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), #800000);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-about .footer-logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: white;
    padding: 2px;
}

.footer-about .logo-text h2 {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.footer-about .logo-text p {
    font-size: 12px;
    color: var(--accent-gold);
    margin: 0;
}

.footer-about p.description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    color: #ccc;
    font-size: 14px;
}

.footer-contact ul li i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 250px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #222;
    transform: translateY(-3px);
}

/* Our Business Concern Section */
.business-concerns {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.business-concerns .section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.business-concerns .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

.concern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.concern-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.concern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), #2c5364);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.concern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 71, 147, 0.2);
    border-color: var(--primary-blue);
}

.concern-card:hover::before {
    opacity: 1;
}

.concern-card h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.concern-card:hover h3 {
    color: white;
}

.concern-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.concern-card:hover i {
    transform: scale(1.1);
    color: white;
}

/* Modern Minimalist Service Grid */
.service-grid-minimal {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.s-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.s-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.s-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.s-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.s-card:hover::before {
    transform: scaleX(1);
}

.s-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.s-card:hover .icon-wrapper {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(180deg);
}

.s-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.s-card p {
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.s-card .read-more {
    margin-top: 25px;
    font-weight: 600;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.s-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .s-grid {
        grid-template-columns: 1fr;
    }

    .s-card {
        padding: 40px 25px;
    }
}

/* Responsive Styles */
.hamburger {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .top-bar {
        display: none !important;
    }

    nav {
        top: 0;
        background: var(--primary-blue);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    nav .container {
        padding: 2px 10px;
    }

    .logo-section img {
        height: 32px;
        width: 32px;
        background: white;
        padding: 2px;
        border-radius: 4px;
    }

    .logo-text {
        display: block !important;
        max-width: 200px;
        overflow: hidden;
    }

    .company-name {
        font-size: 14px;
        padding: 0 5px !important;
        color: white !important;
        background: transparent !important;
    }

    .company-tagline {
        font-size: 8px !important;
    }

    .hamburger {
        display: block;
        color: white;
        margin-top: -2px;
        /* Pull it up a bit */
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: 100vh;
        width: 70%;
        background: var(--primary-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .dropdown-content {
        position: static;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.05);
        box-shadow: none;
        display: none;
        /* Hidden by default on mobile */
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: white;
        padding: 10px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        text-shadow: none;
        width: 100%;
        display: block;
        padding: 15px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 0 30px;
    }

    .footer-map {
        height: 300px;
    }
}

/* Product Gallery Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}