/* =====================================================
   BHM INDUSTRIES - GLOBAL CSS
   Theme: Electric Mobility / Industrial
===================================================== */

/* -------------------------
   Google Fonts
------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* -------------------------
   CSS Variables (Colors)
------------------------- */
:root {
    /* Brand Colors */
    --primary-color: #1f1f1f;      /* Charcoal Black */
    --secondary-color: #3f8c48;    /* Electric Green */
    --accent-color: #ffc107;       /* Energy Yellow */
    --grey-color: #cccccc74;

    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --text-color: #555555;
    --heading-color: #111111;

    /* Status Colors */
    --success: #28a745;
    --danger: #dc3545;
    --info: #0dcaf0;

    /* Shadow */
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.12);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transition */
    --transition: all 0.3s ease;
}

/* -------------------------
   CSS Reset
------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

/* -------------------------
   Typography
------------------------- */
 

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}



/* -------------------------
   Images
------------------------- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------
   Buttons
------------------------- */
.btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-theme:hover {
    background-color: #34763d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-accent {
    background: var(--accent-color);
    color: #000;
}

.btn-accent:hover {
    background: #e0aa06;
}

/* -------------------------
   Section Styling
------------------------- */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--light-bg);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-dark h1,
.section-dark p {
    color: var(--white);
}

/* -------------------------
   Cards
------------------------- */
.card-theme {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 25px;
    transition: var(--transition);
    height: 100%;
}

.card-theme:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* -------------------------
   Lists
------------------------- */
ul {
    list-style: none;
}

.list-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* -------------------------
   Forms
------------------------- */
input,
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(63, 140, 72, 0.15);
}

/* -------------------------
   Utilities
------------------------- */
.text-primary {
    color: var(--secondary-color);
}

.text-dark {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--secondary-color);
}

.bg-dark {
    background: var(--primary-color);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.radius-sm {
    border-radius: var(--radius-sm);
}

.radius-md {
    border-radius: var(--radius-md);
}

/* -------------------------
   Animations
------------------------- */
.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------
   Scrollbar
------------------------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background:var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 0px;
}

/* ============================================
    HEADER WRAPPER
    ============================================ */
