/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --primary-color: #f3b139;
    --secondary-color: #2e3c6b;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 114px;
    transition: padding-top 0.3s ease;
}

/* body.scrolled {
    padding-top: 70px; 
}
*/

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.text-justify {
    text-align: justify;
}

/* whatsApp fixed-icon-start ========================================== */
.whatsapp-fixed {
    position: fixed;
    bottom: 90px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-fixed a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-fixed a:hover {
    transform: scale(1.1);
}

.spinner-grow-slow {
    animation-duration: 1.5s;
}

.whatsapp-fixed:hover.spinner-grow-slow {
    animation-play-state: paused;
}

@media(max-width:576px) {
    .whatsapp-fixed {
        bottom: 90px;
        left: 10px;
    }

    .whatsapp-fixed a {
        width: 43px;
        height: 43px;
        font-size: 24px;
    }
}

/* Whats app End ============================= */

/* ===================================
   Container
   =================================== */

.section-padding {
    padding: 50px 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 30px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.primary-bg-color {
    background: var(--primary-color);
}

.primary-color {
    color: var(--primary-color);
}

.secondary-bg-color {
    background: var(--secondary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
}

/* Buttons */
.btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: unset;
    transition: var(--transition);
    border: none;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn i {
    font-size: 14px;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

.form-btn {
    background: var(--secondary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary.active,
.btn-primary:active:focus {
    background: var(--white-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
    transform: none;
    outline: none;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-secondary.active,
.btn-secondary:active:focus {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
    transform: none;
    outline: none;
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Horizontal line hr */
.bottom-line::after {
    content: "";
    width: 100%;
    border-top: 3px solid var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.top-bar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--primary-color);
}

.top-bar-left .separator {
    color: rgba(255, 255, 255, 0.3);
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
}

.top-bar .social-links {
    display: flex;
    gap: 10px;
}

.top-bar .social-links a {
    width: 30px;
    height: 30px;
    background: rgba(243, 177, 57, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 12px;
}

.top-bar .social-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1020;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    top: 0;
}

.navbar-brand {
    align-items: center;
}

.navbar-brand .logo-img {
    height: auto;
    width: 300px;
    max-width: 100%;
    padding-left: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: auto;
    width: 250px;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar.scrolled .brand-text {
    font-size: 18px;
}

.nav-item {
    margin-left: 30px;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 25px 18px;
    margin: 0 3px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link i {
    font-size: 17px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
    transform: scale(1.1);
}

/* .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
} */

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* .navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
} */

.navbar-nav .nav-link:hover i {
    transform: scale(1.15) rotate(5deg);
}

.navbar-nav .nav-link.active i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.navbar-toggler {
    border-color: var(--secondary-color);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   Simple Dropdown Menu
   =================================== */
.nav-dropdown {
    min-width: 220px;
    border: none;
    border-top: 3px solid var(--primary-color);
    border-radius: unset;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    background: var(--white-color);
    animation: dropFadeIn 0.2s ease;
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.nav-dropdown .dropdown-item i {
    font-size: 14px;
    color: var(--primary-color);
    width: 18px;
    text-align: center;
    transition: var(--transition);
}

.nav-dropdown .dropdown-item:hover {
    color: var(--primary-color);
    background: rgba(243, 177, 57, 0.07);
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

.nav-dropdown .dropdown-item:hover i {
    transform: scale(1.15);
}

.dropdown-item.active {
    background-color: transparent;
    color: var(--primary-color);
}

/* ===================================
   Sub-Dropdown Menu
   =================================== */
.dropdown-submenu {
    position: relative;
}

/* .dropdown-item-sub {
    justify-content: space-between;
} */

.sub-arrow {
    font-size: 11px !important;
    width: auto !important;
    margin-left: auto;
    color: var(--text-light) !important;
    transition: var(--transition);
}

.dropdown-submenu:hover .sub-arrow {
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    min-width: 210px;
    border-top: 3px solid var(--primary-color);
    border-radius: unset;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    animation: dropFadeIn 0.2s ease;
}

.sub-dropdown-1 {
    top: -215px;
}

.dropdown-submenu:hover .sub-dropdown {
    display: block;
}

/* Mobile: sub-dropdown stacks below */
@media (max-width: 767px) {
    .sub-dropdown {
        position: static;
        left: 0;
        margin-left: 20px;
        border-top: none;
        border-left: 3px solid var(--primary-color);
        box-shadow: none;
        border-radius: unset;
        background: #fff !important;
        display: none;
    }

    .dropdown-submenu.open .sub-dropdown {
        display: block;
    }

    .sub-arrow {
        pointer-events: none;
    }
}

/* Tablet nav - logo size fix */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar-brand .logo-img {
        height: 45px;
    }

    .navbar.scrolled .logo-img {
        height: 38px;
    }

    .brand-text {
        font-size: 16px;
    }

    .navbar-nav .nav-link {
        padding: 10px 10px;
        font-size: 13px;
    }
}

/* Mobile dropdown */
@media (max-width: 767px) {
    .nav-dropdown {
        border-top: none;
        border-left: 3px solid var(--primary-color);
        border-radius: unset;
        box-shadow: none;
        background: var(--light-color);
        animation: none;
    }
}

/* ===================================
   Hero Carousel Section
   =================================== */
.hero-carousel-section {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.carousel-bg-image {
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.4);
}

.carousel-bg-gradient {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    top: 40px;
}

.carousel-bg-gradient img {
    width: 100%;
    height: 100%;
    object-fit: unset;
    display: block;
}

.slide-1 {
    background: linear-gradient(135deg, #2e3c6b 0%, #1a2847 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #1a2847 0%, #2e3c6b 50%, #3d4f7f 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #3d4f7f 0%, #2e3c6b 50%, #1a2847 100%);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 60, 107, 0.8) 0%, rgba(26, 40, 71, 0.7) 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white-color);
}

.hero-badge {
    display: inline-block;
    background: rgba(243, 177, 57, 0.2);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white-color);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease-out;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* .stat-item h3::after {
    content: '+';
} */

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease-out;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-badge span {
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;
}

.hero-clients {
    animation: fadeInUp 1.6s ease-out;
}

.clients-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.client-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.client-badge {
    background: rgba(243, 177, 57, 0.2);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(243, 177, 57, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition);
    z-index: 3;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
}

.carousel-indicators {
    bottom: 0;
    z-index: 3;
    margin-bottom: .5rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white-color);
    margin: 0 5px;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: var(--white-color);
    padding-top: 100px;
}

.about-image-wrapper {
    position: relative;
    text-align: center;
}

.about-image-wrapper .about-page-img {
    width: 60%;
}

.about-main-img {
    /* border-radius: 15px; */
    box-shadow: var(--shadow);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.experience-badge h3::after {
    content: '+';
}

.experience-badge p {
    font-size: 14px;
    margin: 0;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.about-text strong {
    color: #000;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-item span {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

/* ===================================
   Categories Section
   =================================== */
.categories-section {
    background: var(--white-color);
}

.categories-section .section-title {
    background: linear-gradient(180deg, var(--primary-color), transparent);
}

.category-card {
    background: var(--white-color);
    padding: 20px 20px;
    border-radius: unset;
    /* box-shadow: var(--shadow); */
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.category-img img {
    height: 250px;
    width: 200px;
}

.category-img .snow-chain {
    width: 200px;
    height: 250px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #f5c563);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: rotateY(360deg);
}

.category-icon i {
    font-size: 36px;
    color: var(--white-color);
}

.category-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
    padding-top: 20px;
}

.category-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    background: var(--white-color);
}

.product-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.popular-badge {
    background: var(--secondary-color);
}

.new-badge {
    background: #28a745;
}

.product-image {
    background: linear-gradient(135deg, var(--secondary-color), #3d4f7f);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.product-icon {
    font-size: 80px;
    color: var(--primary-color);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 60, 107, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.product-content {
    padding: 30px;
}

.product-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-brand {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-product {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-product:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* ===================================
   Blog Cards Section
   =================================== */
.blog-section-header .section-title {
    font-size: 2.2rem;
}

.blog-card {
    background: var(--white-color);
    border-radius: unset;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(46, 60, 107, 0.10);
    transition: var(--transition);
    height: 100%;
    border: 1.5px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(46, 60, 107, 0.18);
    border-color: var(--primary-color);
}

/* Banner top area */
.blog-card-banner {
    position: relative;
    padding: 28px 24px 24px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: unset;
    overflow: hidden;
}

.blog-card-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.blog-card-banner-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.75);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(46, 60, 107, 0.15);
    letter-spacing: 0.3px;
}

/* Author row inside banner */
.blog-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.blog-author-img-wrap {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.blog-author-img-wrap i {
    font-size: 22px;
    color: var(--white-color);
}

.blog-author-info {
    display: flex;
    flex-direction: column;
}

.blog-author-info strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

.blog-author-info span {
    font-size: 11.5px;
    color: var(--text-light);
    font-weight: 500;
}

/* Card body */
.blog-card-body {
    padding: 22px 24px 26px;
}

.blog-date {
    font-size: 12.5px;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.blog-date i {
    color: var(--primary-color);
    font-size: 13px;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-excerpt {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.blog-btn i {
    font-size: 12px;
    transition: var(--transition);
}

.blog-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    gap: 12px;
}

.blog-btn:hover i {
    transform: translateX(3px);
}

/* Load More */
.blog-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 32px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.blog-load-more:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.blog-load-more i {
    transition: var(--transition);
}

.blog-load-more:hover i {
    transform: translateY(3px);
}

@media (max-width: 767px) {
    .blog-card-banner {
        min-height: 160px;
    }

    .blog-card-banner-text h3 {
        font-size: 1.1rem;
    }
}


/* Blog banner background variants */
.blog-banner-walkie {
    background: linear-gradient(135deg, #e8e4d9 60%, #d4c9b0 100%);
}

.blog-banner-camera {
    background: linear-gradient(135deg, #dce8f0 60%, #b8d4e8 100%);
}

.blog-banner-gps {
    background: linear-gradient(135deg, #e8f0e0 60%, #c8ddb8 100%);
}

.blog-banner-hunting {
    background: linear-gradient(135deg, #f0e8dc 60%, #e0c8a8 100%);
}

.blog-banner-analyser {
    background: linear-gradient(135deg, #ece0f0 60%, #d4b8e8 100%);
}

.blog-banner-jerry {
    background: linear-gradient(135deg, #dce8f5 60%, #a8c8e8 100%);
}

/* Blog author icon background variants */
.blog-author-golden {
    background: linear-gradient(135deg, #f3b139, #2e3c6b);
}

.blog-author-navy {
    background: linear-gradient(135deg, #2e3c6b, #4a5fa0);
}

.blog-author-green {
    background: linear-gradient(135deg, #28a745, #1a6b30);
}

.blog-author-amber {
    background: linear-gradient(135deg, #f3b139, #c47d0a);
}

.blog-author-purple {
    background: linear-gradient(135deg, #9b59b6, #6c3483);
}

.blog-author-dark {
    background: linear-gradient(135deg, #2e3c6b, #1a2847);
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose-section {
    background: var(--white-color);
}

.feature-box {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: unset;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), #3d4f7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), #f5c563);
    transform: rotateY(360deg);
}

.feature-icon i {
    font-size: 40px;
    color: var(--white-color);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===================================
   Industries Section
   =================================== */
/* .industries-section {
    background: var(--light-color);
} */

/* .industry-card {
    background: var(--secondary-color);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
} */

/* .industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--secondary-color), #3d4f7f);
} */

/* .industry-card i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
} */

/* .industry-card:hover i {
    color: var(--white-color);
    transform: scale(1.1);
} */

/* .industry-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 15px;
    transition: var(--transition);
} */

/* .industry-card:hover h4 {
    color: var(--white-color);
} */

/* .industry-card p {
    font-size: 15px;
    color: var(--light-color);
    margin: 0;
    transition: var(--transition);
} */

/* .industry-card:hover p {
    color: rgba(255, 255, 255, 0.9);
} */

/* ===================================
   Brands Section
   =================================== */
.brands-section {
    background: var(--white-color);
    padding-top: 50px;
}

.client_section {
    background: var(--primary-color);
    padding-bottom: 50px;
}

.brands-swiper {
    /* padding: 20px 0 40px; */
    padding-top: 40px;
    overflow: hidden;
}

.brands-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item {
    padding: 18px 18px;
    background: var(--white-color);
    /* border-radius: 10px; */
    /* box-shadow: var(--shadow); */
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.brand-item:hover {
    transform: translateY(-5px);
    /* box-shadow: var(--shadow-hover); */
    color: var(--primary-color);
}

/* ===================================
   Vision & Mission Sections
   =================================== */
.vision-section {
    background: var(--white-color);
}

.mission-section {
    background: var(--light-color);
}

.vm-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.vision-icon-wrap {
    background: linear-gradient(135deg, var(--secondary-color), #3d4f7f);
    box-shadow: 0 20px 60px rgba(46, 60, 107, 0.35);
}

.mission-icon-wrap {
    background: linear-gradient(135deg, var(--primary-color), #f5c563);
    box-shadow: 0 20px 60px rgba(243, 177, 57, 0.35);
}

.vm-icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon-main {
    font-size: 90px;
    color: var(--white-color);
    z-index: 1;
}

.vm-icon-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

.vm-icon-float::before {
    display: block;
    line-height: 2;
}

.vm-float-1 {
    font-size: 22px;
    width: 55px;
    height: 55px;
    top: 20px;
    right: 25px;
    animation-delay: 0s;
}

.vm-float-2 {
    font-size: 20px;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 20px;
    animation-delay: 1s;
}

.vm-float-3 {
    font-size: 18px;
    width: 45px;
    height: 45px;
    bottom: 30px;
    left: 25px;
    animation-delay: 2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.mission-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===================================
   Page Banner
   =================================== */
.page-banner {
    background: linear-gradient(33deg, var(--secondary-color) 25%, var(--primary-color) 95%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

/* .page-banner-overlay {
    position: absolute;
    inset: 0;
    background: url('assets/images/hero/walkie-talkie-banner-image.jpg') center/cover no-repeat;
    opacity: 0.12;
} */

.page-banner-content {
    position: relative;
    z-index: 1;
    padding-block: 100px;
}

.page-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
}

.breadcrumb-bg_img {
    background: linear-gradient(rgb(0 0 0 / 0.7), transparent), url("../images/breadcrumb-img/bread-img.webp") top/cover no-repeat;
    width: 100%;
    height: auto;
}

.blog-bg_breadcrumb-img {
    background: linear-gradient(rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.5)), url("../images/breadcrumb-img/bg-blog-img.jpg") center/cover no-repeat;
}

.cntct-breadcrumb-img {
    background: linear-gradient(rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.5)), url("../images/breadcrumb-img/contact-img.jpg") center/cover no-repeat;
    ;
}

.cert-breadcrumb-img {
    background: linear-gradient(rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.5)), url("../images/breadcrumb-img/certificate-img.jpg") bottom/cover no-repeat;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb-item a {
    color: var(--primary-color);
    font-size: 15px;
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Contact Info Boxes
   =================================== */
.contact-cards-section {
    background: var(--light-color);
    padding-bottom: 0;
}

.contact-info-box {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.contact-info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #f5c563);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 28px;
    color: var(--white-color);
}

.contact-info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-info-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.contact-info-box a {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===================================
   Contact Main Section
   =================================== */
.contact-main-section {
    background: var(--light-color);
}

.contact-form-block {
    background: var(--primary-color);
    padding: 50px 45px;
    border-radius: unset;
    box-shadow: var(--shadow);
}

.contact-form-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    padding: 13px 18px;
    border: 2px solid var(--border-color);
    border-radius: unset;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light-color);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(243, 177, 57, 0.2);
    background: var(--white-color);
}

.contact-form textarea.form-control {
    resize: vertical;
}

/* Right side info */
.contact-side-info {
    margin-bottom: 35px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail-row:last-of-type {
    border-bottom: none;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-color), #3d4f7f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.contact-detail-row div span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-detail-row div a {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

.contact-detail-row div a:hover {
    color: var(--primary-color);
}

.contact-social-row {
    padding-top: 20px;
}

.contact-social-row span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-links a {
    width: 42px;
    height: 42px;
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 16px;
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: unset;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map-iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

@media (max-width: 767px) {
    .page-banner-content h1 {
        font-size: 32px;
    }

    .contact-form-block {
        padding: 30px 20px;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--white-color);
}

.contact-info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: unset;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white-color);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white-color);
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 50px;
    border-radius: unset;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(243, 177, 57, 0.25);
}

.contact-form select.form-control {
    cursor: pointer;
}

.contact-form textarea.form-control {
    resize: vertical;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: var(--light-color);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--white-color);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 30px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: var(--white-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 25px 30px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    background: var(--white-color);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 80px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.certified-img img {
    max-width: 100%;
    height: auto;
}

.footer-widget h2 {
    font-size: 20px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(243, 177, 57, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-widget h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* walkie Talkie page css ================================================ */
.walkie-heading h1 {
    color: var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.product_card-img {
    background: #fff;
    box-shadow: 2px 3px 8px 7px rgba(0, 0, 0, 0.09);
    border-radius: 5px;
}

.walkie-text {
    color: var(--primary-color);
}

.walkie-text h2 {
    font-size: 1.5rem;
}

/* <!-- Sanchar Walkie all Model Details CSS --> */
.sanchar-img img {
    width: auto;
    height: 400px;
    object-fit: cover;
}

.product-detaile {
    margin-top: 20px;
}

.product-detaile h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tech-text h4 {
    display: inline-block;
    padding-bottom: 3px;
}

.tech-text p {
    margin-bottom: 2px;
}

.feature-content ul li {
    font-size: 14px;
}

.feature-content .tech-text h3 {
    color: var(--secondary-color);
}

/* Certificates Page Section Css ======================== */
.cert_box h1 {
    color: var(--secondary-color);
}

.product-01 {
    padding: 40px 0;
}

.product-02 h2 {
    margin-bottom: 20px;
}

.pro-pdf {
    position: relative;
}

.pro-pdf img {
    width: 80px;
    position: absolute;
    z-index: 999;
    margin-top: 10px;
    right: 0px;
    margin-right: 2px;
}

.certificate {
    padding: 40px 0;
    background-color: #f2f2f2 !important;
}

.certificate-01 {
    border: 2px solid var(--secondary-yellow);
}

.product-image-1 {
    border: 4px solid var(--primary-color);
}

.product-image-1 img {
    width: 100%;
    height: 640px;
}

.product-04 {
    padding: 40px 0;
}

.certificate {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    box-sizing: border-box;
}

.certificate .container>.row {
    justify-content: center;
    row-gap: 1.25rem;
}

.certificate .certificate-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .5rem;
}

.certificate .certificate-01 img,
.certificate .product-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: inline-block;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 6px;
}

.product-01 .row {
    justify-content: center;
    gap: 0rem;
}

/* Responsive Media Query========================= */
@media (max-width: 991px) {
    .product-image-1 img {
        width: 100%;
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .product-01 .col-lg-3 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .certificate .certificate-01 img {
        max-width: 420px;
    }

    .product-image-1 img {
        width: 100%;
        height: 420px;
    }
}

/* single-column on very small screens */
@media (max-width: 479.98px) {
    .product-01 .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .certificate .certificate-01 img {
        max-width: 100%;
    }

    .product-image-1 img {
        width: 100%;
        height: 420px;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
    }

    .carousel-bg-gradient {
        top: 0;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .about-section .section-header {
        margin-top: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }

    .experience-badge h3 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 30px;
        margin-top: 30px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }

    /*  .top-bar-left,
    .top-bar-right {
        justify-content: center;
        text-align: center;
    } */

    .top-bar .row>div {
        margin-bottom: 10px;
    }

    /* About Page MediaQuery ==================== */
    .about-image-wrapper .about-page-img {
        width: 100%;
    }

    /* dets sanchar page css =================== */
    .page-banner-content {
        padding-block: 0;
    }

    .walkie-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }

    body.scrolled {
        padding-top: 70px;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
        padding: 10px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .navbar-brand .logo-img {
        height: auto;
        width: 180px;
        padding-left: 10px;
    }

    .navbar.scrolled .logo-img {
        height: auto;
        width: 120px;
    }

    .brand-text {
        font-size: 18px;
    }

    .navbar.scrolled .brand-text {
        font-size: 16px;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 5px 0;
        justify-content: flex-start;
    }

    .navbar-nav .nav-link i {
        font-size: 16px;
        width: 20px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .carousel-bg-image {
        height: 60vh;
    }

    .carousel-bg-gradient {
        height: 60%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .brands-swiper {
        padding-top: 20px;
    }

    .about-section .section-header {
        margin-top: 0;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .category-card,
    .product-card,
    .feature-box,
    .industry-card {
        margin-bottom: 20px;
    }

    .product-image {
        padding: 40px;
        min-height: 200px;
    }

    .product-icon {
        font-size: 60px;
    }

    .brands-grid {
        gap: 20px;
    }

    .brand-item {
        font-size: 18px;
        padding: 15px 25px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* .top-bar {
        display: none !important;
    }

    .navbar-nav .nav-link::after {
        display: none !important;
    } */
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .brands-swiper {
        padding-top: 20px;
    }

    .about-section .section-header {
        margin-top: 0;
    }

    .about-text {
        text-align: left;
    }

    .category-icon,
    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .category-icon i,
    .feature-icon i {
        font-size: 30px;
    }

    .contact-info-card h3 {
        font-size: 1rem;
    }

    .footer-bottom-links {
        flex-direction: row;
        gap: 10px;
        justify-content: center;

    }

    .copyright {
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Utilities
   =================================== */
section {
    scroll-margin-top: 114px;
}

section:first-of-type {
    scroll-margin-top: 0;
}

img {
    animation: fadeIn 0.5s ease-in;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
}