

/*** Brand Palette (lacivert + turkuaz) ***/

:root {

    /* Primary = dark navy | Secondary = turquoise (edit here if brand colors change) */

    --bs-primary: #0a1f44;

    --bs-secondary: #16c4c4;

    --brand-dark: #061024;

    --brand-muted: #f3f6fa;

    --brand-gradient: linear-gradient(135deg, #0a1f44 0%, #12346b 100%);

    --brand-shadow: 0 25px 60px rgba(6, 16, 36, 0.15);

}



body {

    color: #0f1424;

    background-color: #fff;

}



h1, h2, h3, h4, h5, h6 {

    color: var(--brand-dark);

}



.section-subtitle {

    text-transform: uppercase;

    font-weight: 600;

    letter-spacing: 2px;

    font-size: 14px;

}



/* Palette overrides for Bootstrap helpers (forces navy/turquoise instead of green) */

.text-primary { color: var(--bs-primary) !important; }

.bg-primary { background-color: var(--bs-primary) !important; }

.border-primary { border-color: var(--bs-primary) !important; }

.text-secondary { color: var(--bs-secondary) !important; }

.bg-secondary { background-color: var(--bs-secondary) !important; }

.border-secondary { border-color: var(--bs-secondary) !important; }

.text-turquoise { color: var(--bs-secondary) !important; }

.btn-primary {

    background-color: var(--bs-primary);

    border-color: var(--bs-primary);

    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.25);

}



.btn-turquoise {

    background-color: var(--bs-secondary);

    border-color: var(--bs-secondary);

    color: #fff;

    font-weight: 600;

}

.btn-turquoise:hover,

.btn-turquoise:focus {

    background-color: #0ea9a9;

    border-color: #0ea9a9;

    color: #fff;

}

.btn-primary:hover, .btn-primary:focus {

    background-color: #0c2e63;

    border-color: #0c2e63;

}

.btn-outline-secondary {

    color: var(--bs-secondary);

    border-color: var(--bs-secondary);

}

.btn-outline-secondary:hover {

    background-color: var(--bs-secondary);

    border-color: var(--bs-secondary);

    color: #fff;

}

.category-tree {

    margin: 1rem 0 0;

}

.category-tree .category-filter-btn {

    width: 100%;

    text-align: left;

    border: 1px solid rgba(10, 31, 68, 0.1);

    background-color: #fff;

    color: var(--brand-dark);

    font-weight: 600;

    padding: 0.75rem 1rem;

    border-radius: 1rem;

    display: flex;

    justify-content: space-between;

    align-items: center;

    transition: border-color 0.2s ease, color 0.2s ease;

}

.category-tree .category-filter-btn.active,

.category-tree .category-filter-btn:hover {

    border-color: var(--bs-secondary);

    color: var(--bs-secondary);

}

.category-tree .category-count {

    min-width: 35px;

    text-align: right;

}

.badge.bg-secondary {

    background-color: var(--bs-secondary) !important;

}

.badge.bg-primary {

    background-color: var(--bs-primary) !important;

}



.brand-logo-img {

    max-height: 52px;

    width: auto;

}



.footer .brand-logo-img {

    max-height: 46px;

}



@media (max-width: 576px) {

    .brand-logo-img {

        max-height: 44px;

    }

}



/*** Spinner Start ***/

#spinner {

    opacity: 0;

    visibility: hidden;

    transition: opacity .8s ease-out, visibility 0s linear .5s;

    z-index: 99999;

 }



 #spinner.show {

     transition: opacity .8s ease-out, visibility 0s linear .0s;

     visibility: visible;

     opacity: 1;

 }



.back-to-top {

    position: fixed;

    right: 30px;

    bottom: 30px;

    display: flex;

    width: 45px;

    height: 45px;

    align-items: center;

    justify-content: center;

    transition: 0.5s;

    z-index: 99;

    background: var(--bs-secondary);

    border-color: var(--bs-secondary);

    color: #fff;

}



.back-to-top i {

    color: #fff;

}



.back-to-top:hover {

    background: #12a8a8;

    border-color: #12a8a8;

    color: #fff;

}

/*** Spinner End ***/





/*** Button Start ***/