.transparent-header{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
    


.custom-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
    HEADER TOP SECTION
    ============================================ */

.heder-top-wrap {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-top-left ul.list-wrap {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    align-items: center;
}

.header-top-left ul.list-wrap li {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-top-left ul.list-wrap li a {
    color: white;
    text-decoration: none;
}

.header-top-left ul.list-wrap i {
    font-size: 13px;
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

/* ============================================
    HEADER SOCIAL ICONS
    ============================================ */

.header-social ul.list-wrap {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-social ul.list-wrap li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.header-social ul.list-wrap li a:hover {
    opacity: 0.7;
}

/* ============================================
    FREE CONSULTING BUTTON
    ============================================ */

.header-top-btn a {
    background-color:var(--grey-color);
    color: white;
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-top-btn a:hover {
    background-color: var(--text-color);
    color: white;
}

.header-top-btn a i {
    font-size: 13px;
}

/* ============================================
    MENU AREA / MAIN HEADER
    ============================================ */

.menu-area {
    background-color: white;
    padding: 5px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-area .row {
    width: 100%;
    margin: 0;
}

.menu-area .col-12 {
    padding: 0;
}

.menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

/* ============================================
    LOGO STYLING
    ============================================ */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 900;
    color: #001a4d;
    gap: 8px;
    white-space: nowrap;
}

.logo img {
    max-height: 70px;
    width: auto;
    margin-right: 2px;
}

/* ============================================
    NAVBAR & NAVIGATION MENU
    ============================================ */

.navbar-wrap {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.navbar-wrap .navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    align-items: center;
}

.navbar-wrap .navigation li {
    position: relative;
}

.navbar-wrap .navigation li a {
    color: #001a4d;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-wrap .navigation li a:hover {
    color: #0066ff;
}

.navbar-wrap .navigation li a i {
    font-size: 9px;
    margin-left: 4px;
}

/* Submenu */
.navbar-wrap .navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    margin: 8px 0 0 0;
    padding: 12px 0;
    min-width: 180px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 100;
}

.navbar-wrap .navigation li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-wrap .navigation .sub-menu li a {
    padding: 10px 18px;
    font-weight: 400;
    font-size: 13px;
    color: #001a4d;
    gap: 0;
    display: block;
}

.navbar-wrap .navigation .sub-menu li a:hover {
    background-color: #f5f5f5;
    color: #0066ff;
}

/* ============================================
    HEADER ACTION (Right Side)
    ============================================ */

.header-action {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.header-action ul.list-wrap {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
}

/* Header Contact */
.header-contact-two {
    display: flex !important;
    align-items: center;
    gap: 12px; 
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
 

.header-contact-two .icon {
    color:var(--white);
    font-size: 17px;
    display: flex;
    align-items: center;
    min-width: 20px;
    background: var(--primary-color);
    padding: 10px 8px;
    border-radius: 22px;
}

.header-contact-two .content {
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
    gap: 2px;
}

.header-contact-two .content span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    display: block;
    line-height: 1.1;
}

.header-contact-two .content a {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    line-height: 1.2;
}

/* Header Search */
.header-search a {
    color: #001a4d;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-search a:hover {
    color: #0066ff;
}

/* Offcanvas Menu Toggle */
.offcanvas-menu a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
}

.offcanvas-menu a span {
    width: 24px;
    height: 3px;
    background-color: #001a4d;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.offcanvas-menu a:hover span {
    background-color: #0066ff;
}

/* ============================================
    MOBILE NAV TOGGLER
    ============================================ */

.mobile-nav-toggler {
    display: none;
    color: #001a4d;
    font-size: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-nav-toggler:hover {
    color: #0066ff;
}

/* ============================================
    MOBILE MENU
    ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-bottom: 30px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .close-btn {
    padding: 12px 15px;
    text-align: right;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .close-btn i {
    font-size: 24px;
    color: #001a4d;
    transition: color 0.3s ease;
}

.mobile-menu .close-btn i:hover {
    color: #0066ff;
}

.mobile-menu .nav-logo {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.mobile-menu .nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    color: #001a4d;
    gap: 6px;
}

.mobile-menu .nav-logo img {
    max-height: 30px;
    width: auto;
}

.mobile-menu .mobile-search {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .mobile-search form {
    display: flex;
    gap: 5px;
}

.mobile-menu .mobile-search input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

.mobile-menu .mobile-search button {
    padding: 10px 12px;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.mobile-menu .mobile-search button:hover {
    background-color: #0052cc;
}

.mobile-menu .menu-outer {
    padding: 0;
    background: white;
}

.mobile-menu .menu-outer ul.navigation {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .menu-outer ul.navigation li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .menu-outer ul.navigation li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
    color: #001a4d;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    gap: 0;
}

.mobile-menu .menu-outer ul.navigation li a:hover {
    color: #0066ff;
    background-color: #f9f9f9;
}

.mobile-menu .dropdown-btn {
    cursor: pointer;
    color: #0066ff;
    font-size: 12px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.mobile-menu .menu-item-has-children.active .dropdown-btn {
    /* transform: rotate(180deg); */
}

.mobile-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu .sub-menu li a {
    padding: 10px 30px !important;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #efefef !important;
}

.mobile-menu .sub-menu li:last-child a {
    border-bottom: none !important;
}

.mobile-menu .menu-item-has-children.active > .sub-menu {
    max-height: 500px;
}

.mobile-menu .social-links {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.mobile-menu .social-links ul.list-wrap {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.mobile-menu .social-links ul.list-wrap li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    color: #001a4d;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.mobile-menu .social-links ul.list-wrap li a:hover {
    background-color: #0066ff;
    color: white;
}

/* ============================================
    MENU BACKDROP & OVERLAY
    ============================================ */

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-overly {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overly.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
    SEARCH POPUP
    ============================================ */

.search-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 77, 0.95);
    z-index: 10000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.search-popup-wrap.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.search-close span {
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.search-close span:hover {
    color: #0066ff;
}

.search-wrap {
    width: 100%;
    max-width: 550px;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.search-wrap h2.title {
    color: #001a4d;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.search-form form {
    display: flex;
    gap: 0;
}

.search-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.search-form input:focus {
    border-color: #0066ff;
}

.search-form input::placeholder {
    color: #999;
}

.search-form .search-btn {
    padding: 12px 20px;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.search-form .search-btn:hover {
    background-color: #0052cc;
}

/* ============================================
    EXTRA INFO / SIDEBAR
    ============================================ */

.extra-info {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    padding: 20px 15px;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.extra-info.active {
    right: 0;
}

.extra-info .close-icon {
    text-align: right;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.extra-info .close-icon button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #001a4d;
    transition: color 0.3s ease;
    padding: 0;
}

.extra-info .close-icon button:hover {
    color: #0066ff;
}

.extra-info .logo-side {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.extra-info .logo-side a {
    text-decoration: none;
}

.extra-info .logo-side img {
    max-height: 35px;
    width: auto;
}

.extra-info .contact-list {
    margin-bottom: 20px;
}

.extra-info .contact-list h4 {
    color: #001a4d;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.extra-info .contact-list p {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 4px 0;
}

/* ============================================
    RESPONSIVE DESIGN
    ============================================ */

@media (max-width: 1199px) {
    .custom-container {
        padding: 0 30px;
    }

    .navbar-wrap .navigation {
        gap: 25px;
    }

    .navbar-wrap .navigation li a {
        font-size: 13px;
    }

    .header-top-left ul.list-wrap {
        gap: 30px;
        font-size: 12px;
    }

    .header-action {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .navbar-wrap.main-menu {
        display: none !important;
    }

    .mobile-nav-toggler {
        display: block;
    }

    .header-contact-two {
        display: none !important;
    }

    .offcanvas-menu {
        display: block !important;
    }

    .custom-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .heder-top-wrap {
        padding: 10px 0;
    }

    .header-top-left {
        display: none;
    }

    .header-top-right {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }

    .header-social ul.list-wrap {
        gap: 10px;
    }

    .header-social ul.list-wrap li a {
        font-size: 11px;
    }

    .header-top-btn a {
        padding: 6px 12px;
        font-size: 10px;
        gap: 5px;
    }

    .header-top-btn a i {
        font-size: 11px;
    }

    .menu-area {
        padding: 12px 0;
    }

    .logo a {
        font-size: 16px;
        gap: 5px;
    }

    .logo img {
        max-height: 28px;
    }

    .menu-wrap {
        gap: 12px;
    }

    .header-action ul.list-wrap {
        gap: 12px;
    }

    .mobile-nav-toggler {
        font-size: 20px;
    }

    .search-wrap {
        padding: 25px 20px;
    }

    .search-wrap h2.title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .custom-container {
        padding: 0 12px;
    }

    .heder-top-wrap {
        padding: 8px 0;
    }

    .header-top-btn a {
        padding: 5px 10px;
        font-size: 9px;
    }

    .menu-area {
        padding: 10px 0;
    }

    .logo a {
        font-size: 14px;
    }

    .logo img {
        max-height: 24px;
    }

    .header-action ul.list-wrap {
        gap: 8px;
    }

    .header-search a {
        font-size: 16px;
    }

    .mobile-nav-toggler {
        font-size: 18px;
    }

    .search-popup-wrap {
        padding: 15px;
    }

    .search-wrap {
        padding: 20px 15px;
        max-width: 100%;
    }

    .search-close {
        top: 20px;
        right: 20px;
    }

    .search-close span {
        font-size: 22px;
    }

    .search-form form {
        flex-direction: column;
        gap: 10px;
    }

    .search-form input,
    .search-form .search-btn {
        border-radius: 4px;
        width: 100%;
    }
}

/* Utility Classes */
.d-none {
    display: none !important;
}

.d-lg-flex {
    display: flex;
}

.d-lg-none {
    display: none;
}

.align-items-center {
    align-items: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .d-lg-flex {
        display: none !important;
    }

    .d-lg-none {
        display: flex !important;
    }
}
/* FIX MOBILE SOCIAL ICONS (NO WRAP – SINGLE ROW) */
.mobile-menu .social-links ul.list-wrap {
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.mobile-menu .social-links ul.list-wrap li {
    flex: 0 0 auto;
}

.mobile-menu .social-links ul.list-wrap li a {
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu .social-links ul.list-wrap li a i {
    font-size: 14px;
    line-height: 1;
}

/* LOCK DROPDOWN ARROW TO MAIN ROW ONLY */
.mobile-menu .menu-item-has-children {
    position: relative;
}

.mobile-menu .menu-item-has-children > a {
    position: relative;
}

.mobile-menu .dropdown-btn {
    top: 22px;          /* FIXED POSITION — NOT 50% */
    transform: none;
}

/* FIX MOBILE MENU ARROW ALIGNMENT */
.mobile-menu .menu-item-has-children {
    position: relative;
}

.mobile-menu .dropdown-btn {
    position: absolute;
    right: 15px;
    /* top: 50%; */
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider-css  */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

/*.slide:nth-child(1) .slide-content {*/
/*    background-image: url('../image/img/s1.jpg');*/
/*}*/

/*.slide:nth-child(2) .slide-content {*/
/*    background-image: url('../image/img/s2.jpg');*/
/*}*/

/*.slide:nth-child(3) .slide-content {*/
/*    background-image: url('../image/img/s3.jpg');*/
/*}*/

/*.slide:nth-child(4) .slide-content {*/
/*    background-image: url('../image/img/s4.jpg');*/
/*}*/

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.content-box {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.slide-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(60px);
    opacity: 0;
}

.slide.active .slide-title.animate {
    animation: slideUpFade 1s ease-out forwards;
}

.slide-description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    transform: translateY(60px);
    opacity: 0;
}

.slide.active .slide-description.animate {
    animation: slideUpFade 1s ease-out 0.3s forwards;
}

.slide-btn {
    display: inline-block;
    padding: 16px 45px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.slide.active .slide-btn.animate {
    animation: zoomInBounce 0.8s ease-out 0.6s forwards;
}

.slide-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    color: #333;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.15);
}

.nav-arrow.prev {
    left: 30px;
}

.nav-arrow.next {
    right: 30px;
}

/* Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 45px;
    border-radius: 7px;
}

/* Animation Keyframes */
@keyframes slideUpFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomInBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeSlideLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeSlideRight {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes rotateZoomIn {
    from {
        transform: rotate(-90deg) scale(0);
        opacity: 0;
    }
    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes bounceInDown {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    60% {
        transform: translateY(15px);
        opacity: 1;
    }
    80% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateX(-90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateX(0);
        opacity: 1;
    }
}

/* Pattern Animation Classes */
.pattern-slide-left .slide-title.animate {
    animation: fadeSlideLeft 1s ease-out forwards !important;
}

.pattern-slide-right .slide-title.animate {
    animation: fadeSlideRight 1s ease-out forwards !important;
}

.pattern-rotate .slide-title.animate {
    animation: rotateZoomIn 1s ease-out forwards !important;
}

.pattern-bounce .slide-title.animate {
    animation: bounceInDown 1s ease-out forwards !important;
}

.pattern-flip .slide-title.animate {
    animation: flipIn 1s ease-out forwards !important;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .nav-arrow.prev {
        left: 15px;
    }

    .nav-arrow.next {
        right: 15px;
    }

    .content-box {
        padding: 1.5rem;
    }

    .slide-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .slide-title {
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .dots-container {
        bottom: 25px;
        gap: 10px;
    }

    .dot {
        width: 11px;
        height: 11px;
    }

    .dot.active {
        width: 35px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* =====================================================
   HEADER ABSOLUTE → STICKY AFTER SLIDER
===================================================== */

/* Initial state: header over slider */
#sticky-header {
    position: fixed;
    top: 0px;                 /* visual center over slider */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 999;
    background: transparent;
}

/* Remove background shadow initially */
#sticky-header .menu-area {
    box-shadow: none;
}

/* Sticky state (added via JS) */
.menu-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    animation: stickyFade 0.35s ease;
}

/* Keep container aligned when fixed */
.menu-area.is-sticky .custom-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Smooth appearance */
@keyframes stickyFade {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile: header closer to top */
@media (max-width: 991px) {
    #sticky-header {
        top: 15px;
    }
}

/* ===============================
   FORCE HIDE LEFT OFFCANVAS MENU
================================ */

.mobile-menu,
.offcanvas-menu,
.slide-bar,
.side-menu {
    left: -100%;
    transform: translateX(0);
    visibility: hidden;
}

/* When menu is opened */
.mobile-menu.active,
.offcanvas-menu.active,
.slide-bar.active,
.side-menu.active {
    left: 0;
    visibility: visible;
}


/* Featuress-section-css */

.feature-card {
    background: white;
    
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%; 
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--grey-color) 0%, var(--grey-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.icon-inner {
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.feature-card:hover .icon-inner {
    transform: rotateY(360deg);
}

.icon-wrapper i {
    font-size: 36px;
    color: #1976d2;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 992px) {
  .Features-section .row > div:nth-child(1),
  .Features-section .row > div:nth-child(2) {
    border-right: 1px solid var(--grey-color);
  }
}



/* Different color schemes for each card */
.feature-card:nth-child(1) .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
}

.feature-card:nth-child(1) .icon-wrapper i {
    color:var(--white);
}

.feature-card:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.feature-card:nth-child(2) .icon-wrapper i {
    color: #7b1fa2;
}

.feature-card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.feature-card:nth-child(3) .icon-wrapper i {
    color: #388e3c;
}

@media (max-width: 768px) {
    .feature-card {
        /* margin-bottom: 30px; */
    }
}

/* Why-choose-section  */

.hero-section{
    position: relative;
}

.bg-shape-01 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    opacity: 0.4;
    z-index: 1;
    animation: floatUpDown 6s ease-in-out infinite;
}

.bg-shape-02 {
    position: absolute;
    right: 45%;
    top: 75px;
    width: 200px;
    opacity: 0.4;
    z-index: 0;
    /* animation: floatRotate 8s ease-in-out infinite; */
}

.bg-shape-03 {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 120px;
    opacity: 0.3;
    z-index: 1;
    animation: floatLeftRight 7s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-20px); }
}

@keyframes floatRotate {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-20px); }
}

@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-30px) translateY(-15px); }
}

.images-wrapper {
    position: relative;
    z-index: 2;
}

.main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.main-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.experience-badge {
    position: absolute;
    left: -50px;
    bottom: -40px;
    background: var(--primary-color);
    color: white;
    padding: 35px 45px;
    border-radius: 0 0px 0px 80px;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 25px;
    opacity: 0;
    transform: translateX(-120%);
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.experience-badge.animate {
    opacity: 1;
    transform: translateX(0);
}

.experience-left {
    text-align: center;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    padding-right: 25px;
}

.experience-number {
    font-size: 70px;
    font-weight: 700;
    line-height: 0.5;
    margin-bottom: 8px;
}

.experience-years {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.experience-right {
    flex: 1;
}

.experience-text {
    font-size: 17px;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.small-image-container {
    position: absolute;
    right: -50px;
    bottom: 0px;
    width: 290px;
    height: 290px;
    opacity: 0;
    z-index: 99;
    transform: scale(0.7) translateY(80px);
    transition: all 1.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.small-image-container.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.small-image {
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-section {
    padding-left: 60px;
}

.label-text {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.label-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #0a1f44;
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.main-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.description-text {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.description-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.feature-item:nth-child(1) { transition-delay: 0.6s; }
.feature-item:nth-child(2) { transition-delay: 0.7s; }
.feature-item:nth-child(3) { transition-delay: 0.8s; }
.feature-item:nth-child(4) { transition-delay: 0.9s; }

.feature-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 16px;
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
    color: #0a1f44;
    margin: 0;
}

.bottom-description {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 1s;
}

.bottom-description.animate {
    opacity: 1;
    transform: translateY(0);
}

 

.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8f2ff;
}

.profile-info .name {
    font-size: 20px;
    font-weight: 700;
    color: #0a1f44;
    margin: 0 0 5px 0;
}

.profile-info .position {
    font-size: 14px;
    color: #5a6c7d;
    margin: 0;
}

 

@media (max-width: 991px) {
    .content-section {
        padding-left: 15px;
        margin-top: 50px;
    }

    .main-title {
        font-size: 36px;
    }

    .small-image-container {
        right: 0;
        bottom: -30px;
        width: 220px;
        height: 220px;
    }

    .experience-badge {
        padding: 25px 35px;
        gap: 20px;
    }

    .experience-number {
        font-size: 56px;
    }

    .experience-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 28px;
    }

    .experience-badge {
        padding: 20px 25px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 15px;
        flex-direction: column;
        gap: 15px;
    }

    .experience-badge.animate {
        transform: translateX(-50%);
    }

    .experience-left {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        padding-right: 0;
        padding-bottom: 15px;
    }

    .experience-number {
        font-size: 42px;
    }

    .experience-text {
        font-size: 14px;
    }

    .small-image-container {
        display: none;
    }

     

    .bg-shape-01,
    .bg-shape-02,
    .bg-shape-03 {
        display: none;
    }
}

/* products-slide-section  */

.ops-tire-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #f5f7fa, #e6eef5);
  overflow: hidden;
}

.ops-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.ops-tire-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  position: relative;
}

/* Tire */
.ops-tire-wrapper {
  position: relative;
  width: 200px;
  height: 300px;
  z-index: 10;
}

.ops-tire-img {
  width: 100%;
  position: absolute;
  right: -350px;
  top: -35px;
  transform: rotate(0deg);
  transition: all 2.5s ease;
  opacity: 0;
  z-index: 6;
}

/* Reveal text behind tire */
.ops-reveal-text {
  position: absolute;
  right: -50px;
  top: 160px;
  transform: translateY(-150px);
  font-size: 56px;
  font-weight: 900;
  color: #0a1a2f;
  opacity: 0.8;
  white-space: nowrap;
  letter-spacing: 2px;
  z-index: 5;
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 5s ease;
}

/* When active */
.ops-tire-section.ops-active .ops-tire-img {
  right: 475px;
  transform: rotate(360deg);
  opacity: 1;
}

.ops-tire-section.ops-active .ops-reveal-text {
  clip-path: inset(0 0% 0 0);
}

/* Responsive */
@media (max-width: 768px) {
  .ops-tire-content {
    flex-direction: column;
    text-align: center;
  }

  .ops-tire-wrapper {
    margin-top: 40px;
  }

  .ops-tire-img {
    right: -250px;
  }

  .ops-reveal-text {
    font-size: 32px;
    right: -150px;
  }
}

.ops-ev-statement {
  font-size: 38px;
  font-weight: 700;
  color: #0a1a2f;
  line-height: 1.25;
  max-width: 520px;
}

.ops-ev-divider {
  width: 300px;
  height: 4px;
  background: linear-gradient(90deg, #0a1a2f, transparent);
  margin: 0px 0 28px 0;
}

/* Horizontal product strip */
.ops-product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.ops-product-strip span {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #0a1a2f;
  background: rgba(10, 26, 47, 0.06);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.ops-product-strip span:hover {
  background: #0a1a2f;
  color: #ffffff;
  transform: translateY(-3px);
}

.ops-tire-section.ops-active .ops-product-strip {
  opacity: 1;
  transform: translateY(0);
}

/* Products */
.ops-related-products {
  margin-top: 40px;
}

.ops-related-group {
  display: none;
  animation: fadeUp 0.4s ease;
}

.ops-related-group.active {
  display: block;
}

.ops-product-card-grid {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.ops-product-card-grid img {
  width: 100%;
  height: 350px;
  object-fit: contain;
}

.ops-product-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #0a1a2f;
}

.ops-product-desc {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

.ops-product-card-grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.ops-product-strip span.active {
  background: #0a1a2f;
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ops-tire-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}

.ops-tire-text {
  width: 100%;
}

.ops-tire-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* NOT space-between */
  position: relative;
}


/* About-section-css  */

.abt-about-section {
}

.abt-section-title span {
    font-size: 40px;
    font-weight: 900;
}

.abt-section-subtitle h1 {
    font-size: 25px;
}

/* Collage Container */
.abt-collage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-right: 30px;
    margin-bottom: 20px;
    float: left;
    width: 45%;
}

.detail-collage-wrapper{
    margin-right: 30px;
    margin-bottom: 20px;
    float: left;
    width: 45%;
}

.abt-collage-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
}

.abt-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.abt-collage-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.abt-collage-item:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Square images */
.abt-collage-item.abt-square {
    aspect-ratio: 1 / 1;
}

.detail-sqr{
    aspect-ratio: 1 / 1;
}

/* Rectangle image */
.abt-collage-item.abt-rectangle {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 0.8;
}

/* Animations */
.abt-collage-item.abt-square:nth-child(1) {
    animation: abt-slide-in-left 0.8s ease-out 0.2s forwards;
}

.abt-collage-item.abt-square:nth-child(2) {
    animation: abt-slide-in-right 0.8s ease-out 0.4s forwards;
}

.abt-collage-item.abt-rectangle {
    animation: abt-slide-in-up 0.8s ease-out 0.6s forwards;
}

@keyframes abt-slide-in-left {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes abt-slide-in-right {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes abt-slide-in-up {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

.abt-content-text p {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.abt-highlight {
    color: #000;
    font-weight: 600;
}

.abt-content-text::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive */
@media (max-width: 768px) {
    .abt-collage-wrapper {
        float: none;
        width: 100%;
        margin-right: 0;
        grid-template-columns: 1fr;
    }

    .detail-collage-wrapper{
        margin-right: 30px;
        margin-bottom: 20px;
        float: left;
        width: 100%;
    }

    .abt-collage-item.abt-square:nth-child(2),
    .abt-collage-item.abt-rectangle {
        grid-column: 1 / -1;
    }
}

/* Floating Background Icons */
.abt-floating-bg {
    position: fixed;
    font-size: 80px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
    animation: abt-float 6s ease-in-out infinite;
}

.abt-floating-bg:nth-child(1) { top: 10%; right: 5%; }
.abt-floating-bg:nth-child(2) { top: 0%; left: 5%; animation-delay: 1s; animation-duration: 7s; }
.abt-floating-bg:nth-child(3) { bottom: 20%; right: 10%; animation-delay: 2s; }
.abt-floating-bg:nth-child(4) { top: 10%; left: 3%; animation-delay: 1.5s; animation-duration: 8s; }
.abt-floating-bg:nth-child(5) { bottom: 50%; right: 3%; animation-delay: 0.5s; animation-duration: 7.5s; }

@keyframes abt-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(10deg); }
}


/* car-animation-css  */

  /* Urban Mobility Section Styles */
  .urban-mobility-section {
    width: 100%;
    height: 30em;
    position: relative;
    background: lightblue;
    overflow: hidden;
    margin: 2em 0;
    font-family: Arial, sans-serif;
  }

  @media screen and (max-width: 450px) {
    .urban-mobility-section {
      font-size: 70%;
    }
  }

  /* --Animations-- */
  @keyframes moving {
    0% {
      right: 120%;
      animation-timing-function: ease-out;
    }
    35% {
      right: 30%;
    }
    36%, 56% {
      right: 29.8%;
      animation-timing-function: ease-in;
    }
    100% {
      right: -80em;
    }
  }

  @keyframes shaking {
    from {
      transform: translateY(.1em);
    }
    to {
      transform: translateY(0);
    }
  }

  @keyframes goWheel {
    0% {
      transform: rotate(0deg);
      animation-timing-function: ease-out;
    }
    36%, 56% {
      transform: rotate(350deg);
      animation-timing-function: ease-in;
    }
    100% {
      transform: rotate(910deg);
    }
  }

  @keyframes stableWheel {
    from {
      transform: translateY(-.9em);
    }
    to {
      transform: translateY(-.8em);
    }
  }

  @keyframes rearLight {
    0%, 27% {
      background: maroon;
      box-shadow: none;
    }
    28%, 56% {
      background: red;
      box-shadow: -.2em -.2em 20px red;
    }
    57%, 100% {
      background: maroon;
      box-shadow: none;
    }
  }

  @keyframes red {
    0%, 20% {
      background: #444;
      box-shadow: none;
    }
    21%, 52% {
      background: red;
      box-shadow: -0.2em 0 20px red;
    }
    53%, 100% {
      background: #444;
      box-shadow: none;
    }
  }

  @keyframes yellow {
    0%, 20% {
      background: orange;
      box-shadow: -0.2em 0 20px orange;
    }
    21%, 89% {
      background: #444;
      box-shadow: none;
    }
    90%, 100% {
      background: orange;
      box-shadow: -0.2em 0 20px orange;
    }
  }

  @keyframes green {
    0%, 52% {
      background: #444;
      box-shadow: none;
    }
    53%, 91% {
      background: green;
      box-shadow: -0.2em 0 20px green;
    }
    92%, 100% {
      background: #444;
      box-shadow: none;
    }
  }

  /* E-Rickshaw */
  .urban-mobility-section .car {
    animation: moving 10s linear -2s infinite, shaking .2s linear infinite alternate;
    position: absolute;
    top: 10em;
    right: 10%;
    width: 20em;
    height: 12em;
    background-image: url('../image/img/riksha.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* E-Rickshaw */
  .urban-mobility-section .bike {
    animation: moving 11s linear -12s infinite, shaking .2s linear infinite ;
    position: absolute;
    top: 21em;
    right: 30%;
    width: 20em;
    height: 7em;
    background-image: url('../image/img/biker.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

 

  /* Traffic Sign */
  .urban-mobility-section .red {
    animation: red 10s linear -2s infinite;
  }

  .urban-mobility-section .yellow {
    animation: yellow 10s linear -2s infinite;
  }

  .urban-mobility-section .green {
    animation: green 10s linear -2s infinite;
  }

  /* Background wall & waste basket */
  .urban-mobility-section .wall {
    width: 100%;
    height: 12.5em;
    position: absolute;
    top: 2.5em;
    right: 0;
    background: #efefef;
    background: linear-gradient(to left, rgba(135, 135, 135, 0.5) 0%, rgb(150, 150, 150) 2.5%, rgba(135, 135, 135, 0.5) 5%, rgba(0, 0, 0, 0) 5.1%, rgba(0, 0, 0, 0) 100%), linear-gradient(to left, rgba(135, 135, 135, 0.5) 0%, rgb(150, 150, 150) 2.5%, rgba(135, 135, 135, 0.5) 5%, rgba(0, 0, 0, 0) 5.1%, rgba(0, 0, 0, 0) 100%), linear-gradient(to left, rgba(135, 135, 135, 0.5) 0%, rgb(150, 150, 150) 2.5%, rgba(135, 135, 135, 0.5) 5%, rgba(0, 0, 0, 0) 5.1%, rgba(0, 0, 0, 0) 100%), linear-gradient(to left, rgba(135, 135, 135, 0.5) 0%, rgb(150, 150, 150) 2.5%, rgba(135, 135, 135, 0.5) 5%, rgba(0, 0, 0, 0) 5.1%, rgba(0, 0, 0, 0) 100%), linear-gradient(to top, rgba(135, 135, 135, 0.5) 0%, rgb(150, 150, 150) 2.5%, rgba(135, 135, 135, 0.5) 5%, rgba(0, 0, 0, 0) 5.1%, rgba(0, 0, 0, 0) 100%), #efefef;
    background-repeat: repeat-x, repeat-x, repeat-x, repeat-x, repeat;
    background-size: 5em 2.5em, 5em 2.5em, 5em 2.5em, 5em 2.5em, auto 2.5em;
    background-position: 2.6em 0, 0 2.5em, 2.6em 5em, 0 7.5em, 2.6em 10em;
    box-shadow: inset 10px 10px 38px -22px #333;
    overflow: hidden;
  }

  .urban-mobility-section .wall:after {
    content: "BHM INDUSTRIES :)";
    position: absolute;
    width: 700px;
    bottom: 2.5em;
    left: 40px;
    color: maroon;
    font-weight: bold;
    font-size: 2em;
    font-family: 'Nosifer', cursive;
    transform: rotate(-4deg);
    letter-spacing: .1em;
  }

  .urban-mobility-section .wall:before {
    content: "";
    width: 100%;
    height: 2.5em;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ccc;
  }

  .urban-mobility-section .basket {
    width: 4.5em;
    height: 7em;
    position: absolute;
    right: 20%;
    top: 6.5em;
    border: solid #888;
    border-width: .7em .7em 0;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  }

  .urban-mobility-section .basket:after {
    content: "";
    position: absolute;
    top: 30%;
    width: 100%;
    height: .5em;
    background: #888;
  }

  .urban-mobility-section .basket:before {
    content: "";
    position: absolute;
    width: 100%;
    padding-top: 2em;
    height: 8.5em;
    top: 15%;
    right: 0;
    left: 0;
    margin: auto;
    background: #444;
    z-index: 3;
    border-radius: 50% / 1em;
    box-shadow: inset 0 -4.8em 0 chocolate;
    text-align: center;
    line-height: 1.2;
    font-weight: bold;
    color: #f0f0f0;
    text-shadow: 1px 1px 0 #444, 1px -1px 0 #444, -1px 1px 0 #444, -1px -1px 0 #444;
    letter-spacing: .1em;
    font-size: 10px;
  }

  /* Road */
  .urban-mobility-section .path {
    width: 100%;
    height: .8em;
    background: #ccc;
    background: linear-gradient(90deg, rgba(0, 2, 34, 1) 0%, rgba(0, 2, 34, 1) 50%, rgba(247, 240, 29, 1) 51%, rgba(247, 240, 29, 1) 100%);
    background-size: 8em;
    background-repeat: repeat-x;
    background-position: 99%;
    border-bottom: .4em solid #333;
    position: absolute;
    top: 28em;
  }

  .urban-mobility-section .lp:before,
  .urban-mobility-section .up:before {
    content: "";
    width: 100%;
    height: 50em;
    background: #ccc;
    position: absolute;
    top: 1.1em;
    z-index: -1;
  }

  .urban-mobility-section .up {
    top: 15em;
    height: 2em;
    border-bottom: 0;
    border-top: .4em solid #333;
    background-position: 98%;
  }

  .urban-mobility-section .up:before {
    top: 2em;
    height: 15em;
    background: #222;
    background: radial-gradient(ellipse at center, rgba(76, 76, 76, 1) 0%, rgba(89, 89, 89, 1) 12%, rgba(102, 102, 102, 1) 22%, rgba(71, 71, 71, 1) 32%, rgba(60, 60, 60, 1) 38%, rgba(34, 34, 34, 1) 49%, rgba(51, 51, 51, 1) 60%, rgba(43, 43, 43, 1) 76%, rgba(60, 60, 60, 1) 91%, rgba(53, 53, 53, 1) 100%);
    background-size: 3px 3px;
  }

  .urban-mobility-section .up:after {
    content: "";
    width: 90%;
    height: .8em;
    position: absolute;
    top: 6em;
    left: 0;
    transform: skewX(10deg);
    background: #fefefe;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 79%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
    background-size: 5em;
    background-position: 101%;
  }

  .urban-mobility-section .lp:after {
    content: "";
    width: .8em;
    height: 12em;
    position: absolute;
    top: -11em;
    right: 13%;
    background: #fefefe;
    z-index: -1;
    transform: skewX(10deg);
  }

  /* Traffic Sign */
  .urban-mobility-section .traffic-sign {
    width: .9em;
    height: 23em;
    position: absolute;
    top: 9em;
    right: 10%;
    background: #777;
    border-right: .2em solid #555;
    border-radius: 1em 1em 0 0;
  }

  .urban-mobility-section .traffic-sign:before {
    content: "";
    width: 4em;
    height: 4em;
    position: absolute;
    bottom: -1.8em;
    left: -1.4em;
    z-index: -1;
    background: #aaa;
    border-radius: 1em;
    box-shadow: 0 12px 0 #888;
  }

  .urban-mobility-section .sign {
    width: .8em;
    height: 6.4em;
    position: absolute;
    top: 2.5em;
    left: -.3em;
    border: .4em solid #555;
    border-right-width: .9em;
    border-left: 0;
    border-radius: .5em;
    background: #777;
    z-index: 999;
  }

  .urban-mobility-section .sign div {
    width: .6em;
    height: 1.5em;
    position: absolute;
    border-radius: 50%;
    left: -.2em;
  }

  .urban-mobility-section .sign div:after {
    content: "";
    position: absolute;
    z-index: -12;
    top: 0;
    right: -.3em;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: #666;
  }

  .urban-mobility-section .sign div:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1em;
    height: .2em;
    background: #666;
    border-top-left-radius: 100%;
  }

  .urban-mobility-section .red {
    top: .5em;
    background: red;
  }

  .urban-mobility-section .yellow {
    top: 2.5em;
    background: orange;
  }

  .urban-mobility-section .green {
    top: 4.5em;
    background: rgb(0, 255, 0);
  }

  /* nre product section  */
  /* ===================== PCS CONTAINER ===================== */
.pcs-carousel-container{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.pcs-carousel-wrapper{
    width:100%;
    max-width:1200px;
    padding:20px;
}

.pcs-carousel-box{
    background:#ffffff;
    border-radius:20px;
    padding:40px 20px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

/* ===================== TRACK ===================== */
.pcs-carousel-viewport{
    overflow:hidden;
    position:relative;
}

.pcs-carousel-track{
    display:flex;
    transition:transform .5s cubic-bezier(.4,0,.2,1);
}

/* ===================== PRODUCT CARD ===================== */
.pcs-product-card{
    flex:0 0 25%;
    padding:0 15px;
    text-align:center;
    animation:pcsFade .4s ease-in;
}

@keyframes pcsFade{
    from{opacity:0;transform:scale(.95)}
    to{opacity:1;transform:scale(1)}
}

.pcs-product-image{
    height:250px;
    margin:20px auto;
    border-radius:15px; 
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:80px;
    transition:.3s;
}

.pcs-product-card:hover .pcs-product-image{
    transform:scale(1.08);
}

.pcs-product-title{
    font-size:1.4rem;
    font-weight:600;
    margin-top:10px;
}

.pcs-product-price{
    font-size:1.2rem;
    font-weight:700;
    color:#2a9d8f;
}

.pcs-product-desc{
    font-size:.95rem;
    color:#666;
    margin:10px 0 20px;
}

/* ===================== NAV ===================== */
.pcs-carousel-nav{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:30px;
}

.pcs-nav-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    border:2px solid #667eea;
    background:#fff;
    color:#667eea;
    font-size:1.2rem;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.pcs-nav-btn:hover{
    background:#667eea;
    color:#fff;
    transform:scale(1.1);
}

/* ===================== DOTS ===================== */
.pcs-carousel-dots{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:20px;
}

.pcs-dot{
    width:10px;
    height:10px;
    background:#ddd;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.pcs-dot.active{
    background:#667eea;
    width:28px;
    border-radius:5px;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:768px){
    .pcs-product-card{flex:0 0 50%}
}

@media(max-width:480px){
    .pcs-product-card{flex:0 0 100%}
}

/* testimonial-css  */

.testimonials-section {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%),
                url('../image/img/banner-4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.our-clients-label {
    color: #FDB913;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.main-heading {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 500px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    /* margin: 15px; */
    height: 100%;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}
.testimonial-item p{
    color:#fff;
}
.testimonial-item:nth-child(1) {
    animation-delay: 0.4s;
}

.testimonial-item:nth-child(2) {
    animation-delay: 0.6s;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(253, 185, 19, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 40px;
    color: #FDB913;
    display: inline-block;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDB913, #FF6B6B);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FDB913;
    flex-shrink: 0;
    font-weight: bold;
    color: white;
    font-size: 24px;
}

.author-info span {
    color: white;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-size: 16px;
}

.author-info p {
    color: #FDB913;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

.owl-carousel {
    margin-right: -15px;
}

.owl-dot {
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.owl-dot.active {
    background: #FDB913 !important;
}

.owl-dot:hover {
    background: rgba(253, 185, 19, 0.7) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owl-nav {
    display: none;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
    }

    .testimonial-item {
        margin: 10px 5px;
        padding: 20px;
    }

    .testimonials-section {
        min-height: auto;
        padding: 40px 20px;
    }
}

/* faq-section */

.hero-section {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.hero-container { 
    align-items: center;
    padding: 60px 20px;
}

.hero-image {
    position: relative;
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}


.menu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.menu-item {
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    padding-left: 10px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.menu-item.active .menu-link {
    color: var(--text-color);
}

.icon-box {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.menu-item.active .icon-box {
    color: var(--text-color);
}

.menu-item:not(.active) .icon-box {
    color: #888;
}

.content-panel {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    height: 0;
    overflow: hidden;
}

.content-panel.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.content-text {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.learn-btn {
    background: #2d2d4d;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-btn:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45,45,77,0.3);
}

.learn-btn i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 25px;
    }
    
    .hero-image {
        height: 300px;
    }
}



/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-label {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ===== INFO CARD ===== */
.cta-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-icon-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-color);
}

.cta-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.cta-card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.cta-card-link {
    text-decoration: none;
    color: #666;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.cta-card-link:last-child {
    margin-bottom: 0;
}

.cta-card-link:hover {
    color: var(--text-color);
}

.cta-card-link i {
    margin-right: 8px;
    color:var(--text-color);
    min-width: 16px;
}

/* ===== FORM ===== */
.cta-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.cta-form-group {
    margin-bottom: 20px;
}

.cta-form-control {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    color: #666;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.cta-form-control:focus {
    border-color: #ff5722;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.1);
}

.cta-form-control::placeholder {
    color: #999;
}

textarea.cta-form-control {
    min-height: 120px;
    resize: vertical;
}

.cta-btn-submit {
    background-color:var(--text-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-btn-submit:active {
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta-title { font-size: 32px; }
    .cta-form-wrapper { padding: 30px 20px; }
    .cta-form-title { font-size: 24px; }
    .cta-section { padding: 40px 15px; }
    .cta-info-card { padding: 25px; }
}

@media (max-width: 576px) {
    .cta-title { font-size: 26px; }
    .cta-description { font-size: 14px; }
    .cta-form-wrapper { padding: 20px; }
    .cta-form-title { font-size: 20px; }
    .cta-card-title { font-size: 18px; }
}

/* footer-section  */

.newsletter-section {
    background: linear-gradient(135deg, var(--text-color) 0%, var(--text-color) 100%);
    padding: 50px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    transform: translateY(25%);
    z-index: 10;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    background: radial-gradient(circle, #fff 20%, transparent 80%);
    border-radius: 50%;
}

.newsletter-content {
    background-image: url(../image/img/shape3.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    color: #666;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 15px 25px;
    background-color:  var(--text-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background-color:  var(--primary-color);
}

.newsletter-btn i {
    font-size: 12px;
}

footer {
    background-color: #f5f5f5;
    padding: 80px 20px 30px;
    margin-top: 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background-color:  var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.footer-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.footer-content .contact-item {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-label {
    font-weight: 600;
    color: #1a1a1a;
    min-width: 60px;
}

.contact-value {
    color: #666;
}

.contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid  var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background-color: var(--text-color);
    color: white;
}

.contact-section {
    position: relative;
}

.decorative-dots {
    position: absolute;
    top: -20px;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, #000000 30%, transparent 30%);
    background-size: 20px 20px;
    opacity: 0.15;
    pointer-events: none;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
}

.copyright-text {
    font-size: 13px;
    color: #666;
}

.copyright-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    footer {
        padding: 70px 20px 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 26px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-section-title {
        font-size: 16px;
    }

    .footer-description {
        max-width: 100%;
    }

    .newsletter-section {
        padding: 35px 20px;
        border-radius: 15px;
        transform: translateY(40%);
    }

    footer {
        padding: 60px 20px 20px;
    }

    .decorative-dots {
        display: none;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .newsletter-input {
        font-size: 13px;
    }

    .footer-section-title {
        font-size: 15px;
    }

    .contact-item {
        font-size: 13px;
    }

    .footer-brand-name {
        font-size: 18px;
    }

    .footer-dots {
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .newsletter-section {
        padding: 30px 15px;
        transform: translateY(35%);
    }

    footer {
        padding: 50px 15px 20px;
    }

    main {
        padding-bottom: 80px;
    }
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.go-to-top:active {
    transform: translateY(-2px);
}

.go-to-top i {
    color: white;
    font-size: 24px;
}


/* ===== breadcrumb SECTION ===== */
.brd-hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 600"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23444" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="1400" height="600" fill="%231a1a1a"/><rect width="1400" height="600" fill="url(%23grid)"/><circle cx="1200" cy="100" r="150" fill="%23ff6633" opacity="0.15"/><circle cx="200" cy="500" r="200" fill="%23ff6633" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    padding: 60px 40px 80px;
    position: relative;
    margin-bottom: 50px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===== BREADCRUMB ===== */
.brd-breadcrumb-wrapper {
    margin-bottom: auto;
}

.brd-breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.brd-breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.brd-breadcrumb-item a,
.brd-breadcrumb-item span {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.brd-breadcrumb-item a {
    border-bottom: 2px solid transparent;
    padding-bottom: 8px;
}

.brd-breadcrumb-item a:hover {
    border-bottom: 2px solid #ff6633;
    color: #ff6633;
}

.brd-breadcrumb-item.brd-active span {
    color: #ff6633;
    border-bottom: 2px solid #ff6633;
    padding-bottom: 8px;
}

.brd-breadcrumb-separator {
    color: white;
    margin: 0 15px;
    opacity: 0.5;
    font-weight: 300;
}

/* ===== HERO TEXT ===== */
.brd-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-top: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brd-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    max-width: 600px;
}

/* ===== CONTENT SECTION ===== */
.brd-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
}

.brd-content-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.brd-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

/* siteMap  */

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--text-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--text-color);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}


/* Sidebar Container */
.contact-sidebar {
    position: fixed;
    left: 20px;
    bottom: 0px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Contact Item */
.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Icon Button */
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid white;
    z-index: 2;
    position: relative;
}

.contact-item:nth-child(1) .contact-icon {
    background: #25D366;
}

.contact-item:nth-child(2) .contact-icon {
    background: #FF6B6B;
}

.contact-item:nth-child(3) .contact-icon {
    background: #4267B2;
}

.contact-item:nth-child(4) .contact-icon {
    background: #EA4335;
}

.contact-item:nth-child(5) .contact-icon {
    background: #FFA500;
}

/* Hover effect on icon */
.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Ribbon Slide */
.contact-ribbon {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 5px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-item:hover .contact-ribbon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.ribbon-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item:nth-child(1) .ribbon-icon {
    color: #25D366;
}

.contact-item:nth-child(2) .ribbon-icon {
    color: #FF6B6B;
}

.contact-item:nth-child(3) .ribbon-icon {
    color: #4267B2;
}

.contact-item:nth-child(4) .ribbon-icon {
    color: #EA4335;
}

.contact-item:nth-child(5) .ribbon-icon {
    color: #FFA500;
}

.ribbon-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.ribbon-contact {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}


/* Mobile responsive */
@media (max-width: 768px) {
    .contact-sidebar {
        left: 10px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-ribbon {
        left: 55px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .ribbon-icon {
        font-size: 16px;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-item {
    animation: slideIn 0.5s ease backwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }
.contact-item:nth-child(5) { animation-delay: 0.5s; }