* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

a{
text-decoration: none;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow-x: hidden;
}

/* Top Bar with Split Colors */
.top-bar {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    min-height: 45px; /* instead of height */
}

/* Background shapes */
.top-bar::before,
.top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 0;
}

.top-bar::before {
    left: -10%;
    width: 65%;
    background: #164a73;
    transform: skewX(30deg);
}

.top-bar::after {
    right: -5%;
    width: 55%;
    background: #7f7f7e;
    transform: skewX(-30deg);
}

/* Content above background */
.top-bar .container {
    position: relative;
    z-index: 1;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    transition: 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* ---------------- MOBILE FIX ---------------- */
@media (max-width: 768px) {

    .top-bar {
        padding: 10px 0;
        font-size: 13px;
    }

    /* Stack content */
    .top-bar .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    /* Reduce spacing */
    .top-bar a {
        margin: 0 8px;
        display: inline-block;
    }

    /* OPTIONAL: remove skew on mobile (recommended) */
    .top-bar::before,
    .top-bar::after {
        transform: none;
        width: 50%;
        left: 0;
        right: auto;
    }

    .top-bar::after {
        left: 50%;
    }
}


/* Main Navigation */
.main-navbar {
background: white;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
padding: 0;
transition: all 0.3s ease;
}

.navbar-brand {
font-weight: 700;
font-size: 24px;
background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
transition: all 0.3s ease;
}

.navbar-brand img{
height: 100px;
}

.navbar-brand:hover {
transform: scale(1.05);
}

/* Center Navigation */
.navbar-nav {
margin: 0 auto;
}

.navbar-nav .nav-link {
color: #333;
font-weight: 500;
padding: 22px 20px !important;
position: relative;
transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
color: #164a73;
transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
transition: width 0.4s ease;
}

.navbar-nav .nav-link:hover::after {
width: 80%;
}



/* Desktop Dropdown */
.dropdown-menu {
border: none;
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
border-radius: 10px;
margin-top: 0;
padding: 12px 0;
opacity: 0;
transform: translateY(10px);
transition: all 0.3s ease;
pointer-events: none;
}

.dropdown-menu.show {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

.dropdown-item {
padding: 12px 25px;
transition: all 0.3s ease;
position: relative;
}

.dropdown-item:hover {
background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
color: #164a73;
padding-left: 40px;
}

.dropdown-submenu {
position: relative;
}

.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%; 
}



/* Parallelogram Button */
.cta-button {
position: relative;
background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
color: white;
padding: 12px 30px;
border: none;
font-weight: 600;
cursor: pointer;
overflow: hidden;
transform: skewX(-10deg);
transition: all 0.3s ease;
margin-left: 20px;
}

.cta-button span {
display: inline-block;
transform: skewX(10deg);
}

.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.2);
transition: left 0.4s ease;
}

.cta-button:hover {
transform: skewX(-10deg) translateY(-2px);
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.cta-button:hover::before {
left: 100%;
}

/* Mobile Sidebar */
.mobile-sidebar {
position: fixed;
top: 0;
left: -320px;
width: 320px;
height: 100vh;
background: white;
z-index: 9999;
transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
overflow-y: auto;
box-shadow: 2px 0 15px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
left: 0;
}

.sidebar-header {
background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
color: white;
padding: 25px;
display: flex;
justify-content: space-between;
align-items: center;
}

.sidebar-header h3 {
margin: 0;
font-size: 22px;
}

.close-sidebar {
background: rgba(255,255,255,0.2);
border: none;
color: white;
font-size: 24px;
cursor: pointer;
width: 40px;
height: 40px;
border-radius: 50%;
transition: all 0.3s ease;
}

.close-sidebar:hover {
background: rgba(255,255,255,0.3);
transform: rotate(90deg);
}

.mobile-menu {
list-style: none;
padding: 0;
margin: 0;
}

.mobile-menu > li > a {
display: block;
padding: 16px 25px;
color: #333;
text-decoration: none;
border-bottom: 1px solid #f0f0f0;
transition: all 0.3s ease;
}

.mobile-menu > li > a:hover {
background: linear-gradient(90deg, #f8f9fa 0%, white 100%);
padding-left: 30px;
color: #164a73;
}

.mobile-submenu-toggle {
float: right;
background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
border: none;
font-size: 16px;
color: white;
cursor: pointer;
width: 30px;
height: 30px;
border-radius: 50%;
transition: all 0.3s ease;
}

.mobile-submenu-toggle.active {
transform: rotate(90deg);
}

.mobile-submenu {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
background: #f8f9fa;
}

.mobile-submenu.active {
max-height: 1000px;
}

.mobile-submenu li a {
display: block;
padding: 14px 25px 14px 45px;
color: #555;
text-decoration: none;
border-bottom: 1px solid #e0e0e0;
transition: all 0.3s ease;
}

.mobile-submenu li a:hover {
background: #e9ecef;
color: #164a73;
padding-left: 50px;
}

.mobile-submenu .mobile-submenu li a {
padding-left: 65px;
background: #e9ecef;
}

.mobile-submenu .mobile-submenu li a:hover {
padding-left: 70px;
}

.mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0,0,0,0.5);
z-index: 9998;
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
}