.btn {

    font-weight: 600;

    transition: .5s;

}



.btn-square {

    width: 32px;

    height: 32px;

}



.btn-sm-square {

    width: 34px;

    height: 34px;

}



.btn-md-square {

    width: 44px;

    height: 44px;

}



.btn-lg-square {

    width: 56px;

    height: 56px;

}



.btn-square,

.btn-sm-square,

.btn-md-square,

.btn-lg-square {

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: normal;

}



.btn.border-secondary {

    transition: 0.5s;

}



.btn.border-secondary:hover {

    background: var(--bs-secondary) !important;

    color: var(--bs-white) !important;

}



.language-toggle .lang-btn {

    border: 1px solid #d7dfea;

    background: transparent;

    color: var(--brand-dark);

    border-radius: 999px;

    font-size: 12px;

    font-weight: 600;

    padding: 6px 14px;

    margin-right: 6px;

    transition: .3s;

}



.language-toggle .lang-btn:last-child {

    margin-right: 0;

}



.language-toggle .lang-btn.active,

.language-toggle .lang-btn:hover {

    background: var(--bs-primary);

    color: #fff;

    border-color: transparent;

}



.hero-stat {

    background: var(--brand-muted);

    border-radius: 18px;

    padding: 16px;

    text-align: center;

    border: 1px solid rgba(4, 23, 51, 0.08);

}



.hero-visual {

    padding: 35px;

    background: #fff;

    border-radius: 32px;

    box-shadow: var(--brand-shadow);

}



.hero-visual-card {

    background: var(--brand-muted);

    border-radius: 24px;

    padding: 20px;

}



.hero-visual-card h5 {

    color: var(--bs-primary);

}



.hero-visual-card ul li {

    color: #041426;

    font-size: 14px;

    margin-bottom: 5px;

}



.chemical-card {

    border-radius: 28px;

    padding: 28px;

    background: var(--brand-muted);

    border: 1px solid rgba(4, 23, 51, 0.08);

    height: 100%;

    display: flex;

    flex-direction: column;

    gap: 10px;

    transition: .3s;

}



.chemical-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--brand-shadow);

    background: #fff;

}



.chemical-thumb {

    width: 58px;

    height: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--brand-gradient);

    color: #fff;

    font-size: 20px;

}



.operation-chip {

    padding: 6px 18px;

    border-radius: 999px;

    border: 1px dashed rgba(4, 23, 51, 0.3);

    font-weight: 600;

    font-size: 13px;

    color: var(--brand-dark);

    background: rgba(22, 196, 196, 0.12);

}



.operation-card {

    background: #fff;

    border-radius: 20px;

    padding: 20px;

    border: 1px solid rgba(4, 23, 51, 0.08);

    height: 100%;

}



.operation-card h5 {

    color: var(--bs-primary);

}



.quality-section {

    background: linear-gradient(135deg, rgba(10, 31, 68, 0.95), rgba(22, 196, 196, 0.9));

}



.quality-card {

    background: rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    padding: 18px;

    color: #fff;

    height: 100%;

    border: 1px solid rgba(255, 255, 255, 0.2);

}



.quality-card h5 {

    color: #fff;

}



.fact-card {

    background: var(--brand-muted);

    border-radius: 20px;

    padding: 30px;

    border: 1px solid rgba(4, 23, 51, 0.08);

}



.category-block {

    padding: 30px;

    background: #fff;

    border-radius: 30px;

    border: 1px solid rgba(4, 23, 51, 0.08);

    box-shadow: 0 15px 30px rgba(4, 23, 51, 0.08);

}



.product-catalog .category-block:not(:last-child) {

    margin-bottom: 40px;

}



.chemical-detail-card {

    box-shadow: var(--brand-shadow);

}



.detail-list li {

    margin-bottom: 10px;

    font-weight: 500;

    color: var(--brand-dark);

}



.detail-info {

    background: #fff;

    border-radius: 24px;

    padding: 24px;

    border: 1px solid rgba(4, 23, 51, 0.08);

    box-shadow: 0 10px 30px rgba(4, 23, 51, 0.08);

}



.detail-info ul {

    margin: 0;

    padding-left: 18px;

}



.detail-info ul li {

    margin-bottom: 8px;

}



