:root {
    --primary-color: #00506D;
    --primary-dark: #003a50;
    --primary-light: #e6eff2;
    --accent-color: #FFD700;
    --text-color: #333333;
    --soft-gray: #f8f9fa;
    --font-main: 'League Spartan', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: white;
    font-size: 0.9rem;
}

.top-bar i {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-dark) !important;
    padding: 0.5rem 1rem !important;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-get-quote {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-get-quote:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0, 80, 109, 0.8), rgba(0, 58, 80, 0.8)), url('../images/hero-bg.png') center/cover no-repeat;
    position: relative;
}

.text-accent {
    color: var(--accent-color);
}

/* About Section */
.about-img-container {
    position: relative;
    height: 450px;
    width: 100%;
}

.about-img-1 {
    width: 350px;
    height: 350px;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 50px;
}

.about-img-2 {
    width: 300px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50px;
    border: 10px solid white;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.bg-light-primary {
    background-color: var(--primary-light);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Industries Section */
.industries-section {
    background: linear-gradient(rgba(0, 80, 109, 0.9), rgba(0, 58, 80, 0.9)), url('../images/industries-bg.png') center/cover no-repeat;
}

.industry-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-10px);
}

.industry-icon {
    color: var(--accent-color);
}

.industry-card:hover .industry-icon {
    color: var(--primary-color);
}

/* Products Section */
.product-card {
    transition: all 0.3s ease;
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.product-img {
    height: 250px;
    overflow: hidden;
}

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

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

/* Carousel Tweaks */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    opacity: 1 !important;
}

/* Contact Info Box */
.contact-info-box {
    position: relative;
    overflow: hidden;
}

.contact-info-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: white;
    opacity: 0.05;
    border-radius: 50%;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-whatsapp,
.btn-phone {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-phone {
    background-color: var(--primary-color);
}

.btn-whatsapp:hover,
.btn-phone:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
    .about-img-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-img-1,
    .about-img-2 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 20px;
        width: 100%;
        max-width: 400px;
    }

    .about-img-2 {
        border-width: 5px;
    }

    .experience-badge {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -50px;
        margin-bottom: 30px;
    }
}