.mobile-overlay.active {
opacity: 1;
pointer-events: auto;
}

.hamburger {
display: none;
background: none;
border: none;
font-size: 24px;
color: #333;
cursor: pointer;
transition: all 0.3s ease;
}

.hamburger:hover {
color: #164a73;
transform: scale(1.1);
}

@media (max-width: 991px) {
.hamburger {
    display: block;
}

.desktop-menu {
    display: none !important;
}

.navbar-brand {
    font-size: 20px;
}
}

@media (min-width: 992px) {
.mobile-sidebar,
.mobile-overlay {
    display: none !important;
}
}

/* Demo Content */
.demo-content {
padding: 50px 0;
}

.demo-content h1 {
color: #333;
margin-bottom: 25px;
font-weight: 700;
}

.demo-content p {
color: #666;
line-height: 1.8;
font-size: 16px;
}
/* Remove Bootstrap's default dropdown caret */
.dropdown-toggle::after {
display: none !important;
}
.dropdown-submenu > .dropdown-item::after {
right: 15px; /* instead of 20px for better visual balance */
}
/* Horizontal accent line beside dropdown items on hover */
.dropdown-item {
position: relative;
overflow: hidden;
padding-left: 35px; /* space for line */
}

.dropdown-item::before {
content: '';
position: absolute;
top: 50%;
left: 18px;
transform: translateY(-50%);
width: 0;
height: 2px;
background: linear-gradient(135deg, #164a73 0%, #164a73 100%);
border-radius: 2px;
transition: width 0.3s ease;
}

.dropdown-item:hover::before {
width: 10px;
}
.dropdown-item:hover::before {
width: 15px;
}

.features-section{
    padding:60px 20px;
    background:#fff;
}

.features-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* Card */
.feature-card{
    background:#fff;
    border:2px solid #eee;
    border-radius:16px;
    padding:35px 28px;
    position:relative;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
}

.feature-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:#f3f6f9;
    opacity:0;
    transition:.35s ease;
    z-index:0;
}


.feature-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:0 25px 50px rgba(22,74,115,.25);
}

.feature-card:hover::before{
    opacity:1;
}


.feature-card > *{
    position:relative;
    z-index:1;
}


/* Icon */
.feature-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#164a73;
    color:#fff;
    border-radius:12px;
    font-size:26px;
    margin-bottom:18px;
    transition:.35s ease;
}

.feature-card:hover .feature-icon{
    transform:scale(1.1) rotate(360deg);
}

/* Text */
.feature-title{
    font-size:20px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}

.feature-description{
    font-size:15px;
    line-height:1.7;
    color:var(--text);
}

/* Bottom Accent */
.feature-accent{
    position:absolute;
    left:0;
    bottom:0;
    height:4px;
    width:0;
    background:var(--primary);
    transition:.35s ease;
    z-index:2;
}

.feature-card:hover .feature-accent{
    width:100%;
}

.feature-card.active{
    border-color:var(--primary);
    box-shadow:0 25px 50px rgba(22,74,115,.25);
    transform:translateY(-10px);
}

/* Responsive */
@media(max-width:768px){
    .feature-card{
        padding:28px 22px;
    }
}
 

/* About-section  */

.section-title span {
    color: #2196F3;
    font-size: 2.5rem;
    font-weight: bold;
}