.sector-card {

    background: var(--brand-muted);

    border-radius: 24px;

    padding: 24px;

    border: 1px solid rgba(8, 16, 36, 0.08);

    height: 100%;

}



.sector-card i {

    color: var(--bs-secondary);

    font-size: 28px;

}



.seo-cta {

    border: 1px solid rgba(8, 16, 36, 0.1);

    box-shadow: 0 10px 40px rgba(10, 27, 61, 0.1);

}



/*** Topbar Start ***/

.fixed-top {

    transition: 0.5s;

    background: var(--bs-white);

    border: 0;

}



.topbar {

    padding: 20px;

    border-radius: 230px 100px;

}



.topbar .top-info {

    font-size: 15px;

    line-height: 0;

    letter-spacing: 1px;

    display: flex;

    align-items: center;

}



.topbar .top-link {

    font-size: 15px;

    line-height: 0;

    letter-spacing: 1px;

    display: flex;

    align-items: center;

}



.topbar .top-link a {

    letter-spacing: 1px;

}



.topbar .top-info small,

.topbar .top-info a,

.topbar .top-link a,

.topbar .top-link small {

    color: #fff !important;

}



.topbar .top-link a small:hover {

    color: var(--bs-secondary) !important;

    transition: 0.5s;

}



.topbar .top-link a small:hover i {

    color: var(--bs-primary) !important;

}

/*** Topbar End ***/



/*** Navbar Start ***/

.navbar .navbar-nav .nav-link {

    padding: 10px 15px;

    font-size: 16px;

    transition: .5s;

}



.navbar {

    height: 100px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}



.navbar .navbar-nav .nav-link:hover,

.navbar .navbar-nav .nav-link.active,

.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,

.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {

    color: var(--bs-primary);

}



.navbar .dropdown-toggle::after {

    border: none;

    content: "\f107";

    font-family: "Font Awesome 5 Free";

    font-weight: 700;

    vertical-align: middle;

    margin-left: 8px;

}



@media (min-width: 1200px) {

    .navbar .nav-item .dropdown-menu {

        display: block;

        visibility: hidden;

        top: 100%;

        transform: rotateX(-75deg);

        transform-origin: 0% 0%;

        border: 0;

        transition: .5s;

        opacity: 0;

    }

}



.dropdown .dropdown-menu a:hover {

    background: var(--bs-secondary);

    color: var(--bs-primary);

}



.navbar .nav-item:hover .dropdown-menu {

    transform: rotateX(0deg);

    visibility: visible;

    background: var(--bs-light) !important;

    border-radius: 10px !important;

    transition: .5s;

    opacity: 1;

}



#searchModal .modal-content {

    background: rgba(255, 255, 255, .8);

}

/*** Navbar End ***/



/*** Hero Header ***/

.hero-header {

    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);

    background-position: center center;

    background-repeat: no-repeat;

    background-size: cover;

}



.carousel-item {

    position: relative;

}



.carousel-item a {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 25px;

    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));

}



.carousel-control-next,

.carousel-control-prev {

    width: 48px;

    height: 48px;

    border-radius: 48px;

    border: 1px solid var(--bs-white);

    background: var(--bs-primary);

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

}



.carousel-control-next {

    margin-right: 20px;

}



.carousel-control-prev {

    margin-left: 20px;

}



.page-header {

    position: relative;

    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/header.jpg);

    background-position: center center;

    background-repeat: no-repeat;

    background-size: cover;

}



@media (min-width: 992px) {

    .hero-header,

    .page-header {

        margin-top: 152px !important;

    }

}



@media (max-width: 992px) {

    .hero-header,

    .page-header {

        margin-top: 97px !important;

    }

}

/*** Hero Header end ***/





/*** featurs Start ***/

.featurs .featurs-item .featurs-icon {

    position: relative;

    width: 120px;

    height: 120px;

}



.featurs .featurs-item .featurs-icon::after {

    content: "";

    width: 35px;

    height: 35px;

    background: var(--bs-secondary);

    position: absolute;

    bottom: -10px;

    transform: translate(-50%);

    transform: rotate(45deg);

    background: var(--bs-secondary);

    

}

/*** featurs End ***/





/*** service Start ***/

