/* =====================================================
   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: #0f2884;      /* Charcoal Black */
    --secondary-color: #f07d00;    /* Electric Green */
    --accent-color: #ffc107;       /* Energy Yellow */
    --grey-color: #f3f3f3f3;
    --light-bg: #e8ebf5; 
    --accent-green: #f07d00;
    --light-gray: #ffffff;
    --text-gray: #e7e7e7;
    --dark-gray: #333; 

    /* 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);
}

a:hover{
    color: var(--secondary-color) !important;
}


/* -------------------------
   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{
    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(--secondary-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: 60px;
    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: var(--secondary-color);
}

.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: var(--secondary-color);
}

/* ============================================
    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 0px;
    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(--secondary-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: center;
    background-repeat: no-repeat;
}

/* .slide:nth-child(1) .slide-content {
    background-image: url('../images/s1.jpg');
}

.slide:nth-child(2) .slide-content {
    background-image: url('../images/s2.jpg');
}

.slide:nth-child(3) .slide-content {
    background-image: url('../images/s3.jpg');
}

.slide:nth-child(4) .slide-content {
    background-image: url('../images/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;
    }
}

/* SLIDE */
.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

/* SLIDE CONTENT */
.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* VIDEO */
.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

/* CONTENT BOX - LIFTED UP */
.content-box {
    position: absolute;
    z-index: 3;
    color: #fff;
    text-align: center;
    top: 60%;              /* moved higher */
    left: 50%;
    transform: translate(-50%, -60%);
    width: 90%;
    max-width: 900px;
}

/* TEXT */
.slide-title {
    font-size: 48px;
    font-weight: 700;
}