.section-subtitle h1 {
    font-size: 1.8rem;
    color: #333;
}

.floating-image {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
    height: 500px;
    width: 500px;
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text p{
    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;
    }
}

.quad-image {
    position: relative;
    aspect-ratio: 4 / 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}

.quad {
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--quad-img);
    background-size: 200% 200%;
    border-radius: 6px;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Background positions */
.q1 { background-position: 0% 0%; }
.q2 { background-position: 100% 0%; }
.q3 { background-position: 0% 100%; }
.q4 { background-position: 100% 100%; }

/* Animation trigger */
.animate-on-scroll.active .quad {
    opacity: 1;
    transform: scale(1);
}


/* Stagger timing */
.animate-on-scroll.active .q1 { transition-delay: 0s; }
.animate-on-scroll.active .q2 { transition-delay: 0.15s; }
.animate-on-scroll.active .q3 { transition-delay: 0.3s; }
.animate-on-scroll.active .q4 { transition-delay: 0.45s; }


.fancy-heading {
    position: relative;
    margin-bottom: 50px;
}

.heading-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(60px, 6vw, 140px);
    font-weight: 800;
    letter-spacing: 3px;

    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15);
    text-stroke: 1.5px rgba(0, 0, 0, 0.15);

    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.heading-main {
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
    color: #164a73;
    z-index: 1;
}


/* hot product section  */
.hot-products-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
/* Fancy Hollow Text Background */
.section-title-bg {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #0000002b;
    text-stroke: 2px rgba(102, 126, 234, 0.1);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    letter-spacing: 10px;
}

.section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-subtitle h1{
    font-size: 30px;
    color: #666;  
}

/* Product Card (Simplified) */
.product-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.product-image-wrapper {
    height: 300px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding-top: 15px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    transform: scale(.9);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1);
}

.product-info {
    padding: 25px;
}

 

.product-category {
    font-size: 12px;
    color: #164b73c4;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s ease;
}

.product-title-link:hover .product-title {
    color: #838383;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-bg {
        font-size: 80px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .product-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .section-title-bg {
        font-size: 50px;
        top: 9%;
    }

    .section-title {
        font-size: 28px;
    }
}

/* why us Section */
.why-us-hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.why-us-hero-content {
    padding-left: 40px;
}

.why-us-welcome-tag {
    color: #164a73;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin : 20px 0;
}

.why-us-welcome-tag::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #164a73;
}

.why-us-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #164a73;
    line-height: 1.15;
    margin-bottom: 35px;
}

.why-us-feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.why-us-feature-icon {
    color: #164a73;
}

.why-us-feature-text {
    font-weight: 700;
    color: #164a73;
}

.why-us-description-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-us-button-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-us-more-about-btn {
    background: #164a73;
    color: #fff;
    padding: 14px 40px;
    border: none;
    font-weight: 700;
}

.why-us-ceo-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Image Collage */
.why-us-img-colarge {
    position: relative;
    height: 100%;
    margin-bottom: 80px;
}

.why-us-colarge-1 {
    position: relative;
    margin: 40px 30px 0 40px;
    z-index: 0;
}

.why-us-colarge-1::before,
.why-us-colarge-1::after {
    position: absolute;
    border: 15px solid #164a73;
    content: '';
    width: 80%;
    height: 80%;
    z-index: -1;
}

.why-us-colarge-1::before {
    left: -40px;
    top: -40px;
}

.why-us-colarge-1::after {
    right: -30px;
    bottom: 0;
}

.why-us-since-year-outer {
    position: relative;
}

.why-us-since-year {
    position: absolute;
    right: 0;
    top: -30px;
    z-index: 1;
}

.why-us-since-year span {
    color: #00173c;
    font-size: 60px;
    font-weight: 500;
    font-family: 'Teko', sans-serif;
    line-height: 0;
    padding-right: 10px;
}

.why-us-since-year strong {
    color: #fff;
    font-size: 85px;
    font-weight: 500;
    font-family: 'Teko', sans-serif;
    background-color: #164a73;
    line-height: 25px;
    padding: 40px 10px 30px 12px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 991px) {
    .why-us-img-colarge {
        padding-top: 30px;
        margin: -10px;
    }

    .why-us-colarge-1 img {
        width: 100%;
    }

    .why-us-since-year-outer {
        text-align: right;
    }

    .why-us-since-year {
        position: static;
        margin-top: -30px;
    }
}

