/* =========================================================
   NOVEN LANKA WEBSITE
   Version: 1.0
   Purpose: Main Website Styles
   ========================================================= */


/* =========================================================
   1. GLOBAL RESET
   ========================================================= */

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


/* =========================================================
   2. GLOBAL STYLES
   ========================================================= */

body {
    font-family: 'Poppins', sans-serif;
    color: #212529;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   3. NAVIGATION
   ========================================================= */

.navbar {
    min-height: 80px;
    padding: 8px 0;
    background: #ffffff;
}

.navbar-brand {
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: auto;
    height: 70px;
    max-height: 70px;
    object-fit: contain;
    display: block;
}

.navbar .nav-link {
    font-weight: 500;
    color: #212529;
    margin-left: 10px;
}

.navbar .nav-link:hover {
    color: #0d6efd;
}


/* =========================================================
   4. HERO SECTION
   ========================================================= */

.hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.hero h1 {
    color: #212529;
    font-weight: 700;
    line-height: 1.2;
     font-size: 3.4rem;
}

.hero p {
    color: #6c757d;
    line-height: 1.8;
}


/* =========================================================
   5. SERVICE CARDS
   ========================================================= */

.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   6. FEATURED PRODUCT IMAGES
   ========================================================= */

.card img {
    height: 220px;
    object-fit: cover;
}


/* =========================================================
   7. SECTION HEADINGS
   ========================================================= */

section h2 {
    font-weight: 700;
}


/* =========================================================
   8. BUTTONS
   ========================================================= */

.btn {
    font-weight: 600;
}


/* =========================================================
   9. RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 991px) {

    .navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .hero {
        padding: 80px 0;
    }

}


@media (max-width: 767px) {

    .navbar {
        min-height: 70px;
    }

    .navbar-logo {
        height: 50px;
        max-height: 50px;
    }

    .hero {
        padding: 60px 0;
        text-align: center;
    }

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

    .hero p {
        font-size: 1rem;
    }

}
/* =========================================================
   FINAL NAVBAR LOGO SIZE FIX
   ========================================================= */

.navbar .navbar-brand img {
    width: auto !important;
    height: 55px !important;
    max-width: 180px !important;
    max-height: 55px !important;
    object-fit: contain !important;
    display: block !important;
}

.navbar .navbar-brand {
    height: 65px;
    display: flex;
    align-items: center;
    padding: 0;
}

/* FINAL NAVBAR LOGO SIZE FIX */

.navbar .navbar-brand img {
    width: auto !important;
    height: 55px !important;
    max-width: 180px !important;
    max-height: 55px !important;
    object-fit: contain !important;
    display: block !important;
}

.navbar .navbar-brand {
    height: 65px;
    display: flex;
    align-items: center;
    padding: 0;
}
/* =========================================================
   MOBILE NAVIGATION FIX
   ========================================================= */

@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-collapse.show {
        display: block !important;
    }
}