.service .service-item .service-content {

    position: relative;

    width: 250px; 

    height: 130px; 

    top: -50%; 

    left: 50%; 

    transform: translate(-50%, -50%);

}



/*** service End ***/





/*** Fruits Start ***/

.fruite .tab-class .nav-item a.active {

    background: var(--bs-secondary) !important;

}



.fruite .tab-class .nav-item a.active span {

    color: var(--bs-white) !important; 

}



.fruite .fruite-categorie .fruite-name {

    line-height: 40px;

}



.fruite .fruite-categorie .fruite-name a {

    transition: 0.5s;

}



.fruite .fruite-categorie .fruite-name a:hover {

    color: var(--bs-secondary);

}



.fruite .fruite-item {

    height: 100%;

    transition: 0.5s;

}

.fruite .fruite-item:hover {

    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);

}



.fruite .fruite-item .fruite-img {

    overflow: hidden;

    transition: 0.5s;

    border-radius: 10px 10px 0 0;

}



.fruite .fruite-item .fruite-img img {

    transition: 0.5s;

}



.fruite .fruite-item .fruite-img img:hover {

    transform: scale(1.3);

}

/*** Fruits End ***/





/*** vesitable Start ***/

.vesitable .vesitable-item {

    height: 100%;

    transition: 0.5s;

}



.vesitable .vesitable-item:hover {

    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);

}



.vesitable .vesitable-item .vesitable-img {

    overflow: hidden;

    transition: 0.5s;

    border-radius: 10px 10px 0 0;

}



.vesitable .vesitable-item .vesitable-img img {

    transition: 0.5s;

}



.vesitable .vesitable-item .vesitable-img img:hover {

    transform: scale(1.2);

}



.vesitable .owl-stage {

    margin: 50px 0;

    position: relative;

}



.vesitable .owl-nav .owl-prev {

    position: absolute;

    top: -8px;

    right: 0;

    color: var(--bs-primary);

    padding: 5px 25px;

    border: 1px solid var(--bs-secondary);

    border-radius: 20px;

    transition: 0.5s;



}



.vesitable .owl-nav .owl-prev:hover {

    background: var(--bs-secondary);

    color: var(--bs-white);

}



.vesitable .owl-nav .owl-next {

    position: absolute;

    top: -8px;

    right: 88px;

    color: var(--bs-primary);

    padding: 5px 25px;

    border: 1px solid var(--bs-secondary);

    border-radius: 20px;

    transition: 0.5s;

}



.vesitable .owl-nav .owl-next:hover {

    background: var(--bs-secondary);

    color: var(--bs-white);

}

/*** vesitable End ***/





/*** Banner Section Start ***/

.banner .banner-btn:hover {

    background: var(--bs-primary);

}

/*** Banner Section End ***/





/*** Facts Start ***/

.counter {

    height: 100%;

    text-align: center;

    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);

}



.counter i {

    font-size: 60px;

    margin-bottom: 25px;

}



.counter h4 {

    color: var(--bs-primary);

    letter-spacing: 1px;

    text-transform: uppercase;

}



.counter h1 {

    margin-bottom: 0;

}

/*** Facts End ***/





/*** Single Page Start ***/

.pagination {

    display: inline-block;

}

  

.pagination a {

    color: var(--bs-dark);

    padding: 10px 16px;

    text-decoration: none;

    transition: 0.5s;

    border: 1px solid var(--bs-secondary);

    margin: 0 4px;

}

  

.pagination a.active {

    background-color: var(--bs-primary);

    color: var(--bs-light);

    border: 1px solid var(--bs-secondary);

}

  

.pagination a:hover:not(.active) {background-color: var(--bs-primary)}



.nav.nav-tabs .nav-link.active {

    border-bottom: 2px solid var(--bs-secondary) !important;

}

/*** Single Page End ***/





/*** Catalog Filter & Animation ***/

.catalog-filter {

    background: #fff;

    border: 1px solid rgba(10, 31, 68, 0.08);

    box-shadow: 0 15px 30px rgba(6, 16, 36, 0.06);

    border-radius: 18px;

    padding: 14px;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 24px;

}