@media (max-width: 767px) {
    .why-us-img-colarge {
        margin: 0;
        padding-top: 0;
    }

    .why-us-colarge-1 {
        margin-bottom: 30px;
        padding: 0;
    }

    .why-us-since-year {
        margin-top: -45px;
    }
}

@media (max-width: 480px) {
    .why-us-since-year span {
        font-size: 40px;
    }

    .why-us-hero-title {
        font-size: 35px;
    }

    .why-us-since-year strong {
        font-size: 60px;
        padding: 15px 10px 15px 12px;
    }
}


/* Projects Section */
.projects-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/img/hre.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.section-tag {
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #7f7f7e;
    margin-right: 12px;
    vertical-align: middle;
}

.section-tag::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #7f7f7e;
    margin-left: 12px;
    vertical-align: middle;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
}

/* Owl Carousel Styles */
.projects-carousel {
    position: relative;
    z-index: 4;
}

.owl-carousel .owl-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease, height 0.4s ease;
}

.owl-carousel .owl-item .project-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 420px;
}

/* Default (side items) */
.owl-carousel .owl-item .project-card {
    transform: scale(0.9);
    opacity: 0.6;
    filter: brightness(0.85);
}

/* CENTER item only */
.owl-carousel .owl-item.center .project-card {
    transform: scale(1.01) translateY(-18px);
    box-shadow: 0 45px 90px rgba(0,0,0,0.6);
    opacity: 1;
    filter: brightness(1.05);
    z-index: 5;
}

.owl-item.center .project-image {
    height: 70%;
}

.owl-item .project-image {
    height: 62%;
    transition: height 0.4s ease;
}


/* Project Card */
.project-card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); 
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 8px; 
}

.project-image {
    width: 100%;
    height: 65%;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    transform: scale(.8);
}

.project-card:hover .project-image img {
    transform: scale(.9);
}

.project-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.7);
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-title a{
    color: #fff;
}

.project-category {
    font-size: 13px;
    color: #7f7f7e;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Owl Navigation */
.owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    font-size: 20px;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background-color: #7f7f7e;
    border-color: #7f7f7e;
    transform: scale(1.1);
}
/* 
.owl-nav .owl-prev {
    left: -75px;
    border: 1px solid #ccc !important;
    color: #fff !important;
}



.owl-nav .owl-next {
    right: -75px;
    border: 1px solid #ccc !important;
    color: #fff !important;
} */

.owl-nav .owl-prev::before { 
    font-weight: 700;
}

.owl-nav .owl-next::before { 
    font-weight: 700;
}

/* Owl Dots */
.owl-dots {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.owl-dot.active {
    background-color: #7f7f7e;
    transform: scale(1.2);
}

.owl-dot:hover {
    background-color: rgba(255, 102, 0, 0.8);
}
/* ===============================
   PROJECTS – OWL ONLY
================================ */

/* carousel wrapper */
.projects-carousel {
    position: relative;
    z-index: 4;
}

/* owl items */
.projects-section .owl-carousel .owl-item {
    transition: transform .4s cubic-bezier(.4,0,.2,1),
                filter .4s ease,
                height .4s ease;
}

/* cards */
.projects-section .owl-item .project-card {
    transform: scale(.9);
    opacity: .6;
    filter: brightness(.85);
    transition: all .4s ease;
}

/* center item */
.projects-section .owl-item.center .project-card {
    transform: scale(1.01) translateY(-18px);
    box-shadow: 0 45px 90px rgba(0,0,0,.6);
    opacity: 1;
    filter: brightness(1.05);
    z-index: 5;
}

/* image heights */
.projects-section .owl-item.center .project-image {
    height: 70%;
}

.projects-section .project-image {
    height: 62%;
    transition: height .4s ease;
}

/* ===============================
   PROJECTS – NAV
================================ */
.projects-section .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.projects-section .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 20px;
    transition: .3s;
}

.projects-section .owl-nav button:hover {
    background: #7f7f7e;
    border-color: #7f7f7e;
    transform: scale(1.1);
}

