﻿:root {
    --primary-color: #FF3239;
    --secondary-blue: #0CB6E0;
    --dark-blue: #0CB6E0;
    /*--light-gray: #0CB6E0;
    --dark-gray: #6c757d;*/
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    /*padding-top: 80px;*/
    margin: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('img/bgimg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left top -100px;
    
    background-size: cover;
}



/* Header Styles */
.navbar {
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

    .navbar.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        animation: slideDown 0.5s ease;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-blue) !important;
}

    .navbar-brand span {
        color: var(--primary-color);
    }

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        background-color: var(--light-gray);
        color: var(--primary-color) !important;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 6px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

    .dropdown-item:hover {
        background-color: var(--light-gray);
        color: var(--primary-color);
    }

.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
   
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

    .hero-image:hover {
        transform: perspective(1000px) rotateY(0);
    }

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

    .feature-list li {
        margin-bottom: 1rem;
        padding-left: 2rem;
        position: relative;
    }

        .feature-list li:before {
            content: "\f058";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 0;
        }

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-blue);
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
   
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
    box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.footer {
    background-color: black;
    color: #ecf0f1;
    padding: 40px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .footer h5 {
        color: #0cb6e0;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer a:hover {
            color: #3498db;
        }

.contact-info {
    margin-bottom: 10px;
}


.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
}

.copyright {
    padding-top: 15px;
    border-top: 1px solid #4a6572;
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.map-link {
    color: #3498db !important;
    font-weight: 500;
}





.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
   
}

.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
}

    .hero-slide.active {
        display: flex;
        animation: fadeIn 1s ease-in-out;
    }

/* animations */
.slide-in-left {
    animation: slideLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* controls */
.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem; /* icon size */
    color: #fff;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    width: 50px; /* fix size */
    height: 50px; /* same as width */
    display: flex; /* center icon */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.4); /* shadow */
}


    .hero-control.left {
        left: 20px;
    }

    .hero-control.right {
        right: 20px;
    }

.hero-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #FF3239
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 1.1rem;
    color: black;
}

.feature-list {
    margin-top: 15px;
}

    .feature-list li {
        margin-bottom: 8px;
        color:black;
    }


.container-fluid .Page-Header {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding:40px;
}
.container-fluid .Page-Header h3 {
    color: var(--primary-color);
    font-size: 45px;
    font-weight: 900;

}
    .container-fluid .Page-Header h5 {
        color: var(--dark-blue);
        font-weight: 900;
    }
.container-fluid .Page-Contant {
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('img/cont-bg.jpg');
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    background-position: left top;
    background-size: cover;
    padding: 40px;margin:0;
}
.container-fluid .Page-Contant .imgbox img{
    width:100%;
    transition:all 0.3s ease-in;
}
    .container-fluid .Page-Contant .imgbox img:hover {
        transform:scale(1.05);
    }
.counter-box {
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
    height: 150px;
    width: 200px;
}

    .counter-box:hover {
        transform: translateY(-5px);
    }

.counter-number {
    font-size: 32px;
    font-weight: bold;
    font-weight: 900;
    color: var(--primary-color);
}

.counter-label {
    font-size: 20px;
    font-weight:600;
    color: var(--secondary-blue);
}
.profile-img {
    max-width:250px;
    border-radius: 8px;
}

.profile-box {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 10px;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 35px;
    font-weight: bold;
    color:var(--primary-color);
}

.profile-title {
    font-size: 22px;
    color: var(--secondary-blue);
    margin-bottom: 15px;
}

.profile-text {
    font-size: 16px;
    color: #555;
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #3498db;
    }
.product-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.nav-tabs {
    background: var(--secondary-color);
    padding: 0 20px;
    border-bottom: 2px solid var(--light-gray);
}

    .nav-tabs .nav-link {
        color: var(--text-color);
        font-weight: 600;
        border: none;
        padding: 15px 20px;
        transition: all 0.3s;
    }

        .nav-tabs .nav-link:hover {
            color: var(--primary-color);
            background-color: rgba(74, 126, 185, 0.1);
        }

        .nav-tabs .nav-link.active {
            color: var(--primary-color);
            background-color: transparent;
            border-bottom: 3px solid var(--primary-color);
        }

.Pro-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
   
    border-radius: 10px;
    
   
    color:var(--primary-color);
}

.Pro-header h1 {
    font-weight: 700;
    margin-bottom: 0;
}
.tab-content {
    padding: 0;
}

.product-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 25px 15px;
    scrollbar-width: thin;
}

.product-card {
    display: inline-block;
    /*width: 280px;*/
    white-space: normal;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background: white;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

.product-img {
    height: 200px;
    object-fit: contain;
    padding: 15px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

    .scroll-container::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

.category-title {
    padding: 15px 25px 5px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 0;
}