* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #f05836;     
    --Secondary: #2d4667;     
    --text-light:#dddddd;
    --text-dark:#424242;
    --accent-color: #ffc107;       /* Energy Yellow */
    --grey-color: #f3f3f3f3;
    --light-bg: #e8ebf5; 
    --accent-green: #ffb300;
    --light-gray: #ffffff;
    --text-gray: #e7e7e7;
    --dark-gray: #333; 
     --gold: #f05836;
      --gold-light: rgba(240, 208, 128, 0.589);
      --dark: #0d0d0d;
      --card-bg: rgba(10, 10, 10, 0.72);
      --border: rgba(201,168,76,0.35);
}
html,body{
overflow-x:hidden;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--Secondary) 100%);
    padding: 12px 0;
    color: white;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    /*padding: 0 20px;*/
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
}

.top-bar-item:hover {
    opacity: 0.8;
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
}

/* Main Header */
.main-header {
    background: white;
    padding: 5px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    border-bottom: 3px solid var(--primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a3a52;
    flex-shrink: 0;
}

.logo img{
    
    height: 75px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a52;
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0;
    list-style: none;
    /* overflow: hidden; */
    padding: 0;
}

.nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-custom {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-item-custom:hover {
    background: #f5f5f5;
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 24px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 5px 5px 0px 0px #000;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:5px 5px 0px 0px var(--primary);
    color: white;
    background: #000;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 1100;
    flex-shrink: 0;
}

.hamburger {
    width: 100%;
    height: 100%;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(12px, 12px);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 0px);
}

.mobile-menu {
    position: fixed;
    top: 15%;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1050;
    overflow-y: auto;
    padding-top: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-item {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    color: var(--primary);
    background: #f9f9f9;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    background: none;
    border: none;
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover {
    color: var(--primary);
    background: #f9f9f9;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.4s ease;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu-item {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover {
    color: var(--primary);
    background: white;
}

.mobile-cta {
    padding: 15px 20px;
    margin-top: 10px;
}

.mobile-cta .cta-button {
    width: 100%;
    text-align: center;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
}

.mobile-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 20px 14px;
        font-size: 14px;
    }

    .dropdown-menu-custom {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-content {
        padding: 0 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-brand {
        font-size: 14px;
    }

    .logo-sub {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar-content {
        font-size: 12px;
        gap: 5px;
    }

    .mobile-menu {
        max-width: 85vw;
        overflow-y: scroll;
        height: 500px;
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Second Level Desktop */
.dropdown-item-has-children {
    position: relative;
}

.dropdown-item-has-children > .dropdown-item-custom::after {
    content: "›";
    float: right;
    font-weight: bold;
}

.dropdown-submenu-custom {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 220px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0;
}

.dropdown-item-has-children:hover .dropdown-submenu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Second Level Mobile */
.sub-level .mobile-submenu-item {
    padding-left: 60px;
    background: #f2f2f2;
}

.sub-toggle {
    padding-left: 40px;
    font-size: 14px;
}



/* slider-banner  */

/* Full Parallax Slider */
.creative-parallax--slider .f-slider-layer {
    position: relative;
}
.creative-parallax--slider .swiper-slide.swiper-slide-active:before {
    content: "";
    width: 475px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 3%;
    transform: translateX(-50%) skew(-20deg, 0deg);
    z-index: 1;
    opacity: .4;
    background-color: #ffb300be;
    animation-name: fadeInTwo;
    animation-duration: 2.3s;
    animation-delay: 0s;
}
.creative-parallax--slider .f-slider-layer img{
    width: 100%;
    height: 100vh;
    vertical-align: middle;
    object-fit:cover;
}
.creative-parallax--slider .f-slider-layer:before {
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .5;
}
.creative-parallax--slider .f-slider-layer:after{
    background-color: var(--primary);
    content: "";
    width: 280px;
    height: 540px;
    position: absolute;
    top: 60%;
    right: 1.5%;
    transform: translate(-50%, -50%) skew(-20deg, 0deg);
    z-index: 1;
    
}
.creative-parallax--slider .swiper-slide-active .f-slider-layer:after{
    animation-name: fadeInThree;
    animation-duration: 2.3s;
    animation-delay: 0s;
}
.creative-parallax--slider .f-slider-layer .f-slider-one-data{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 6%;
    width: 40%;
    z-index: 9;
}
.creative-parallax--slider .f-slider-one-data span{
    font-size: 67px;
    line-height: 87px;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0px;
    opacity: 0;
    
}
.creative-parallax--slider .swiper-slide-active .f-slider-one-data span{
    
    transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 1s;
}
.f-slider-layer .f-slider-one-data p{
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 55px;
    width: 95%;
    font-weight: 400;
    opacity: 0;
}
 .swiper-slide-active .f-slider-layer  .f-slider-one-data p{
    transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 1.5s;
}
.f-slider-layer .slide-btn{
    text-decoration: none;
    background-color: var(--primary);
    padding: 18px 70px 18px 50px;
    font-size: 16px;
    font-family: Epilogue, sans-serif;
    color: #000;
    display: inline-flex;
    position: relative;
    border: 2px solid var(--primary);
    font-weight: 700;
    transition: .3s ease-in-out;
    opacity: 0;   
}
 .swiper-slide-active .f-slider-layer .slide-btn{
transition: opacity 0.5s ease, filter 0.5s ease; 
    animation: fadeInUp 1s ease forwards; 
    animation-delay: 2s;
}
.f-slider-layer .slide-btn:hover{
    background-color: transparent;
    color: #fff;
}
.f-slider-layer .slide-btn:after{
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    top: -2px;
    right: -32px;
    background: transparent;
    border-left: 0 solid transparent;
    border-right: 30px solid transparent;
    border-top: 65px solid var(--primary);
}
.f-slider-layer .slide-btn i{
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .5s ease-in-out;

}
.f-slider-layer .slide-btn:hover i{
    color: #000;
    width: 45px;
}
.f-slider-layer .slide-btn i:after{
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: skew(-24deg, 0deg);
    transition: .5s ease-in-out;
}
.f-slider-layer .slide-btn:hover i:after{
    background-color: var(--primary);
}
.swiper-nav {
    position: absolute;
    bottom: 10%;
    right: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.swiper-nav button{
    width: 80px;
    height: 115px;
    background: transparent;
    color: #fff;
    border: 0;
    position: relative;
    z-index: 0;
    border-color: var(--primary);
    transition: .3s ease-in-out;
    cursor: pointer;
}
.swiper-nav button:first-child{
    margin-right: 10px;
}
.swiper-nav button:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 2px solid;
    transform: skew(-23deg, 0deg);
    border-color: var(--primary);
}
.swiper-nav button:hover:before{
    border-color: #c1c1c1;
}
@keyframes fadeInThree{
    0% {
        opacity: 0;
    }
    40% {
        opacity: .2;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeInTwo{
    0% {
        opacity: 0;
        transform: translateX(-50%) skew(-20deg, 0deg);
    }

    40% {
        opacity: 0;
        transform: translateX(-30%) skew(-20deg, 0deg);
    }
    100% {
        opacity: .4;
        transform: translateX(-50%) skew(-20deg, 0deg);
    }
}


/* ===================== RESPONSIVE IPAD PRO ============================= */
@media (max-width: 1366px) {
    .creative-parallax--slider .f-slider-layer .f-slider-one-data {
        width: 60%;
        left: 5%;
        top: 50%;
    }
    .creative-parallax--slider .swiper-slide.swiper-slide-active:before{
        width: 265px;
    }
    .creative-parallax--slider .f-slider-layer:after {
               width: 185px;
        height: 75%;
        right: 6.5%;
        top: 50%;
    }
        .creative-parallax--slider .f-slider-one-data span {
        font-size: 50px;
        line-height: 60px;
    }

}
/* ===================== RESPONSIVE IPAD ============================= */
@media (max-width: 992px) {
    .creative-parallax--slider .f-slider-layer .f-slider-one-data {
        width: 65%;
    }
    .creative-parallax--slider .f-slider-one-data h1 {
        font-size: 50px;
        line-height: 60px;
    }
}

/* ===================== RESPONSIVE IPAD ============================= */
@media (max-width: 767px) {
        .creative-parallax--slider .f-slider-layer .f-slider-one-data {
        width: 90%;
        top: 40%;
        text-align: center;
    }
    .creative-parallax--slider .f-slider-one-data span{
            font-size: 30px;
    line-height: 40px;
    }
    .f-slider-layer .f-slider-one-data p{
        font-size: 15px;
        line-height: 25px;
    }
        .creative-parallax--slider .swiper-slide.swiper-slide-active:before {
        right: -100%;
    }
    .creative-parallax--slider .f-slider-layer:after{
        display: none;
    }
    .f-slider-layer .slide-btn{
                padding: 13px 55px 13px 25px;
    }
    .swiper-nav {
        left: 50%;
        transform: translate(-50%, -50%);
        right: unset;
                bottom: 2%;
    }
    .swiper-nav button{
                width: 50px;
        height: 50px;
        border-width: 1px;
                transform: unset;
    }
    .swiper-nav button:before{
        transform: unset;
    }
}

/* category-slider  */
.category-slider-container {
    max-width: 1200px;
    margin: 0 auto;   
    padding: 60px 0;
}

.category-slider-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.category-slider-title span {
    color: #003d7a;
}

.category-slider-underline {
    width: 50px;
    height: 3px;
    background-color: #003d7a;
    margin-bottom: 40px;
}

.category-slider-company-tag {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px; 
    font-weight: 500;
}

.category-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

/*.category-slider-item {*/
/*    padding: 20px 15px;*/
/*    text-align: center;*/
/*    cursor: pointer;*/
/*    transition: transform 0.3s ease;*/
/*}*/



.category-slider-item {
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #f05836;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    border: 4px solid #e0e0e0;
}

.category-slider-item:hover {
    transform: translateY(-5px);
}

.category-slider-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.category-slider-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-slider-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Owl Nav Styling */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    pointer-events: none;
    transform: translateY(-50%);
    display: block !important;
}

.owl-nav button {
    position: absolute;
    background-color: #ff6633;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    pointer-events: all;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.owl-nav button:hover {
    background-color: #ff5511;
    transform: scale(1.05);
}

.owl-prev { left: -60px; }
.owl-next { right: -60px; }

@media (max-width: 1024px) {
    .category-slider-wrapper { padding: 0 40px; }
    .owl-prev { left: -40px; }
    .owl-next { right: -40px; }
    .owl-nav button { width: 40px; height: 40px; font-size: 20px; }
}

@media (max-width: 768px) {
    .category-slider-container { padding: 30px 15px; }
    .category-slider-title { font-size: 24px; }
    .category-slider-wrapper { padding: 0 30px; }
    .owl-prev { left: -30px; }
    .owl-next { right: -30px; }
    .category-slider-name { font-size: 14px; }
}

@media (max-width: 576px) {
    .category-slider-container { padding: 20px 10px; }
    .category-slider-title { font-size: 20px; }
    .category-slider-wrapper { padding: 0 10px; }
    .owl-prev, .owl-next { display: none; }
    .category-slider-name { font-size: 13px; }
    .category-slider-underline { width: 40px; }
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
    
}

.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-dot.active {
    background-color: #ff6633;
}


/* about-section  */
.about-section { 
    padding: 60px 0;
}

.section-title h1 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
}

.section-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 260px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}



.section-subtitle h1 {
    font-size: 1.8rem;
    color: #333;
}

.floating-image {
    float: right;
    width: 45%;
    margin: 0 0px 20px 20px;
}

.floating-image img {
    width: 100%;
    height: auto;
    padding: 17px;
    padding-right:0;
    border-radius: 8px;
}

.content-text {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.content-text p {
    margin-bottom: 20px;
}

.highlight {
    color: #000;
    font-weight: 600;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* Product-section  */

.products-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 60px 0;
}

/* Large Background Heading */
.section-heading {
    position: relative;
    margin-bottom: 60px;
}

.section-heading::before {
    content: 'PRODUCTS';
    position: absolute;
    top: -60px;
    left: 0;
    font-size: 120px;
    font-weight: 800;
    color: #f058363f;
    letter-spacing: 4px;
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
}

.section-heading-text {
    position: relative;
    z-index: 1;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-heading2 {
    position: relative;
    margin-bottom: 20px;
}

.section-heading2::before {
    content: 'FAQ"s';
    position: absolute;
    top: -60px;
    left: 0;
    font-size: 120px;
    font-weight: 800;
    color: #f058363f;
    letter-spacing: 4px;
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
}

.section-heading-text2 {
    position: relative;
    z-index: 1;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Product Card Styles */
.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Highlighted Product Card */
.product-card:hover .product-name {
    background: var(--primary);
    color: #fff;
}

.product-card:hover a{
    background: var(--primary);
    color: #fff;
}

.product-card:hover .product-image-wrapper {
    border: 4px solid var(--primary);
}

/* .product-card.featured .product-name {
    background-color: #ff3333;
    color: white;
} */

/* Product Name */
.product-name {
    padding: 20px 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background-color: #f9f9f9;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-name a{
    text-decoration: none; 
    color: #000;
}

/* Responsive Grid */
@media (max-width: 1199px) {
    .section-heading::before {
        font-size: 90px;
        top: -50px;
    }

    .section-heading-text {
        font-size: 32px;
    }

    .product-image-wrapper {
        /*height: 250px;*/
    }
}

@media (max-width: 991px) {
    .section-heading::before {
        font-size: 70px;
        top: -40px;
    }

    .section-heading-text {
        font-size: 28px;
    }

    .product-image-wrapper {
        /*height: 220px;*/
    }

    .product-name {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
 

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading::before {
        font-size: 50px;
        top: -35px;
    }

    .section-heading-text {
        font-size: 24px;
    }

    .product-image-wrapper {
        /*height: 200px;*/
    }

    .product-name {
        font-size: 15px;
        padding: 15px 10px;
    }
}

@media (max-width: 575px) {
    .products-section {
        padding: 0;
    }

    .section-heading::before {
        font-size: 40px;
        top: -30px;
    }

    .section-heading-text {
        font-size: 20px;
    }

    .product-image-wrapper {
        /*height: 180px;*/
    }

    .product-name {
        font-size: 14px;
        padding: 12px 10px;
    }
}

/* why-us-sec */

/* ── SECTION ── */
.material-section {
    display: flex;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

/* ── LEFT IMAGE HALF ── */
.left-image {
    flex: 0 0 44%;
    position: relative;
    overflow: hidden;
}

.left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* diagonal slant on the right edge */
.left-image::after {
    content: '';
    position: absolute;
    top: 0; right: -1px; bottom: 0;
    width: 90px;
    background: var(--primary);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* ── RIGHT BLUE PANEL ── */
.right-panel {
    flex: 1;
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 60px 50px 70px;
    overflow: hidden;
}

/* subtle ghost warehouse overlay */
.right-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../image/img/gdsgd.jpg?w=900&q=30') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.panel-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    color: #fff;
}

/* title as a span/div — no heading tag */
.section-title {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 22px;
}

.panel-content p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.panel-content p b {
    color: #fff;
}

/* ── BUTTONS ── */
.btn-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    padding: 13px 28px;
    cursor: pointer;
    border: none;
    transition: filter .2s, transform .15s;
}

.btn:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
}

.btn-red {
    background: var(--Secondary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #1a2a8c;
}

.btn i {
    font-size: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .material-section { flex-direction: column; }
    .left-image { flex: 0 0 240px; }
    .left-image::after { display: none; }
    .right-panel { padding: 36px 28px; }
}




/* ===== CLIENT LOGOS SECTION ===== */
.logos-section { 
    padding: 50px 20px;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Carousel Specific Styling */
#logosCarousel.owl-carousel {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-stage-outer {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-stage {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item {
    background: white;
    padding: 10px;
    border-radius: 4px;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.logo-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Logo Carousel Navigation */
#logosCarousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

#logosCarousel .owl-nav button {
    pointer-events: all;
    background: #0000009f !important;
    border: none;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

#logosCarousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1);
}

#logosCarousel .owl-prev::before {
    content: '';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

#logosCarousel .owl-next::before {
    content: '';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Logo Dots */
#logosCarousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    padding: 0;
}

#logosCarousel .owl-dot {
    display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

#logosCarousel .owl-dot.active {
    background: white;
    transform: scale(1.3);
}


/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.testimonials-title .main-text {
    color: var(--dark-gray);
    font-weight: 500;
}

.testimonials-title .highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Owl Carousel Container */
.owl-carousel {
    display: flex;
    align-items: stretch;
}

.owl-stage-outer {
    display: flex;
    align-items: stretch;
}

.owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-item {
    display: flex;
    align-items: stretch;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 45px 40px;
    margin: 20px 15px;
    border-left: 4px solid var(--primary);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Triangle decoration at bottom right */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-top: 50px solid transparent;
    border-right: 50px solid var(--primary);
    border-bottom: 50px solid var(--primary);
    border-radius: 0 0 0 2px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 5px;
}

.author-designation {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
}

/* Owl Controls */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    pointer-events: all;
    position: absolute;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.owl-prev {
    left: -60px;
}

.owl-next {
    right: -60px;
}

.owl-prev::before,
.owl-next::before {
    content: '';
    font-size: 1.5rem;
}

/* Carousel Dots */
.owl-dots {
    position: absolute;
    display: none;
    right: 30px;
    top: 50%;
    transform: translateY(-50%); 
    flex-direction: column;
    gap: 12px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.owl-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

.owl-dot:hover {
    background-color: var(--primary);
}

.testimonial-img img{
    height: 50px; 
    
}

/* Responsive */
@media (max-width: 1200px) {
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .owl-prev {
        left: -50px;
    }

    .owl-next {
        right: -50px;
    }

    .testimonial-card {
        padding: 40px 30px;
        min-height: 260px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .testimonial-card {
        padding: 35px 25px;
        min-height: 240px;
        margin: 15px 10px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .owl-nav {
        display: none;
    }

    .owl-dots {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 30px 20px;
        min-height: 220px;
        margin: 15px 10px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-designation {
        font-size: 0.85rem;
    }

    .owl-dots {
        bottom: 20px;
        right: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
    }

    .testimonial-card::after {
        border-left: 35px solid transparent;
        border-top: 35px solid transparent;
        border-right: 35px solid var(--primary);
        border-bottom: 35px solid var(--primary);
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 50px 10px;
    }

    .testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 25px 15px;
        min-height: 200px;
        margin: 10px 5px;
        border-left: 3px solid var(--primary);
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-designation {
        font-size: 0.8rem;
    }

    .testimonial-card::after {
        border-left: 25px solid transparent;
        border-top: 25px solid transparent;
        border-right: 25px solid var(--primary);
        border-bottom: 25px solid var(--primary);
    }

    .owl-dots {
        gap: 8px;
    }

    .owl-dot {
        width: 8px;
        height: 8px;
    }
}

.owl-nav{
    display: none !important;
}


/* ========== CTA SECTION ========== */
    #cta {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Background image layer */
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgb(255 179 0 / 22%) 0%, rgb(255 179 0 / 22%) 100%), url(../image/img/downbnr.webp?auto=format&fit=crop&w=1600&q=80) center / cover no-repeat;
      z-index: 0;
      animation: bgPan 18s ease-in-out infinite alternate;
    }

    @keyframes bgPan {
      from { background-position: center top; }
      to   { background-position: center bottom; }
    }

    /* Grain overlay */
    #cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      z-index: 1;
      pointer-events: none;
      opacity: 0.4;
    }

    #cta .container { position: relative; z-index: 2; }

    /* -------- Section header -------- */
    .cta-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      animation: fadeUp 0.7s 0.2s forwards;
    }

    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      opacity: 0;
      animation: fadeUp 0.7s 0.35s forwards;
    }

    .cta-title span {
      color: var(--gold);
      display: inline-block;
      position: relative;
    }

    .cta-title span::after {
      content: '';
      position: absolute;
      left: 0; bottom: 2px;
      width: 0; height: 3px;
      background: var(--gold);
      animation: lineGrow 1s 1.2s forwards;
    }

    @keyframes lineGrow { to { width: 100%; } }

    .cta-subtitle {
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp 0.7s 0.5s forwards;
    }

    /* -------- Gold divider -------- */
    .gold-divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.6s forwards;
    }

    /* -------- Form card -------- */
    .form-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      backdrop-filter: blur(18px);
      padding: 2.5rem 2rem;
      box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,168,76,0.15);
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 0.8s 0.5s forwards;
    }

    .form-card .form-label {
      color: rgba(255,255,255,0.75);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.35rem;
    }

    .input-icon-wrap {
      position: relative;
    }

    .input-icon-wrap .fa-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      font-size: 0.9rem;
      pointer-events: none;
      z-index: 5;
    }

    .input-icon-wrap .form-control,
    .input-icon-wrap .form-select {
      padding-left: 2.4rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.92rem;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    }

    .input-icon-wrap .form-control:focus,
    .input-icon-wrap .form-select:focus {
      background: rgba(201,168,76,0.08);
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
      color: #fff;
      outline: none;
    }

    .input-icon-wrap .form-control::placeholder { color: rgba(255,255,255,0.3); }

    .form-select option { background: #1a1a1a; color: #fff; }

    /* Textarea */
    .textarea-wrap { position: relative; }
    .textarea-wrap .fa-icon { top: 16px; transform: none; }
    .textarea-wrap textarea { padding-top: 0.65rem; resize: none; }

    /* Submit button */
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), #ffb300);
      color: #000;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: 50px;
      padding: 0.75rem 2.5rem;
      letter-spacing: 0.06em;
      transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
      position: relative;
      overflow: hidden;
    }

    .btn-gold::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.25s;
    }

    .btn-gold:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 12px 40px rgba(201,168,76,0.45);
      filter: brightness(1.1);
    }

    .btn-gold:hover::after { background: rgba(255,255,255,0.07); }
    .btn-gold:active { transform: scale(0.98); }

    /* -------- Info card -------- */
    .info-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      backdrop-filter: blur(18px);
      padding: 2.5rem 2rem;
      height: 100%;
      box-shadow: 0 32px 80px rgba(0,0,0,0.55);
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 0.8s 0.7s forwards;
    }

    .info-card span { 
      color: #fff;
      font-size: 15px;
      margin-bottom: 0.35rem;
      line-height: 1;
    }

    .info-card p.sub {
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
      margin-bottom: 1.8rem;
    }

    /* Contact item */
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.6rem;
      text-decoration: none;
      transition: transform 0.25s;
      cursor: pointer;
    }

    .contact-item:hover { transform: translateX(6px); }

    .icon-box {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
      font-size: 1rem;
      transition: background 0.3s, box-shadow 0.3s;
    }

    .contact-item:hover .icon-box {
      background: rgba(201,168,76,0.22);
      box-shadow: 0 0 18px rgba(201,168,76,0.25);
    }

    .contact-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;
      display: block;
    }

    .contact-value {
      color: #fff;
      font-size: 0.95rem;
      /*font-weight: 600;*/
      padding-left: 10px;
      word-break: break-word;
    }

    a.contact-item .contact-value:hover { text-decoration: underline; }

    /* Separator */
    .info-sep {
      border: none;
      border-top: 1px solid rgba(201,168,76,0.2);
      margin: 1.4rem 0;
    }

    /* Hours table */
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.88rem;
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: rgba(255,255,255,0.55); }
    .hours-time { color: #fff; font-weight: 600; }
    .hours-time.closed { color: rgba(255,50,50,0.8); font-weight: 400; }

    /* -------- Social strip -------- */
    .social-strip {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .social-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      transition: all 0.3s;
      text-decoration: none;
    }

    .social-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #000;
      transform: translateY(-3px);
    }

    /* -------- Floating particles -------- */
    .particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

    .particle {
      position: absolute;
      width: 2px; height: 2px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: float linear infinite;
    }

    @keyframes float {
      0%   { opacity: 0; transform: translateY(100vh) scale(0); }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
    }

    /* -------- Keyframes -------- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* -------- Floating label animation delay for form rows -------- */
    .form-row-anim {
      opacity: 0;
      animation: fadeUp 0.5s forwards;
    }
    .d1 { animation-delay: 0.65s; }
    .d2 { animation-delay: 0.75s; }
    .d3 { animation-delay: 0.85s; }
    .d4 { animation-delay: 0.95s; }
    .d5 { animation-delay: 1.05s; }
    .d6 { animation-delay: 1.15s; }

    /* Pulse badge */
    .pulse-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(201,168,76,0.12);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.3rem 0.9rem;
      color: var(--gold);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.1s forwards;
    }

    .pulse-dot {
      width: 7px; height: 7px;
      background: var(--primary);
      border-radius: 50%;
      animation: pulse 1.6s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
      50%       { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
    }

/* footer-section  */

.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    padding:  50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    transform: translateY(25%);
    z-index: 10;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    background: radial-gradient(circle, #fff 20%, transparent 80%);
    border-radius: 50%;
}

.newsletter-content {
    background-image: url(../image/img/shape3.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 0;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    color: #666;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 15px 25px;
    background-color:  var(--dark-gray);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background-color:  var(--text-dark);
}

.newsletter-btn i {
    font-size: 12px;
}

footer {
    background-color: #f5f5f5;
    padding: 80px 20px 30px;
    margin-top: 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background-color:  var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.footer-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
}

.footer-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.footer-content .contact-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-label {
    font-weight: 600;
    color: #1a1a1a;
    min-width: 60px;
}

.contact-value {
    color: #666;
}

.contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid  var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background-color: var(--dark-gray);
    color: white;
}

.contact-section {
    position: relative;
}

.decorative-dots {
    position: absolute;
    top: -20px;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, #ffb405 30%, transparent 30%);
    background-size: 20px 20px;
    opacity: 0.15;
    pointer-events: none;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
}

.copyright-text {
    font-size: 13px;
    color: #666;
}

.copyright-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    footer {
        padding: 70px 20px 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 26px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-section-title {
        font-size: 16px;
    }

    .footer-description {
        max-width: 100%;
    }

    .newsletter-section {
        padding: 35px 20px;
        border-radius: 15px;
        transform: translateY(40%);
    }

    footer {
        padding: 60px 20px 20px;
    }

    .decorative-dots {
        display: none;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .newsletter-input {
        font-size: 13px;
    }

    .footer-section-title {
        font-size: 15px;
    }

    .contact-item {
        font-size: 13px;
    }

    .footer-brand-name {
        font-size: 18px;
    }

    .footer-dots {
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .newsletter-section {
        padding: 30px 15px;
        transform: translateY(35%);
    }

    footer {
        padding: 50px 15px 20px;
    }

    main {
        padding-bottom: 80px;
    }
}


.sm-widget {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
}

.sm-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sm-item {
    position: relative;
    display: flex;
    align-items: center;
    animation: smSlideIn 0.5s ease backwards;
}

.sm-item a{text-decoration: none;}

.sm-item:nth-child(1){ animation-delay: .1s; }
.sm-item:nth-child(2){ animation-delay: .2s; }
.sm-item:nth-child(3){ animation-delay: .3s; }
.sm-item:nth-child(4){ animation-delay: .4s; }
.sm-item:nth-child(5){ animation-delay: .5s; }

.sm-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border: 2px solid #fff;
    transition: .3s ease;
    position: relative;
    z-index: 2;
}

.sm-btn:hover {
    transform: scale(1.1);
}

.sm-info {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.sm-item:hover .sm-info {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sm-info-icon {
    font-size: 18px;
}

.sm-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.sm-text {
    font-size: 12px;
    color: #666;
}

/* Colors */
.sm-bg-1{ background:#25D366; }
.sm-bg-2{ background:#FF6B6B; }
.sm-bg-3{ background:#4267B2; }
.sm-bg-4{ background:#EA4335; }
.sm-bg-5{ background:#FFA500; }

.sm-color-1{ color:#25D366; }
.sm-color-2{ color:#FF6B6B; }
.sm-color-3{ color:#4267B2; }
.sm-color-4{ color:#EA4335; }
.sm-color-5{ color:#FFA500; }

@keyframes smSlideIn {
    from { opacity:0; transform:translateX(-30px); }
    to { opacity:1; transform:translateX(0); }
}

@media (max-width:768px){
    .sm-widget{ left:10px; }
    .sm-btn{
        width:45px;
        height:45px;
        font-size:18px;
    }
    .sm-info{
        left:55px;
        padding:10px 12px;
    }
}

.sm-top-btn{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #111;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 99999;
}

.sm-top-btn.sm-show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sm-top-btn:hover{
    transform: translateY(-3px);
}

@media (max-width:768px){
    .sm-top-btn{
        width:45px;
        height:45px;
        font-size:18px;
        right:15px;
        bottom:15px;
    }
}


/* ===== Duplicate About Section (rp2) ===== */

.rp2-box {
    padding: 60px 0;
}

.rp2-title h1 {
    color: #2196F3;
    font-size: 2.5rem;
    font-weight: bold;
}

.rp2-subtitle h2 {
    font-size: 1.8rem;
    color: #333;
}

.rp2-image {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
}

.rp2-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.rp2-content {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.rp2-content p {
    margin-bottom: 20px;
}

.rp2-highlight {
    color: #000;
    font-weight: 600;
}

.rp2-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .rp2-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

 /* ===== BX Breadcrumb ===== */

    .bx-breadcrumb-wrap{
        background: linear-gradient(135deg, #f05836, #223e4f);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    .bx-breadcrumb-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .bx-breadcrumb-title{
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
    }

    .bx-breadcrumb-nav{
        display: flex;
        align-items: center;
    }

    .bx-breadcrumb-list{
        display: flex;
        align-items: center;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .bx-breadcrumb-item{
        font-size: 14px;
        color: rgba(255,255,255,0.85);
        position: relative;
    }

    .bx-breadcrumb-item a{
        text-decoration: none;
        color: rgba(255,255,255,0.85);
        transition: .3s ease;
    }

    .bx-breadcrumb-item a:hover{
        color: #ffffff;
    }

    .bx-breadcrumb-item:not(:last-child)::after{
        content: "/";
        margin-left: 10px;
        color: rgba(255,255,255,0.6);
    }

    .bx-active{
        color: #ffffff;
        font-weight: 600;
    }

    @media (max-width:768px){

        .bx-breadcrumb-wrap{
            padding: 40px 0;
            text-align: center;
        }

        .bx-breadcrumb-box{
            flex-direction: column;
            align-items: center;
        }

        .bx-breadcrumb-title{
            font-size: 24px;
        }

        .bx-breadcrumb-list{
            justify-content: center;
            flex-wrap: wrap;
        }
    }

    /* Sitemap-section  */

    .sitemap-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .sitemap-title {
        color: #2b2a28;
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: -0.5px;
    }
    
    .sitemap-card {
        background-color: white;
        border: 2px solid var(--primary);
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        display: block;
        color: #2b2a28;
    }
    
    .sitemap-card:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
        text-decoration: none;
    }
    
    .card-label {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .card-description {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .sitemap-card:hover .card-description {
        opacity: 1;
    }
    
    .category-section {
        margin-bottom: 40px;
    }
    
    .category-header {
    color: #f05836;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f05836;
}
    
    .main-links {
        margin-bottom: 50px;
    }
    
    @media (max-width: 768px) {
        .sitemap-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }
        
        .category-header {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .sitemap-card {
            padding: 15px;
        }
        
        .card-label {
            font-size: 1rem;
        }
    }
    
    .faq-split-section{
padding:110px 0;
background:#f7f9fc;
}

/* LEFT */

.faq-label{
color:#2563eb;
font-weight:600;
margin-bottom:12px;
}

.faq-label i{
margin-right:6px;
}

.faq-title{
font-size:36px;
font-weight:700;
color:#111;
margin-bottom:15px;
}

.faq-text{
color:#6b7280;
line-height:1.7; 
}

.faq-image img{
width:100%;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* RIGHT */

.faq-box{
padding-left:20px;
}

.faq-item{
background:#fff;
border-radius:14px;
margin-bottom:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
overflow:hidden;
transition:.3s;
}

.faq-q{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 22px;
cursor:pointer;
font-weight:600;
}

.faq-q i{
color:#2563eb;
font-size:14px;
transition:.3s;
}

.faq-a{
max-height:0;
overflow:hidden;
padding:0 22px;
color:#6b7280;
line-height:1.7;
transition:max-height .35s ease;
}

.faq-item.active .faq-a{
max-height:160px;
padding:0 22px 18px;
}

.faq-item.active .faq-q i{
transform:rotate(45deg);
}

/* MOBILE */

@media(max-width:991px){

.faq-box{
margin-top:40px;
padding-left:0;
}

.faq-title{
font-size:28px;
}

}