.projects-section .owl-prev { left: -50px; }
.projects-section .owl-next { right: -50px; }

/* ===============================
   PROJECTS – DOTS
================================ */
.projects-section .owl-dots {
    margin-top: 40px;
    text-align: center;
    display: none;
}

.owl-carousel .owl-nav button.owl-next{
    background: #fff;
}

.owl-carousel .owl-nav button.owl-prev{
    background: #fff;
}

.projects-section .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: .3s;
}

.projects-section .owl-dot.active {
    background: #7f7f7e;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .projects-section {
        padding: 70px 0;
        min-height: auto;
    }

    .section-title {
        font-size: 42px;
    }

    .project-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-tag {
        font-size: 8px;
    }

    .project-card {
        height: 350px;
    }

    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .owl-nav .owl-prev {
        left: 10px;
    }

    .owl-nav .owl-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding: 40px 0;
    }

    .projects-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .project-card {
        height: 300px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-info {
        padding: 15px;
    }

    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
        display: none;
    }

    .owl-dots {
        margin-top: 30px;
    }

    .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}


/* testimonial section  */
/* ================= SECTION ================= */
.testimonial-section {
    display: flex; 
    overflow: hidden;
}

/* ================= LEFT PANEL ================= */
.testimonial-left {
    width: 60%;
    background: linear-gradient(180deg, #164a73, #164a73);
    color: #fff;
    padding: 100px 80px;
}

.testimonial-left span {
    letter-spacing: 2px;
    font-size: 13px;
    opacity: .7;
}

.testimonial-left span {
    font-size: 42px;
    margin: 15px 0 20px;
}

.testimonial-left span strong {
    display: block;
}

.testimonial-left p {
    max-width: 420px;
    line-height: 1.7;
    opacity: .8;
}

.testimonial-section .contact-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 35px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.testimonial-section .contact-btn span {
    margin-left: 10px;
    font-size: 20px;
}

/* ================= RIGHT PANEL ================= */
.testimonial-right {
    width: 45%;
    background: #7f7f7e;
    position: relative;
    padding: 120px 0;
}

/* dotted map feel */
.testimonial-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .35;
}

/* ================= SLIDER ================= */
.testimonial-slider {
    position: relative;
    max-width: 620px;
    margin-left: -140px;
    z-index: 2;
}

/* Owl clipping stays ON */
.testimonial-slider .owl-stage-outer {
    overflow: hidden;
}

/* ================= SLIDE ITEM ================= */
.testimonial-item {
    position: relative;
    padding-top: 55px; /* space for avatar */
}

