/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap'); :root {
    --primary-color: #0572b2;
    --secondary-color: #0ea5e9;
    --accent-color: #06B6D4;
    --light-bg: #F8FAFC;
    --dark-bg: #373844;
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --section-padding: 80px 0;
    --border-radius: 13px;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
html {
    font-size: 16px
}
body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Utilities */
.text-primary-custom {
    color: var(--primary-color);
}

.text-secondary-custom {
    color: var(--secondary-color);
}
p {
    text-align: justify
}
.lead {
    font-size: 1.15rem;
    font-weight: 400;
}
.bg-light-custom {
    background-color: var(--light-bg);
}

.bg-dark-custom {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-padding {
    padding: var(--section-padding);
}

/* Buttons */
.btn-custom {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    /* box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3); */
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary-custom:hover {
    /* box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4); */
    color: var(--white);
    background-color: #434343;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    padding: 5px 0;
    transition: var(--transition);
    background: #ffffff;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar img {
    height: 80px;
    transition: all 800ms ease
}

.navbar.scrolled img {
    height: 70px;
}

.navbar.scrolled {
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    /* position: fixed; */
    top: 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-link {
    color: #3e3e3e;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--accent-color);
}

.nav-link:focus, .nav-link:hover {
    color: #212121;
}

.nav-link::after {
    content: none;
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    /* Fallback */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}

.hero-btns {
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.1s;
}

/* Services */
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* About Section */
.about-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-img-wrapper img {
    transition: var(--transition);
    width: 100%;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #03151f;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-link {
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-color: var(--dark-bg);
}

.hero-slider {
    position: relative
}

.hero-slider:before {
    content: '';
    inset: 0;
    position: absolute;
    background-color: #00344b80;
    z-index: 99
}

.hero-slider .carousel-caption {
    z-index: 999
}

.hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.75;
    /* Overlay effect handled by opacity or pseudo-element */
}

.hero-slider .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
    max-width: 800px;
    left: 10%;
    right: 10%;
    margin: 0 auto;
}

.hero-slider .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--white);
    margin-bottom: 20px;
}

.hero-slider .carousel-caption p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.9);
}

/* Product Image Cards */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    /* Softer shadow */
    transition: var(--transition);
    height: 100%;
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card-img {
    height: 310px;
    overflow: hidden;
    position: relative;
}

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

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

.product-card-body {
    padding: 25px;
    position: relative;
}

.product-card-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-bg);
    line-height: 1.5;
    font-size: 1.25rem;
}

.product-card-text {
    color: #747474;
    font-size: 0.99rem;
    margin-bottom: 20px;
}

.product-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.product-btn:hover {
    color: var(--secondary-color);
}

.product-btn i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.product-btn:hover i {
    margin-left: 10px;
}

/* Quote / CTA Section */
.quote-cta-section {
    background: url('../images/bg/bg.webp');
    position: relative;
    overflow: hidden;
    background-color: #0b74afe6;
    background-blend-mode: darken;
    position: relative;
    background-position: center center;
}

.quote-cta-section h2 {
    color: #fff
}

.quote-cta-section::before {
    content: '';
    inset: 0;
    position: absolute;
    background-color: #00344bc4;
}

.quote-cta-section .container {
    position: relative;
}

.quote-box {
    border-left: 5px solid var(--secondary-color);
    padding-left: 30px;
}

/* Updates to 'Why Choose' with Image */
.why-choose-img {
    position: relative;
    z-index: 1;
}

.why-choose-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
    margin-left: -50px;
    /* Overlap effect */
}

@media (max-width: 991px) {
    .why-choose-content {
        margin-left: 0;
        margin-top: -30px;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 2.0rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 2px;
    /* slight adjustment for icon alignment */
}

.fw-500 {
    font-weight: 500
}

.page-header {
    padding-top: 10em;
    padding-bottom: 1.5rem;
    background: url('../images/bg/inner-banner.webp');
    background-color: #032f47db;
    background-blend-mode: overlay;
}

.page-header h1 {
    font-size: 2rem;
    color: #ffffff !important;
    text-align: center;
}

.breadcrumb {
    display: none
}

h5.text-secondary-custom.text-uppercase.ls-2 {
    font-size: 1rem;
}

.contact-item {
    flex: 1;
    background-color: #e6eff4;
    padding: 55px 40px 30px;
    border-radius: 25px;
}

.contact-item__icon {
    text-align: center;
}

.contact-item__contact {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.contact-item__contact a {
    font-weight: 500;
}

.contact-item__contact h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-item {
    flex: 1;
}

.contact-item__icon svg {
    color: var(--secondary-color);
}

.brands-list {
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.brands-list span {
    --hover: var();
    --hover: #88d5f83b;
    border: 1px solid #e5e7eb;
    padding: 6px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 150px;
    /* min width */
    max-width: 260px;
    min-height: 58px;
    background-color: #fff;
}

.brands-list span:hover {
    background: var(--hover, #111827);
    color: #ffffff;
    transform: translateY(-2px);
    color: #0ea5e9;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .navbar img {
        height: 51px;
        transition: all 800ms ease
    }

    .navbar.scrolled img {
        height: 51px;
    }

    .carousel-control-next, .carousel-control-prev {
        display: none
    }

    .hero-slider .carousel-item {
        height: 550px;
        min-height: 550px;
        background-color: var(--dark-bg);
    }

    .hero-slider .carousel-caption {
        bottom: 50%;
        max-width: 1000px;
        left: 5%;
        right: 5%;
    }
}

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

    .section-padding {
        padding: 50px 0;
    }

    .page-header {
        padding-top: 2em;
        padding-bottom: 1.5rem;
    }

    .navbar {
        background: var(--white);
        padding: 3px 0;
        position: relative;
    }

    .navbar-toggler {
        border: none;
        color: var(--primary-color);
        background: #434343;
    }
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 2.7rem;
    }
}
