:root {
    --primary: #FF6B35;
    /* Vibrant orange (main brand color) */
    --secondary: #FF9F1C;
    /* Warm golden-orange */
    --accent: #FF4D00;
    /* Deep burnt orange */
    --light: #FFF3E6;
    /* Soft warm off-white */
    --dark: #2B1200;
    /* Deep chocolate for contrast */
    --text: #4A2C1A;
    /* Warm brown for text */
    --overlay: rgba(255, 107, 53, 0.85);
}


body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.text-serif {
    font-family: 'Playfair Display', serif;
}

/* Elegant Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.92);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
    letter-spacing: 1px;
    position: relative;
}

.navbar-brand span {
    color: var(--accent);
    font-weight: 800;
}

.navbar-brand:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar-brand:hover:after {
    width: 100%;
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    padding: 8px 12px !important;
    transition: all 0.3s ease;
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:before,
.nav-link.active:before {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover:after {
    transform: translateX(0);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.2);
}

.btn-secondary {
    background-color: var(--accent);
    color: white;
}


.btn-secondary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-light {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}






.btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background-color: #e05a2b;
    border-color: #e05a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Button Container */
.button-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Base Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Primary Button (Request Quote) */
.btn-primary {
    background-color: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background-color: #e05a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background-color: #ff6b35;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Active/Focus States */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .button-container {
        gap: 10px;
    }
}


.btn-outline-primary {

    border: 1px solid #ccc !important;
}




@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto;
}

.section-intro {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: white;
    position: relative;
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.product-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

/* Standards Section */
.standards-section {
    background-color: var(--primary);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.standards-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-geometric.png');
    opacity: 0.05;
}

.standard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.standard-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
}

.standard-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Enhanced Signage Section */
.signages-section {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
}

.signage-card {
    border-radius: 0;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.signage-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
    opacity: 0.1;
    z-index: -1;
}

.signage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.signage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.danger {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.warning {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
    color: var(--dark);
}

.caution {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.notice {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.mandatory {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.fire {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.signage-card h3 {
    color: #fff;
}

.signage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-card {
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    height: 100%;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Form Styles */
.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-geometric.png');
    opacity: 0.05;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-logo:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-logo span {
    color: var(--accent);
}

.social-icons {
    margin-top: 2rem;
}

.social-icon {
    font-size: 1.2rem;
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 4rem;
}

/* Animations */
.animate-up {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-up.show {
    transform: translateY(0);
    opacity: 1;
}



@media (max-width: 991px) {

    .section-title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {


    .navbar-brand {
        font-size: 1.5rem;
    }

    .contact-card,
    .standard-card,
    .product-card,
    .signage-card {
        padding: 2rem;
    }
}

@media (max-width: 575px) {

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* Base card styling */
.product-card .card-body {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Overlay to ensure text visibility */
.product-card .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content positioning */
.product-card .card-body>* {
    position: relative;
    z-index: 2;
    color: white !important;
}

.product-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.product-card .product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


.product-card-barcode-scanners {
    background: url('./images/scanner.png') center/cover no-repeat;
}

.product-card-barcode-printers {
    background: url('./images/printer.png') center/cover no-repeat;
}

.product-card-barcode-preprinted {
    background: url('./images/preprinted.png') center/cover no-repeat;
}

.product-card-barcode-stickers {
    background: url('./images/sticker.png') center/cover no-repeat;
}

.product-card-thermal-ribbons {
    background: url('./images/ribbon.png') center/cover no-repeat;
}

.product-card-safety {
    background: url('./images/safety.png') center/cover no-repeat;
}

.product-card-extinguisher {
    background: url('./images/fire.png') center/cover no-repeat;
}

/* Hover effect */
.product-card .card-body:hover {
    transform: translateY(-5px);
}

/* Button styling */
.product-card .btn-outline-primary {
    border-color: white;
    color: white;
}

.product-card .btn-outline-primary:hover {
    background-color: white;
    color: #333 !important;
}


/* Base Styles */
body {
    background-color: var(--light);
    color: var(--text);
}

/* Navigation */
.navbar {
    background-color: var(--light);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    color: var(--primary) !important;
}

.nav-link {
    color: var(--text) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}



/* Cards */
.product-card {
    background: white;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

/* Accent Elements */
.section-title:after {
    background: var(--secondary);
}

/* Color Swatches Demo */
.color-swatch {
    padding: 1rem;
    border-radius: 8px;
    color: white;
}

.primary-bg {
    background: var(--primary);
}

.secondary-bg {
    background: var(--secondary);
}

.accent-bg {
    background: var(--accent);
}

.light-bg {
    background: var(--light);
    color: var(--text);
}

.dark-bg {
    background: var(--dark);
}

.navbar {
    background-color: #fafafa;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.standard-card {
    color: #000 !important;
    background: rgb(254 254 254) !important;
}


.footer-links h5 {
    color: #fff !important;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-links h5:after {
    background: #fff;
}

/* Reasons Section Styles */
.reasons-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.reasons-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/dots-pattern.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.section-title {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.reason-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.reason-header {
    color: white;
    padding: 20px 10px;
    text-align: center;
    position: relative;
}

.reason-header i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.reason-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reason-body {
    padding: 30px;
}

.reason-main-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.reason-subpoint {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.reason-subpoint:last-child {
    margin-bottom: 0;
}

.subpoint-icon {
    font-size: 1.5rem;
    color: inherit;
    min-width: 40px;
    text-align: center;
    padding-top: 3px;
}

.reason-subpoint h4 {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.reason-subpoint p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-thumbnail {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-thumbnail img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;

}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.product-body h3 a {
    color: #333;
    text-decoration: none;
}

.product-body h3 a:hover {
    color: var(--primary);
}



#standards img {
    height: 120px;
}



/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Navbar scroll effect */
.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #333 !important;
}

.navbar.scrolled .navbar-brand {
    color: #333 !important;
}

/* About Section Styles */
.about-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image-container img {
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.03);
}

.experience-badge {
    background-color: var(--accent);
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.8rem;
    display: block;
    text-align: center;
}

.counter-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.counter-value {
    font-weight: 700;
    font-size: 2rem;
}


/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 1200px;
    overflow: hidden;
    margin-top: 80px;
    /* Adjusted for navbar height */
    width: 100%;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-indicators {
    bottom: 20px;
    z-index: 10;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background-size: 60%;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 350px;
        margin-top: 70px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
        min-height: 300px;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }
}

/* Navbar height compensation */
.navbar {
    height: 80px;
    transition: height 0.3s ease;
}

.navbar.scrolled {
    height: 70px;
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }
}


/* Navbar Logo/Image Control */
.navbar img {
    height: 60px;
    max-height: 100%;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled img {
    height: 50px;
}

@media (max-width: 768px) {
    .navbar img {
        height: 50px;
    }
}

a {
    color: black;
text-decoration:none;    
}