/* Avatar (NOT cropped) */
.testimonial-avatar {
    position: absolute;
    top: 0;
    left: 35px;
    width: 95px;
    height: 95px;
    border: 6px solid #fff;
    background: #fff;
    z-index: 5;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card */
.testimonial-card {
    background: #fff;
    padding: 65px 40px 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.testimonial-card span {
    font-size: 20px;
}

.testimonial-card span {
    display: inline-block;
    margin-top: 4px;
    color: #5d5d5d;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-card p {
    margin-top: 25px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

/* ================= NAV ================= */
.testimonial-slider .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.testimonial-slider .owl-nav button {
    width: 42px;
    height: 42px;
    background: #ff6a00 !important;
    color: #fff !important;
    border-radius: 0 !important;
    margin-left: 6px;
}

.testimonial-slider .owl-nav button:hover {
    background: #000 !important;
}

.testimonial-slider .owl-nav .owl-prev{
    right: 50px !important;
}

.testimonial-slider .owl-nav .owl-next{
    right: 100px !important;
}
/* ===============================
   TESTIMONIAL – OWL ONLY
================================ */

.testimonial-slider {
    position: relative;
    max-width: 620px;
    margin-left: -140px;
    z-index: 2;
}

/* IMPORTANT: keep clipping ON */
.testimonial-slider .owl-stage-outer {
    overflow: hidden;
}

/* slide item */
.testimonial-slider .testimonial-item {
    position: relative;
    padding-top: 55px;
}

/* ===============================
   TESTIMONIAL – NAV
================================ */
.testimonial-slider .owl-nav {
    position: absolute;
    top: 0px;
    right: 0;
}

.testimonial-slider .owl-nav button {
    width: 42px;
    height: 42px;
    background: #164a73 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 0 !important;
    margin-left: 6px;
}

.testimonial-slider .owl-nav button:hover {
    background: #000 !important;
}

/* no dots here */
.testimonial-slider .owl-dots {
    display: none;
}

/* =======================
   LARGE LAPTOPS (≤1200px)
======================= */
@media (max-width: 1200px) {
    .testimonial-left {
        padding: 80px 60px;
    }

    .testimonial-slider {
        margin-left: -100px;
    }
}

/* =======================
   TABLETS LANDSCAPE (≤991px)
======================= */
@media (max-width: 991px) {
    .testimonial-section {
        flex-direction: column;
    }

    .testimonial-left,
    .testimonial-right {
        width: 100%;
    }

    .testimonial-left {
        padding: 70px 40px;
        text-align: center;
    }

    .testimonial-left p {
        margin: 0 auto;
    }

    .testimonial-section .contact-btn {
        justify-content: center;
    }

    .testimonial-right {
        padding: 100px 20px;
    }

    .testimonial-slider {
        margin: 0 auto;
        max-width: 90%;
    }

    .testimonial-slider .owl-nav {
        right: 50%;
        transform: translateX(50%);
    }
}

/* =======================
   TABLETS PORTRAIT (≤768px)
======================= */
@media (max-width: 768px) {
    .testimonial-left span {
        font-size: 34px;
    }

    .testimonial-card {
        padding: 60px 30px 40px;
    }

    .testimonial-avatar {
        left: 30px;
        width: 85px;
        height: 85px;
    }
}

/* =======================
   PHONES (≤576px)
======================= */
@media (max-width: 576px) {
    .testimonial-left {
        padding: 60px 25px;
    }

    .testimonial-left span {
        font-size: 28px;
    }

    .testimonial-left p {
        font-size: 14px;
    }

    .testimonial-item {
        padding-top: 45px;
    }

    .testimonial-avatar {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-card {
        text-align: center;
        padding: 70px 25px 35px;
    }

    .testimonial-card span {
        display: block;
        margin-top: 6px;
    }

    .testimonial-slider .owl-nav {
        top: -55px;
    }
}

/* =======================
   SMALL PHONES (≤360px)
======================= */
@media (max-width: 360px) {
    .testimonial-left span {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 65px 20px 30px;
    }
}


/* CTA section  */

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #164a73;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Left Section - Form */
.contact-form-section {
    background: #164a73;
    padding: 60px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 25px;
    }
}

.form-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-underline {
    width: 50px;
    height: 4px;
    background: #7f7f7e;
    margin-bottom: 20px;
}

.form-description {
    font-size: 14px;
    color: #b0c4de;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.form-label-icon {
    font-size: 16px;
    margin-right: 10px;
    color: #7f7f7e;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #4a6fa5;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: transparent;
}

.form-control:focus {
    background: transparent;
    border-bottom: 1px solid #7f7f7e;
    box-shadow: none;
    color: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    border: 1px solid #4a6fa5;
    padding: 15px;
    border-radius: 4px;
}

textarea.form-control:focus {
    border: 1px solid #7f7f7e;
}

select {
    background:#164a73;
    border: none;
    border-bottom: 1px solid #4a6fa5;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    border-radius: 0.375rem;
}

    select:focus{
    border: none;
    }

.submit-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #fff;
    color: #164a73;
}

/* Right Section - Contact Info */
.contact-info-section {
    background: #7f7f7e;
    padding: 60px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 20px;
    position: absolute;
    top: 8%;
    right: 8%;
}

@media (max-width: 576px) {
    .contact-info-section {
        padding: 40px 25px;
    }
}

.info-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.info-item {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
}

.info-item-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.info-item-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.info-item-content {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-left: 42px;
}

.info-item-content a{
    color: #fff;
}

.social-links { 
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 15px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #7f7f7e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .contact-form-section,
    .contact-info-section {
        padding: 50px 40px;
    }
}

@media (max-width: 576px) {
    .contact-form-section,
    .contact-info-section {
        padding: 35px 20px;
    }

    .form-title,
    .info-title {
        font-size: 24px;
    }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {

    .contact-wrapper {
        display: flex;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .contact-form-section {
        border-radius: 20px 20px 0 0;
    }

    .contact-info-section {
        position: relative;      /* KEY FIX */
        top: auto;
        right: auto;
        margin: 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
    }
}

/* Extra polish for small phones */
@media (max-width: 576px) {

    .contact-info-section {
        margin-top: 0;
    }

    .info-item-content {
        margin-left: 40px;
    }

    .social-links {
        justify-content: center;
    }
}



/* Footer Main Section */
.footer-main {
    background: #dcdcdc;
    padding-top: 60px;
    margin-top: 60px;
}

@media (max-width: 576px) {
    .footer-main {
        padding: 40px 15px;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Column 1 - Logo & About */
.footer-col-1 {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: #164a73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-right: 12px;
}

.footer-logo-text {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.footer-about {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 13px;
}

.footer-contact-icon {
    color: #164a73;
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
}

.footer-contact-text {
    color: #333;
}

.footer-contact-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: #164a73;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    background: #ccc;
    border-radius: 25px;
}

.social-icon:hover {
    color: #164a73;
    transform: translateY(-3px);
}

/* Column 2 - Our Services */
.footer-col-2 {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #164a73;
}

.footer-services {
    margin-top: 25px;
}

.services-column {
    display: flex;
    gap: 0px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .services-column {
        gap: 15px;
    }
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.service-item::before {
    content: '─';
    color: #164a73;
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

.service-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-item a:hover {
    color: #164a73;
}

/* Column 3 - Newsletter */
.footer-col-3 {
    display: flex;
    flex-direction: column;
}

.newsletter-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-top: 25px;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #164a73;
    box-shadow: inset 0 0 0 1px #164a73;
}

.newsletter-btn {
    background: #164a73;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover {
    background: #ff5520;
    transform: translateY(-2px);
}

/* Column 4 - Latest News */
.footer-col-4 {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
}

@keyframes slideIn {
    to {
        opacity: 1;
    }
}

.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }

.news-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
    cursor: pointer;
}

.news-title:hover {
    color: #164a73;
}

.news-date {
    font-size: 12px;
    color: #999;
}

/* Footer Bottom */
.footer-bottom {
    background: #164a73;
    padding: 30px 20px;
    color: #fff; 
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #b0c4de;
}

.footer-copyright a{
    color: #ccc;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #164a73;
}

@media (max-width: 576px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Go To Top Button */
.brd-go-top {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.brd-go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brd-go-top:hover {
    background: #ccc;
    color: #000;
}

/* WhatsApp Button */
.brd-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.brd-whatsapp-float:hover {
    transform: scale(1.1);
}



/* sitemap  */
.content .section {
    margin-bottom: 50px;
}
.content .section-title {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #164a73;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content .section-icon {
    width: 30px;
    height: 30px; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

.content .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.content .product-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #164a73;
    transition: all 0.3s ease;
    cursor: pointer;
    color:#000;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, #164a73 0%, #7f7f7e 100%);
    color: white;
    border-left-color: #7f7f7e;
}

.product-item span {
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-item p {
    font-size: 0.95em;
    opacity: 0.8;
}

.product-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item:hover {
    color: #fff;
}

@media (max-width: 768px) {
    
    
    .content {
        padding: 25px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.4em;
    }
}

/* Breadcrumb Section */
.brd-breadcrumb {
    position: relative;
    width: 100%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.brd-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 15, 35, 0.95),
        rgba(5, 15, 35, 0.65)
    );
    z-index: 1;
}

.brd-breadcrumb-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
    color: #fff;
}

/* Page Title */
.brd-page-title {
    font-size: 48px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.brd-page-title span {
    width: 4px;
    height: 40px;
    background: #ff6a00;
    display: inline-block;
}

/* Breadcrumb List */
.brd-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.brd-breadcrumb-list li {
    color: #ff6a00;
}

.brd-breadcrumb-list li a {
    color: #fff;
    text-decoration: none;
}

.brd-breadcrumb-list li::after {
    content: "/";
    margin-left: 10px;
    color: #777;
}

.brd-breadcrumb-list li:last-child::after {
    display: none;
}


.clients-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.clients-logo {
    flex: 0 0 auto;
    max-width: 175px;
    text-align: center;
}

.clients-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s ease;
}

.clients-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .clients-logos-wrapper {
        justify-content: center;
    }
}
