/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Grechen+Fuemen&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');





/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Universal Selectors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

* p {
    font-size: 15px;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */





/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Hero Section With Navbar #INDEX PAGE */
.hero {
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
        url('/images/background/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.hero-content {
    width: 80%;
    margin: auto;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: column;
    text-align: end;
    height: 90%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
}

.navbar-brand {
    text-align: center;
    line-height: 1;
    font-weight: 700;
}

.navbar-nav a {
    color: #fff;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

.icon-container {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.icon-bars,
.icon-cross {
    transition: opacity 0.3s ease;
}

.icon-bars {
    opacity: 1;
}

.icon-cross {
    opacity: 0;
}

.icon-container.active .icon-bars {
    opacity: 0;
}

.icon-container.active .icon-cross {
    opacity: 1;
    color: red;
}




/* Button CSS */
.pri-btn-out {
    margin: 50px 0;
}

.pri-btn {
    text-decoration: none;
    border: 1px solid #000;
    padding: 2% 5%;
    transition: all .3s ease;
    font-size: 15px;
}

.pri-btn:hover {
    background-color: #000;
    color: #fff;
}






/* Hero Products */
.hero-products .first-product .container {
    padding: 100px 0;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-products .first-product .container h1 {
    font-weight: 600;
    font-size: 50px;
}

.first-product-image {
    background-image: url('/images/heroProducts/1.jpg');
    height: 500px;
    width: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-products .second-product .container {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: end;
}

.hero-products .second-product .container h1 {
    font-weight: 600;
    font-size: 50px;
}

.second-product-image {
    background-image: url('/images/heroProducts/2.jpg');
    height: 500px;
    width: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-products .third-product .container {
    width: 80%;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-products .third-product .container h1 {
    font-weight: 600;
    font-size: 50px;
}

.third-product-image {
    background-image: url('/images/heroProducts/3.jpeg');
    height: 500px;
    width: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}





/* Partners */
.partners .container {
    width: 80%;
    text-align: center;
    margin-bottom: 100px;
}

.partners .container h1 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

#partner1 {
    background-image: url('/images/partners/1.png');
    height: 100px;
    background-size: cover;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px 0;
}

#partner2 {
    background-image: url('/images/partners/2.png');
    height: 100px;
    background-size: cover;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px 0;
}

#partner3 {
    background-image: url('/images/partners/3.png');
    height: 100px;
    background-size: cover;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px 0;
}

#partner4 {
    background-image: url('/images/partners/4.webp');
    height: 100px;
    background-size: cover;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px 0;
}





/* Footer */
.footer .container-fluid {
    height: auto;
    background: gray;
    padding: 20px 0;
}

.footer .container-fluid .container {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.footer .container-fluid .container .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .container-fluid .container .row a {
    text-decoration: none;
    color: #fff;
    padding: 2%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: all .3s ease;
}

.footer .container-fluid .container .row a:hover {
    color: rgb(205, 205, 205);
}

.footer .container-fluid .container h1 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */





/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* CONTACT PAGE */
.contact-hero {
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
        url('/images/background/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
}

.contact-hero .hero-content {
    width: 80%;
    margin: auto;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: column;
    text-align: end;
    height: 90%;
}

.contact-hero .hero-content h1 {
    font-size: 48px;
    font-weight: 800;
}

.contact-section {
    padding: 50px 0;
}

.contact-section .row {
    width: 95%;
    margin: auto;
}

.contact-section .row .card {
    border: none;
}

.contact-section .row .card h1 {
    font-size: 50px;
    font-weight: 600;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */





/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ABOUT PAGE */
.about-section {
    padding: 50px 0;
    text-align: center;
}

.about-section h1 {
    font-weight: 600;
    font-size: 50px;
}

.mission-section {
    margin-top: 50px;
}

.values-section h1 {
    font-weight: 600;
    font-size: 50px;
}

.values-section {
    text-align: center;
}

.values-section i {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-line {
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.values-section .row {
    margin-top: 50px;
}

.values-section h3 {
    font-size: 24px;
    font-weight: 500;
}

.cta-section {
    text-align: center;
    padding: 50px 0;
}

.cta-section .pri-btn {
    padding: 1% 5%;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */





/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* PRODUCT PAGE */
.product-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: relative;
    background: #fff;
}

.toggle-desc {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #ff4444;
}

.product-title{
    font-size: 18px;
}

.product-description {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    background: #f8f9fa;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    opacity: 0;
}

.product-description.active {
    max-height: 1000px;
    transform: translateY(0);
    opacity: 1;
    padding: 1rem;
}
.category-title {
    font-size: 50px;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 4px;
    background: #ff4444;
}

.fa-chevron-down {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-180 {
    transform: rotate(180deg);
}

.search-container {
    position: relative;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;  
    height: 36px;
    cursor: pointer;
}

.search-button:hover {
    color: #ff4444;
}

#searchInput {
    padding: 12px 50px 12px 20px; 
    border-radius: 30px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

#searchInput:focus {
    border-color: #ff4444;
    box-shadow: none;
}

#searchMessage {
    color: #ff4444;
    font-weight: 500;
    font-size: 1.1rem;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */




/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* FAQs PAGE */

.faq-section {
    padding: 50px 0;
}

.faq-category {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 30px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-category .category-title{
    font-size: 50px;
    font-weight: 600;
}

.faq-question {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #666;
    transition: 0.3s;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
}

.faq-item.active .faq-question i {
    transform: translateY(-50%) rotate(180deg);
    color: #d70000;
}