.slide-description {
    font-size: 18px;
    margin: 20px 0;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

/* =====================================================
   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%;
    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;
}



/* 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(--primary-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; }

.company-section{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    gap:60px;
    align-items:start;
}

/* LEFT SIDE */
.company-left{
    border-left:6px solid var(--secondary-color);
    padding-left:25px;
}

.company-name-top{
    color:var(--secondary-color);
    font-size:22px;
    font-weight:600;
    margin-bottom:5px;
    line-height: 1;
}

.company-name-main{
    font-size:42px;
    font-weight:700;
    color:var(--primary-color);
    margin-bottom:10px;
    line-height: 1;
}

.company-tagline{
    font-size:18px;
    color:#777;
    margin-bottom:25px;
    line-height:1.5;
}

.company-desc{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

.services-btn{
    display:inline-block;
    background:var(--primary-color);
    color:#fff;
    padding:14px 28px;
    margin-top:20px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.services-btn:hover{
    background:var(--secondary-color);
    color: var(--primary-color) !important;
}

/* RIGHT SIDE GRID */
.company-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px 35px;
}

.service-card img{
    width:100%; 
    object-fit:contain;
    border:4px solid var(--primary-color);
}

.service-title{
    font-size:20px;
    font-weight:700;
    color:var(--primary-color);
    margin:15px 0 10px;
}

.service-desc{
    font-size:15px;
    color:#666;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
    .company-section{
        grid-template-columns:1fr;
        gap:50px;
    }
}

@media(max-width:600px){
    .company-right{
        grid-template-columns:1fr;
    }

    .company-name-main{
        font-size:32px;
    }
 
}

.overlay-section{
    position: relative;
    width: 100%;
    background: 
        linear-gradient(
            rgba(15, 40, 132, 0.555),
            rgba(15, 40, 132, 0.596)
        ),
        url("https://arishtha.in/img/resources/background-1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-inner{
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.overlay-box{
    border: 5px solid rgba(255,255,255,0.6);
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 1100px;
}

/* RESPONSIVE */

@media (max-width: 992px){
    .overlay-box{
        font-size: 28px;
        padding: 40px 30px;
    }
}

@media (max-width: 600px){
    .overlay-section{
        padding: 80px 15px;
        background-attachment: scroll; /* better for mobile */
    }

    .overlay-box{
        font-size: 20px;
        padding: 30px 20px;
    }
    
}


.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300; 
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
}

.title .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

/* FILTER TABS */
.filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.filter-tab {
    background: transparent;
    color: #f3f3f3;
    border: none;
    padding: 18px 35px;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.filter-tab:hover {
    color: #fff;
}

.filter-tab.active {
    color: #fff;
}

.filter-tab.active::after {
    width: 100%;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
    gap: 30px;
}


.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(240, 125, 0, 0.4);
    transform: translateY(-5px);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: 0.4s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.overlay-category {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hidden state */
.hidden {
    display: none;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


.why-us-section{
    padding: 80px 0;
}

.why-head-box{
    border-left: 5px solid var(--primary-color);
}

.why-heading{
    font-size: 25px;
    padding: 0 20px;
    font-weight: 600;
    color: var(--secondary-color); 
}
.why-subheading{
    font-size: 40px;
    padding: 0 20px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.why-button-side a{
    padding: 15px 20px;
    background: var(--primary-color);
    color: #fff;
}

.why-button-side a:hover{
    background:var(--secondary-color);
    color: var(--primary-color) !important;
}

.why-us-sec-2{
    padding: 35px 0;
}

.why-us-box{
    padding: 20px 30px;
    border: 5px solid #f3f3f3;
    position: relative;
    margin: 10px 0;
}

.why-us-box:hover{
    background: #f07d006b;
    transition: all 0.5s ease;
}

.why-box-icons{
    height: 60px; 
    padding: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-top: 10px;
}

.why-box-icons i{ 
    color: var(--secondary-color);
    font-size: 20px;
}

.why-us-box:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #f3f3f3;
    transform: rotate(-45deg);
    transform-origin: 80% -30%;
    transition: border-color .4s ease;
}

.why-box-heading{
    font-size: 20px; 
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1;
    padding: 10px 0;
}


.why-us-box:hover .why-box-heading {
    color: var(--primary-color);
    transition: all 0.5s ease;
}
.why-us-box:hover .why-us-box p {
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.why-us-box p{
    font-size: 14px;
    color:#000;
}



@media (max-width: 768px) {
    .why-button-side{
        display: none;
    }
}


/* What Makes us Special Section */
.special-section {
    background: #f7f7f7 url(../images/light-texture.jpg) 0 0 repeat;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    padding-bottom: 25px;
}

.special-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 40, 132, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.special-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.special-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.special-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 2px;
}

.special-title .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0; 
    border: 1px solid #ddd;
}

.stat-box {
    padding: 35px 40px;
    background: white;
    border-right: 1px solid #ddd;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box:hover {
    background: var(--light-bg);
    transform: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 15px;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.7;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* Events & Blogs Section */
.blogs-section {
    padding: 80px 20px;
    background: white;
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.blogs-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.blogs-title-wrapper::before {
    content: '';
    display: block;
    width: 4px;
    min-height: 80px;
    background: var(--primary-color);
    border-radius: 2px;
}

.blogs-title {
    font-size: 2.5rem;
    font-weight: 300;
}

.blogs-title .subtitle {
    display: block;
    font-size: 25px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1;
}

.blogs-title .main {
    font-size: 2.2rem;
    color: #000;
    font-weight: 700;
}

.view-all-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #e06c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 125, 0, 0.3);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-dot {
    color: var(--secondary-color);
    font-weight: bold;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .special-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .blogs-title .main {
        font-size: 1.8rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .view-all-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .special-section {
        padding: 60px 15px;
    }

    .special-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .stat-box {
        padding: 35px 20px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .blogs-section {
        padding: 60px 15px;
    }

    .blogs-title-wrapper::before {
        display: none;
    }

    .blogs-title .main {
        font-size: 1.5rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .special-title {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1.5rem;
    }

    .special-title::before {
        height: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .blogs-title .subtitle {
        font-size: 0.85rem;
    }

    .blogs-title .main {
        font-size: 1.2rem;
    }

    .view-all-btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }

.blog-card {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }

/* Counter Number Animation */
.counter-active {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.testimonials-title .main-text {
    color: var(--dark-gray);
    font-weight: 500;
}

.testimonials-title .highlight {
    color: var(--accent-green);
    font-weight: 700;
}

/* Owl Carousel Container */
.owl-carousel {
    display: flex;
    align-items: stretch;
}

.owl-stage-outer {
    display: flex;
    align-items: stretch;
}

.owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-item {
    display: flex;
    align-items: stretch;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 45px 40px;
    margin: 20px 15px;
    border-left: 4px solid var(--accent-green);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Triangle decoration at bottom right */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-top: 50px solid transparent;
    border-right: 50px solid var(--accent-green);
    border-bottom: 50px solid var(--accent-green);
    border-radius: 0 0 0 2px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 5px;
}

.author-designation {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
}

/* Owl Controls */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    pointer-events: all;
    position: absolute;
    background: transparent;
    border: none;
    color: var(--accent-green);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.owl-prev {
    left: -60px;
}

.owl-next {
    right: -60px;
}

.owl-prev::before,
.owl-next::before {
    content: '';
    font-size: 1.5rem;
}

/* Carousel Dots */
.owl-dots {
    position: absolute;
    display: none;
    right: 30px;
    top: 50%;
    transform: translateY(-50%); 
    flex-direction: column;
    gap: 12px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.owl-dot.active {
    background-color: var(--accent-green);
    transform: scale(1.3);
}

.owl-dot:hover {
    background-color: var(--accent-green);
}

/* Responsive */
@media (max-width: 1200px) {
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .owl-prev {
        left: -50px;
    }

    .owl-next {
        right: -50px;
    }

    .testimonial-card {
        padding: 40px 30px;
        min-height: 260px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .testimonial-card {
        padding: 35px 25px;
        min-height: 240px;
        margin: 15px 10px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .owl-nav {
        display: none;
    }

    .owl-dots {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 30px 20px;
        min-height: 220px;
        margin: 15px 10px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-designation {
        font-size: 0.85rem;
    }

    .owl-dots {
        bottom: 20px;
        right: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
    }

    .testimonial-card::after {
        border-left: 35px solid transparent;
        border-top: 35px solid transparent;
        border-right: 35px solid var(--accent-green);
        border-bottom: 35px solid var(--accent-green);
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 50px 10px;
    }

    .testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 25px 15px;
        min-height: 200px;
        margin: 10px 5px;
        border-left: 3px solid var(--accent-green);
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-designation {
        font-size: 0.8rem;
    }

    .testimonial-card::after {
        border-left: 25px solid transparent;
        border-top: 25px solid transparent;
        border-right: 25px solid var(--accent-green);
        border-bottom: 25px solid var(--accent-green);
    }

    .owl-dots {
        gap: 8px;
    }

    .owl-dot {
        width: 8px;
        height: 8px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.owl-item.active .testimonial-card {
    animation: slideIn 0.5s ease-out;
}

/* Carousel Styling */
.owl-carousel.owl-loaded {
    position: relative;
}

.owl-stage {
    padding: 0 !important;
}

.carousel-wrapper {
    position: relative;
    padding: 0 80px;
}

@media (max-width: 992px) {
    .carousel-wrapper {
        padding: 0 20px;
    }
}


/* ===== CLIENT LOGOS SECTION ===== */
.logos-section {
    background: var(--secondary-color) ;
    padding: 50px 20px;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Carousel Specific Styling */
#logosCarousel.owl-carousel {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-stage-outer {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-stage {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item {
    background: white;
    padding: 10px;
    border-radius: 4px;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.logo-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Logo Carousel Navigation */
#logosCarousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

#logosCarousel .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

#logosCarousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1);
}

#logosCarousel .owl-prev::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

#logosCarousel .owl-next::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Logo Dots */
#logosCarousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    padding: 0;
}

#logosCarousel .owl-dot {
    display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

#logosCarousel .owl-dot.active {
    background: white;
    transform: scale(1.3);
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background-color: #000;
    color: var(--text-gray);
    padding: 70px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Company Info Column */
.company-info {
    grid-column: span 1;
}

.company-logo {
    width: 120px;
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 20px;
}

.company-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.company-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.get-estimate-btn {
    background: var(--logo-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.get-estimate-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

/* Section Titles */
.footer-section-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-green);
}

/* Services & Products Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

/* Contact Details */
.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-section .contact-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-section .contact-icon:hover {
    transform: translateX(5px);
}
.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-text a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: white;
    padding-left: 8px;
}

.contact-text span {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Social Media */
.social-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: #fff !important;
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .logos-section {
        padding: 40px 15px;
    }

    .logo-item {
        min-height: 100px;
        padding: 15px;
        margin: 10px;
    }

    .footer-section {
        padding: 50px 20px 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .company-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .logos-section {
        padding: 30px 10px;
    }

    .logo-item {
        min-height: 90px;
        padding: 12px;
        margin: 8px;
    }

    .logo-item img {
        max-height: 60px;
    }

    #logosCarousel .owl-nav {
        padding: 0 10px;
    }

    #logosCarousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-section {
        padding: 40px 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .company-info {
        grid-column: span 1;
    }

    .footer-section-title::after {
        width: 40px;
    }
}

@media (max-width: 576px) {
    .logos-section {
        padding: 25px 10px;
    }

    .logo-item {
        min-height: 80px;
        padding: 10px;
        margin: 5px;
    }

    .logo-item img {
        max-height: 50px;
    }

    #logosCarousel .owl-nav {
        display: none;
    }

    .footer-section {
        padding: 30px 10px 15px;
    }

    .company-logo {
        width: 100px;
        height: 70px;
    }

    .company-title {
        font-size: 0.8rem;
    }

    .company-description {
        font-size: 0.85rem;
    }

    .footer-section-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .get-estimate-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .contact-detail {
        margin-bottom: 15px;
    }

    .footer-section .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .contact-text span,
    .contact-text a {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logos-section {
    animation: slideInDown 0.6s ease-out;
}

.logo-item {
    transition: all 0.3s ease;
}

.footer-column {
    animation: slideInDown 0.6s ease-out;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}


/* about-page-section */

.about-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title span {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.section-subtitle h1 {
    font-size: 1.8rem;
    color: #333;
}

.floating-image {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text p{
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.content-text p {
    margin-bottom: 20px;
}

.highlight {
    color: #000;
    font-weight: 600;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

.quad-image {
    position: relative;
    aspect-ratio: 4 / 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}

/* Base quad style */
.quad {
    background-image: url("https://images.imyfone.com/filme/assets/article/image-convert-to-url.jpeg");
    background-size: 200% 200%;
    border-radius: 6px;

    opacity: 0;
    transform: scale(0.9);
    transition: 
        transform 0.6s ease,
        opacity 0.6s ease;
}

/* Image positioning */
.q1 { background-position: left top; }
.q2 { background-position: right top; }
.q3 { background-position: left bottom; }
.q4 { background-position: right bottom; }

/* Initial slide directions */
.q1 { transform: translate(-30px, -30px) scale(0.9); }
.q2 { transform: translate(30px, -30px) scale(0.9); }
.q3 { transform: translate(-30px, 30px) scale(0.9); }
.q4 { transform: translate(30px, 30px) scale(0.9); }

/* Animate in */
.animate-on-scroll.active .quad {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger timing */
.animate-on-scroll.active .q1 { transition-delay: 0s; }
.animate-on-scroll.active .q2 { transition-delay: 0.15s; }
.animate-on-scroll.active .q3 { transition-delay: 0.3s; }
.animate-on-scroll.active .q4 { transition-delay: 0.45s; }


/* breadcrumb-section  */

.breadcrumb-banner {
    
    margin-top: 100px;

    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.breadcrumb-content {
    max-width: 800px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: #d59e06;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #d59e06;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #d59e06;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}


/* Certificates Section */
.certificates-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
}

.certificates-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.certificates-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.certificates-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 2px;
}

.certificates-title .main-text {
    color: var(--dark-gray);
    font-weight: 500;
}

.certificates-title .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Main Content Grid */
.certificates-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== CERTIFICATES IMAGES ===== */
.certificates-images-section {
    display: flex;
    flex-direction: column;
}

.certificates-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.certificates-subtitle::before {
    content: '';
    display: block;
    width: 3px;
    height: 28px;
    background: var(--accent-green);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.certificate-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.certificate-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-image {
    transform: scale(1.05);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 40, 132, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay-content {
    text-align: center;
    color: white;
}

.certificate-overlay-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.certificate-overlay-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.certificate-info {
    padding: 20px;
}

.certificate-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.certificate-year {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== DOWNLOAD DOCUMENTS ===== */
.download-documents-section {
    display: flex;
    flex-direction: column;
}

.download-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-subtitle::before {
    content: '';
    display: block;
    width: 3px;
    height: 28px;
    background: var(--accent-green);
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.document-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.document-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.document-details {
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    gap: 15px;
}

.document-size {
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-btn {
    background: linear-gradient(135deg, var(--secondary-color), #ff9500);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(240, 125, 0, 0.4);
    background: linear-gradient(135deg, #d96c00, #ff8400);
}

.download-btn i {
    font-size: 1rem;
}

/* Light Box for Certificate Preview */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 35%;
    max-height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* PDF Preview Modal */
.pdf-preview-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.pdf-preview-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-preview-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pdf-preview-header {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-preview-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.pdf-preview-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pdf-preview-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pdf-preview-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-preview-footer {
    padding: 20px;
    background: var(--light-bg);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid var(--border-color);
}

.pdf-preview-footer button {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pdf-cancel-btn {
    background: var(--border-color);
    color: var(--dark-gray);
}

.pdf-cancel-btn:hover {
    background: #d0d0d0;
}

.pdf-download-btn {
    background: linear-gradient(135deg, var(--secondary-color), #ff9500);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 125, 0, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .certificates-content {
        gap: 40px;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .certificates-section {
        padding: 60px 15px;
    }

    .certificates-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .certificates-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .document-card {
        flex-direction: column;
        text-align: center;
    }

    .document-details {
        justify-content: center;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .pdf-preview-content {
        width: 95%;
        height: 90vh;
    }
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 50px 15px;
    }

    .certificates-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        flex-direction: column;
        gap: 10px;
    }

    .certificates-title::before {
        height: 40px;
    }

    .certificates-subtitle,
    .download-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certificate-image-container {
        height: 250px;
    }

    .document-card {
        padding: 20px;
    }

    .document-title {
        font-size: 1rem;
    }

    .download-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .pdf-preview-content {
        width: 98%;
        height: 95vh;
    }

    .pdf-preview-header {
        padding: 15px;
    }

    .pdf-preview-title {
        font-size: 1.1rem;
    }

    .pdf-preview-footer {
        flex-direction: column;
        gap: 10px;
    }

    .pdf-preview-footer button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .certificates-section {
        padding: 40px 10px;
    }

    .certificates-title {
        font-size: 1.5rem;
    }

    .certificates-subtitle,
    .download-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .certificate-image-container {
        height: 200px;
    }

    .certificate-name {
        font-size: 0.95rem;
    }

    .certificate-year {
        font-size: 0.85rem;
    }

    .document-card {
        padding: 15px;
        gap: 15px;
    }

    .document-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .document-title {
        font-size: 0.95rem;
    }

    .document-details {
        font-size: 0.8rem;
    }

    .download-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }

    .pdf-preview-header {
        padding: 12px;
    }

    .pdf-preview-title {
        font-size: 1rem;
    }

    .pdf-preview-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-card {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.certificate-card:nth-child(1) { animation-delay: 0.1s; }
.certificate-card:nth-child(2) { animation-delay: 0.2s; }
.certificate-card:nth-child(3) { animation-delay: 0.3s; }
.certificate-card:nth-child(4) { animation-delay: 0.4s; }

.document-card {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.document-card:nth-child(1) { animation-delay: 0.2s; }
.document-card:nth-child(2) { animation-delay: 0.3s; }


/* Product Category Section */
.product-category-section {
    padding: 60px 20px;
    background: white;
}

.product-category-container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* SIDEBAR */
.sidebar-navigation {
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    background: var(--accent-green);
    color: white;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: 0.3s ease;
}

.sidebar-header:hover {
    background: #52a352;
}

.sidebar-list {
    list-style: none;
    background: var(--light-bg);
    border-radius: 0 0 4px 4px;
    padding: 0;
}

.sidebar-item {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-link {
    display: block;
    padding: 16px 25px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
    background: white;
}

.sidebar-link:hover {
    background: var(--light-bg);
    color: var(--accent-green);
    padding-left: 35px;
}

.sidebar-link.active {
    background: var(--light-bg);
    color: var(--accent-green);
    font-weight: 600;
    border-left: 4px solid var(--accent-green);
    padding-left: 21px;
}

/* CONTENT AREA */
.content-area {
    display: flex;
    flex-direction: column;
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.content-title .highlight {
    color: var(--accent-green);
    font-weight: 700;
}

.content-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-description,
.content-text {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-heading {
    font-size: 1.6rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Mobile Toggle */
.mobile-toggle-btn {
    display: none;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .category-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-toggle-btn {
        display: block;
    }

    .sidebar-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 4px;
        margin-top: 5px;
    }

    .sidebar-list.active {
        max-height: 800px;
    }

    .sidebar-header {
        border-radius: 4px;
    }
}

@media (max-width: 768px) {
    .product-category-section {
        padding: 40px 15px;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .content-image {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .product-category-section {
        padding: 30px 10px;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .content-image {
        height: 220px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== LEFT SIDE - CONTACT DETAILS ===== */
.contact-details-section {
    display: flex;
    flex-direction: column;
}

.contact-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.contact-section-title .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(90, 184, 90, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-text {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.detail-link:hover {
    color: var(--secondary-color);
}

/* Working Hours Section */
.working-hours-section {
    margin-top: 50px;
}

.working-hours-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.working-hours-title .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hours-day {
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.hours-time {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.closed-badge {
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== RIGHT SIDE - CONTACT FORM ===== */
.contact-form-section {
    display: flex;
    flex-direction: column;
}

.form-intro-text {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.3;
}

.form-main-title span {
    display: block;
    color: var(--dark-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-input,
.form-textarea {
    padding: 16px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--dark-gray);
    background: var(--light-bg);
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(90, 184, 90, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    margin-bottom: 30px;
}

.send-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-button:hover {
    background: #52a352;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 184, 90, 0.3);
}

.send-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 50px;
    }

    .contact-section-title {
        font-size: 1.6rem;
    }

    .form-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .form-main-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .form-intro-text {
        font-size: 0.9rem;
    }

    .working-hours-section {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 15px;
    }

    .contact-section-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .detail-item {
        margin-bottom: 25px;
        gap: 15px;
    }

    .detail-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .detail-text,
    .detail-link {
        font-size: 0.9rem;
    }

    .working-hours-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .hours-item {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .hours-day,
    .hours-time {
        font-size: 0.9rem;
    }

    .form-main-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .form-textarea {
        min-height: 120px;
        margin-bottom: 20px;
    }

    .send-button {
        padding: 14px 40px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 10px;
    }

    .contact-section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .detail-item {
        margin-bottom: 20px;
        gap: 12px;
    }

    .detail-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .detail-text,
    .detail-link {
        font-size: 0.85rem;
    }

    .working-hours-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .hours-item {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .hours-day,
    .hours-time {
        font-size: 0.85rem;
    }

    .closed-badge {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .form-intro-text {
        font-size: 0.85rem;
    }

    .form-main-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .form-textarea {
        min-height: 100px;
        margin-bottom: 15px;
    }

    .send-button {
        padding: 12px 35px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-details-section {
    animation: slideInUp 0.6s ease-out;
}

.contact-form-section {
    animation: slideInUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.detail-item {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.detail-item:nth-child(1) {
    animation-delay: 0.2s;
}

.detail-item:nth-child(2) {
    animation-delay: 0.3s;
}

.detail-item:nth-child(3) {
    animation-delay: 0.4s;
}

.addon-section-wrapper-mvv {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.addon-mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.addon-mvv-card {
    padding: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f9f9fb 100%);
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.addon-mvv-card:nth-child(2) {
    border-left-color: #7c3aed;
}

.addon-mvv-card:nth-child(3) {
    border-left-color: #059669;
}

.addon-mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.addon-mvv-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
}

.addon-mvv-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.addon-mvv-content {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

.addon-section-intro {
    text-align: center;
    margin-bottom: 30px;
}

.addon-intro-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2563eb;
    margin-bottom: 10px;
}

.addon-intro-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.addon-intro-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .addon-mvv-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .addon-intro-title {
        font-size: 22px;
    }

    .addon-mvv-title {
        font-size: 18px;
    }

    .addon-mvv-card {
        padding: 25px;
    }
}