.catalog-filter .filter-btn {

    border: 1px solid rgba(10, 31, 68, 0.15);

    background: var(--brand-muted);

    color: var(--brand-dark);

    border-radius: 999px;

    padding: 8px 14px;

    font-weight: 600;

    transition: all .25s ease;

    cursor: pointer;

}



.catalog-filter .filter-btn.active,

.catalog-filter .filter-btn:hover {

    background: var(--bs-primary);

    color: #fff;

    border-color: transparent;

}



.category-block.category-hidden {

    display: none !important;

}



.category-block.category-enter {

    animation: fadeSlideIn .35s ease;

}



@keyframes fadeSlideIn {

    from { opacity: 0; transform: translateY(12px); }

    to { opacity: 1; transform: translateY(0); }

}





/*** Blog Layout ***/

.blog-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 20px;

}



.blog-card {

    border: 1px solid rgba(10, 31, 68, 0.08);

    border-radius: 18px;

    box-shadow: 0 15px 30px rgba(6, 16, 36, 0.08);

    overflow: hidden;

    background: #fff;

    display: flex;

    flex-direction: column;

    transition: transform .25s ease, box-shadow .25s ease;

}



.blog-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(6, 16, 36, 0.12);

}



.blog-card img {

    width: 100%;

    height: 170px;

    object-fit: cover;

}



.blog-card-body {

    padding: 16px 18px 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    flex: 1;

}



.blog-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    font-size: 13px;

    color: #4b5b70;

}



.blog-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

}



.blog-detail-hero {

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 18px 40px rgba(6, 16, 36, 0.12);

}



.blog-detail-hero img {

    width: 100%;

    max-height: 360px;

    object-fit: cover;

}



.blog-detail-content {

    background: #fff;

    border: 1px solid rgba(10, 31, 68, 0.06);

    border-radius: 20px;

    padding: 28px;

    box-shadow: 0 16px 36px rgba(6, 16, 36, 0.08);

}



.blog-detail-content h2, .blog-detail-content h3 {

    color: var(--bs-primary);

}



.blog-detail-content p {

    line-height: 1.7;

    color: #20324b;

}



.gallery-lightbox {

    position: fixed;

    inset: 0;

    background: rgba(6, 16, 36, 0.78);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 1050;

    padding: 20px;

    cursor: zoom-out;

}



.gallery-lightbox.show {

    display: flex;

}



.gallery-lightbox img {

    max-width: 90vw;

    max-height: 90vh;

    border-radius: 16px;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);

    background: #fff;

}





/*** Floating WhatsApp ***/

.whatsapp-float {

    position: fixed;

    left: 20px;

    bottom: 20px;

    background: #25d366;

    color: #fff;

    border-radius: 999px;

    padding: 10px 14px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);

    z-index: 1040;

    font-weight: 700;

}



.whatsapp-float:hover {

    color: #fff;

    background: #1ebe5d;

    text-decoration: none;

}



.whatsapp-float i {

    font-size: 18px;

}



@media (max-width: 576px) {

    .whatsapp-float {

        left: 12px;

        bottom: 12px;

        padding: 10px 12px;

    }

    .whatsapp-float span {

        display: none;

    }

}





/*** Footer Start ***/

.footer .footer-item .btn-link {

    line-height: 35px;

    color: rgba(255, 255, 255, .5);

    transition: 0.5s;

}



.footer .footer-item .btn-link:hover {

    color: var(--bs-secondary) !important;

}



.footer .footer-item p.mb-4 {

    line-height: 35px;

}

/*** Footer End ***/







.mini-slider-section {

    margin-top: -30px;

}



.mini-slider-shell {

    background: #fff;

    border: 1px solid #e9eef5;

}



.mini-slide {

    overflow: hidden;

    border: 1px solid #e5ecf3;

    border-radius: 12px;

    background: #f8fbff;

    box-shadow: 0 10px 25px rgba(0, 57, 115, 0.08);

}



.mini-slide img {

    height: 180px;

    object-fit: cover;

}



.mini-slide-body {

    padding: 12px 14px 14px;

}



.mini-slide-body h6 {

    font-weight: 700;

}



@media (max-width: 767px) {

    .mini-slider-shell {

        padding: 1.25rem;

    }



    .mini-slide img {

        height: 150px;

    }

}

