/* Global Overflow Control - Prevent Horizontal Scrolling */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

*{
    box-sizing:border-box;
}

/* Prevent any element from exceeding viewport - but be careful with universal selector */
.quote-section,
.quote-section .container,
.quote-content,
.quote-form-container,
.quote-form,
.form-row,
.form-group{
    max-width: 100vw;
}

/* Specifically constrain form elements */
.quote-section,
.quote-section *,
.quote-form-container,
.quote-form-container *,
.quote-form,
.quote-form *,
.form-row,
.form-row *,
.form-group,
.form-group * {
    max-width: 100%;
}

.quote-form-container,
.quote-form {
    overflow: visible !important;
}

.form-group.custom-select-wrapper,
.custom-select-wrapper {
    overflow: visible !important;
    contain: none !important;
}

/* Force all form selects to be contained */
.quote-section select,
.quote-form-container select,
.quote-form select,
.form-row select,
.form-group select {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
}

/* Create a clipping container for dropdowns - Removed clip-path as it may interfere with dropdowns */

/* Ensure form-row creates proper grid constraints */
.form-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

/* Additional mobile-specific constraints */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .select-wrapper {
        width: 100%;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .select-wrapper select {
        width: 100% !important;
        max-width: calc(100vw - 2rem) !important;
    }
}

/* Clean & Consistent Color Scheme - Yodha Elevators */
:root {
    /* Primary Brand Colors */
    --primary-color: #2d3748;
    --secondary-color: #1a202c;
    --accent-color: #f59e0b;
    --gold-color: #f59e0b;
    
    /* Navigation Colors */
    --nav-bg: #2d3748;
    --nav-link: #ffffff;
    --nav-link-hover: #f59e0b;
    --nav-link-active: #f59e0b;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --text-secondary: #334155;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #1e293b;
    
    /* Gray Scale */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
    --gradient-cute: linear-gradient(135deg, #f59e0b, #fbbf24, #fbbf24);
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 6px 8px -1px rgba(0, 0, 0, 0.3), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

/* Navigation Header Styles */
.main-header {
    background: var(--nav-bg) !important;
    background-color: var(--nav-bg) !important;
    box-shadow: var(--shadow-medium);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
    margin: 0;
    background: var(--nav-bg) !important;
    background-color: var(--nav-bg) !important;
}

.main-header .container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-brand .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-brand .logo-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: var(--shadow-light);
}

.nav-brand .logo-image {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    background: transparent !important;
}

.nav-brand .logo-image img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    background: transparent !important;
    /* Convert logo colors to match website's amber/gold theme (#f59e0b) */
    filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
    -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
}

.nav-brand .logo {
    background: transparent !important;
}

.nav-brand {
    background: transparent !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nav-brand .logo-content {
    display: flex;
    align-items: center;
}

.nav-brand .logo-letters {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-right: 8px;
}

.nav-brand .logo-text {
    display: flex;
    flex-direction: column;
}

.nav-brand .logo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 2px;
}

.nav-brand .logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    padding-right: 2rem;
    padding-left: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--nav-link);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-light) !important;
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--text-light) !important;
    background: rgba(245, 158, 11, 0.15);
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-color);
}

.nav-phone i {
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: none;
    filter: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 6px;
}

/* Perfect X Icon When Active */
.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
    background: var(--text-light) !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    width: 0;
    height: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
    background: var(--text-light) !important;
}

/* Tablet View - Header Fix */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Override all general nav-link styles to match mobile */
    .nav-link,
    .nav-link:link,
    .nav-link:visited,
    .nav-link:active {
        color: #fcd34d !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 1rem !important;
        text-align: left !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        line-height: 1.5 !important;
    }
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-brand .logo-image {
        max-width: 100%;
        max-height: 200px;
        width: auto;
        height: auto;
    }
    
    .nav-brand .logo-image img {
        max-width: 100%;
        max-height: 200px;
        width: auto;
        height: auto;
        /* Convert logo colors to match website's amber/gold theme (#f59e0b) */
        filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
        -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
    }
    
    .main-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
    }
    
    .navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
        flex-direction: column !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 999 !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .nav-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
        width: 100% !important;
        text-align: left !important;
        padding: 1rem 1.5rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        list-style: none !important;
    }
    
    .nav-links li {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        list-style: none !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 0.75rem 1rem !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: var(--nav-link) !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        margin: 0 !important;
        text-align: left !important;
        line-height: 1.5 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
    }
    
    .nav-link:hover {
        color: var(--text-light) !important;
        background: rgba(245, 158, 11, 0.1) !important;
        background-color: rgba(245, 158, 11, 0.1) !important;
        text-decoration: none !important;
    }
    
    .nav-link.active {
        color: var(--text-light) !important;
        background: rgba(245, 158, 11, 0.15) !important;
        background-color: rgba(245, 158, 11, 0.15) !important;
        font-weight: 700 !important;
        text-decoration: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-info {
        display: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Override all general nav-link styles to match desktop */
    .nav-link,
    .nav-link:link,
    .nav-link:visited,
    .nav-link:active {
        color: var(--nav-link) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 0.95rem !important;
        text-align: left !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        line-height: 1.5 !important;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
        justify-content: center;
        position: relative;
    }
    
    .nav-brand {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-brand .logo-image {
        max-width: 100%;
        max-height: 150px;
        width: auto;
        height: auto;
        margin: 0 auto;
    }
    
    .nav-brand .logo-image img {
        max-width: 100%;
        max-height: 150px;
        width: auto;
        height: auto;
        /* Convert logo colors to match website's amber/gold theme (#f59e0b) */
        filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
        -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
    }
    
    .nav-contact {
        position: absolute;
        right: 1rem;
        z-index: 1001;
    }
    
    .nav-brand .logo-name {
        font-size: 1rem;
    }
    
    .nav-brand .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .main-header {
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
    }
    
    .navbar {
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
        flex-direction: column !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 999 !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .nav-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
        width: 100% !important;
        text-align: left !important;
        padding: 1rem 1.5rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        list-style: none !important;
    }
    
    .nav-links li {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        list-style: none !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 0.75rem 1rem !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: var(--nav-link) !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        margin: 0 !important;
    }
    
    .nav-link:hover {
        color: var(--text-light) !important;
        background: rgba(245, 158, 11, 0.1) !important;
        background-color: rgba(245, 158, 11, 0.1) !important;
    }
    
    .nav-link.active {
        color: var(--text-light) !important;
        background: rgba(245, 158, 11, 0.15) !important;
        background-color: rgba(245, 158, 11, 0.15) !important;
        font-weight: 700 !important;
    }
    
    .nav-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-brand .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .nav-brand .logo-letters {
        font-size: 1rem;
    }
    
    .nav-brand .logo-name {
        font-size: 1rem;
    }
    
    .nav-brand .logo-subtitle {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0.8rem;
        justify-content: center;
        position: relative;
    }
    
    .nav-brand {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-brand .logo-image {
        max-width: 100%;
        max-height: 130px;
        width: auto;
        height: auto;
        margin: 0 auto;
    }
    
    .nav-brand .logo-image img {
        max-width: 100%;
        max-height: 130px;
        width: auto;
        height: auto;
        /* Convert logo colors to match website's amber/gold theme (#f59e0b) */
        filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
        -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1);
    }
    
    .nav-contact {
        position: absolute;
        right: 0.8rem;
        z-index: 1001;
    }
    
    .nav-brand .logo-name {
        font-size: 0.9rem;
    }
    
    .nav-brand .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .nav-brand .logo-circle {
        width: 35px;
        height: 35px;
    }
    
    .nav-brand .logo-letters {
        font-size: 0.9rem;
    }
    
    .nav-brand .logo-name {
        font-size: 0.9rem;
    }
    
    .nav-brand .logo-subtitle {
        font-size: 0.55rem;
    }
}

/* Add top padding to body to account for fixed header */
body {
    padding-top: 80px;
}

/* Additional Header Styles */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.contact-item i {
    color: var(--text-light);
    font-size: 1rem;
}

/* Mobile Menu Styles */
/* Removed duplicate - using main definition above */

/* Mobile Navigation */
@media (max-width: 640px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px !important;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        box-shadow: none !important;
        padding: 0 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        z-index: 1000;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        text-align: center;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        color: var(--nav-link) !important;
    }
    
    .nav-link:hover {
        background: rgba(245, 158, 11, 0.2);
        color: var(--text-light) !important;
    }
    
    .nav-link.active {
        background: rgba(245, 158, 11, 0.15);
        color: var(--text-light) !important;
    }
}

/* Removed duplicate - using main definition above */

/* Removed conflicting nav-link.active rule */

.nav-link:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-info {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0;
    }
}

/* Company name styling for about section */
.company-name-black {
    color: #000000 !important;
    font-weight: 700;
}

/* Orange arrow styling for about section features */
.orange-arrow {
    color: var(--accent-color) !important;
}

/* More specific rule for about section arrows */
.about-section .about-features .feature-item i {
    color: var(--accent-color) !important;
}

/* Even more specific rule for FontAwesome arrows */
.about-section .about-features .feature-item .fas.fa-arrow-right {
    color: var(--accent-color) !important;
}

/* Force orange color for all arrows in about section */
.about-section i[class*="fa-arrow-right"] {
    color: #f59e0b !important;
}

/* Additional override for any blue styling */
.about-features .feature-item i.fas.fa-arrow-right.orange-arrow {
    color: #f59e0b !important;
}

/* Global override for any FontAwesome blue styling */
.fas.fa-arrow-right {
    color: #f59e0b !important;
}

/* About Page - Force Orange Arrows to Match Index */
.about-page .feature-item i,
.about-page .about-features i,
.about-page i[class*="fa-arrow"],
.about-page i[class*="fa-chevron"],
.about-page .fas.fa-arrow-right,
.about-page .fa-arrow-right {
    color: #f59e0b !important;
}

/* Override any blue colors in about page */
.about-page * {
    --arrow-color: #f59e0b !important;
}

.about-page .feature-item i::before,
.about-page .about-features i::before {
    color: #f59e0b !important;
}

/* Additional specific rules for about page arrows */
body.about-page .feature-item i,
body.about-page .about-features i,
body.about-page i[class*="arrow"],
body.about-page i[class*="chevron"] {
    color: #f59e0b !important;
}

/* Force orange color for all icons in about page features */
.about-page .about-features .feature-item i,
.about-page .about-features li i,
.about-page .feature-item i {
    color: #f59e0b !important;
    background: none !important;
    border: none !important;
}

/* Specific targeting for about page arrow icons */
.about-features .features-column .feature-item i.fas.fa-arrow-right,
.about-features .feature-item i.fas.fa-arrow-right,
.features-column .feature-item i.fas.fa-arrow-right,
.feature-item i.fas.fa-arrow-right {
    color: #f59e0b !important;
}

/* Override any blue color with maximum specificity */
.about-section .about-features .features-column .feature-item i.fas.fa-arrow-right {
    color: #f59e0b !important;
}

/* Additional override for about page specifically */
body:not(.index-page) .about-features .feature-item i.fas.fa-arrow-right {
    color: #f59e0b !important;
}

/* Nuclear option - override ALL possible blue colors */
.fas.fa-arrow-right,
.fa-arrow-right,
i[class*="arrow"],
i[class*="chevron"] {
    color: #f59e0b !important;
}

/* Specific override for about page arrows */
.about-features i,
.features-column i,
.feature-item i {
    color: #f59e0b !important;
}

/* Why Choose section styling - now uses same structure as about section */
/* The about-header, about-circle, about-line, and h4 styling will be applied automatically */

/* About title styling to match why choose */
.about-title-black {
    color: #000000 !important;
    font-weight: 600 !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--light-bg);
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Consistent Across All Pages */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: #1e293b;
}

/* Main Heading - Large and Bold */
.hero-content h1, .page-header h1, .section-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

/* Section Headings */
.hero-content h2, .page-header h2, .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
}

/* Subsection Headings */
.hero-content h3, .page-header h3, .section-title h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 0.8rem;
}

/* Paragraph Text - Consistent Size */
.hero-content p, .page-header p, .section-content p, .about-content p, .service-description p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 1.2rem;
}

/* Button Text */
.btn, .btn-primary, .btn-secondary {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-link, .overlay-nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Logo Text */
.nav-logo h2, .logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Small Text */
.small-text, .text-muted {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

/* Cute Text Effects */
.cute-text {
    position: relative;
    display: inline-block;
}


@keyframes sparkle {
    0%, 100% { 
        transform: translateY(-50%) scale(1) rotate(0deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-50%) scale(1.3) rotate(180deg); 
        opacity: 1; 
    }
}

/* Cute Heading Styles */
.cute-heading {
    position: relative;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Cute Paragraph Styles */
.cute-paragraph {
    position: relative;
    padding-left: 20px;
}


@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Cute Button Text */
.cute-button {
    position: relative;
    overflow: hidden;
}


@keyframes rocket {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

/* Cute List Items */
.cute-list {
    list-style: none;
    padding: 0;
}

.cute-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Professional Color Palette - Vindhya Style */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --light-bg: #f8fafc;
    --dark-bg: #1e293b;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    --shadow-light: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-medium: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-card: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

/* Large Desktop Screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
}

/* Extra Large Desktop Screens (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
}

/* Ultra Wide Screens (2560px and above) */
@media (min-width: 2560px) {
    .container {
        max-width: 1800px;
        padding: 0 80px;
    }
}

/* Landscape Tablet Orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
    }
    
    .page-header {
        min-height: 50vh;
        padding: 40px 0;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.quote-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
    overflow-x: hidden;
    position: relative;
}

/* Enhanced Navigation */
.navbar {
    background: var(--nav-bg) !important;
    box-shadow: var(--shadow-light);
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: none;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cute);
    opacity: 0.05;
    z-index: -1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
}

.nav-logo h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-60%);
    }
    60% {
        transform: translateY(-55%);
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-link);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    border-bottom: 2px solid transparent;
    border-radius: 6px;
    position: relative;
    display: inline-block;
    margin: 0 0.2rem;
}

.nav-link:hover {
    color: #A07B4D;
    background: rgba(160, 123, 77, 0.1);
    border-bottom-color: #A07B4D;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(160, 123, 77, 0.2);
}

/* Removed conflicting nav-link.active rule */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Elevator Installation Process Section - Clean Horizontal Design */
.installation-process {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-line {
    width: 40px;
    height: 3px;
    background: #f59e0b;
    margin: 0 auto 15px auto;
    border-radius: 2px;
}

.process-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 300;
    color: #f1f5f9;
    line-height: 1;
    z-index: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border: 2px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.step-icon:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.5rem;
    color: #f59e0b;
    transition: color 0.3s ease;
}

.step-icon:hover i {
    color: var(--text-light);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Installation Process */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .installation-process {
        padding: 60px 0;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .step-number {
        font-size: 3rem;
        top: -15px;
        right: 10px;
        color: #f1f5f9;
        font-weight: 300;
        line-height: 1;
        z-index: 0;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        background: #f59e0b !important;
        border: 2px solid #f59e0b !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        position: relative;
        z-index: 3;
        transition: all 0.3s ease;
    }
    
    .step-icon i {
        font-size: 1.5rem;
        color: #ffffff !important;
        transition: color 0.3s ease;
    }
    
    .step-icon:hover {
        background: #f59e0b !important;
        border-color: #f59e0b !important;
        transform: scale(1.1);
    }
    
    .step-icon:hover i {
        color: #ffffff !important;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .process-header h2 {
        font-size: 1.8rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
}
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
    border: none;
    border-radius: 0;
    margin: 0;
    box-sizing: border-box;
}


.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    color: white;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
    filter: blur(1px);
    opacity: 0.7;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    width: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    display: block;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 0;
    text-align: left;
    margin-left: 15%;
    margin-top: 15%;
    opacity: 1;
    visibility: visible;
    display: block;
}

.hero-text-container {
    position: relative;
    margin-top: 0.5rem;
}

.decorative-bracket.top-left {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 25px;
    height: 25px;
    border-left: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    opacity: 1;
}

.decorative-bracket.bottom-right {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    opacity: 1;
}

.brand-name {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0.3rem;
    text-transform: none;
    letter-spacing: 0.2px;
    opacity: 1;
}

.hero-buttons {
    margin-top: 1.5rem;
    text-align: left;
}

.hero-content h1, .hero-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
    position: relative;
    letter-spacing: -0.1px;
}

/* Remove decorative elements for clean Vindhya style */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    max-width: 350px;
}

/* Remove decorative elements for clean Vindhya style */

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}


/* Enhanced About Section */
.about-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
    z-index: 2;
}

/* About Header with Line */
.about-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-circle {
    width: 12px;
    height: 12px;
    background: #f59e0b;
    border-radius: 50%;
    margin-right: 8px;
}

.about-line {
    width: 40px;
    height: 2px;
    background: #f59e0b;
    margin-right: 1rem;
}

.about-header h2 {
    font-size: 1.3rem;
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-small {
    font-size: 0.9rem !important;
    color: #f59e0b !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Product Grid Layout - 2 Image Grid */
.product-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 1rem;
    width: 100%;
    height: 50vh;
    margin: 2rem 0;
}

/* Product Grid Layout - Flexible 3x2 Grid */
.product-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
    width: 100%;
    margin: 2rem 0;
}

/* Scrollable grid when there are more than 6 images - Desktop Only */
/* Desktop view - Enable scrolling after 6th image */
@media (min-width: 1025px) {
    .product-grid-scrollable {
        overflow-x: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-right: 1rem;
    }
    
    /* Only show scrollbar when there are more than 6 items */
    .product-grid-scrollable:has(.grid-item:nth-child(7)) {
        /* Set max-height to show exactly 2 rows (6 images in 3-column grid)
           Using a precise height that accommodates:
           - 2 rows of grid items (each with aspect-ratio 4/3 + grid-info)
           - 1 gap (1rem) between rows
           - Tighter value to ensure third row is cut off and scroller appears */
        max-height: 450px;
        overflow-y: auto;
        /* Custom scrollbar styling */
        scrollbar-width: auto;
        scrollbar-color: rgba(245, 158, 11, 0.8) rgba(241, 245, 249, 0.8);
    }
    
    .product-grid-scrollable:has(.grid-item:nth-child(7))::-webkit-scrollbar {
        width: 12px;
    }
    
    .product-grid-scrollable:has(.grid-item:nth-child(7))::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 6px;
        margin: 5px 0;
    }
    
    .product-grid-scrollable:has(.grid-item:nth-child(7))::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(245, 158, 11, 0.9) 0%, rgba(217, 119, 6, 0.9) 100%);
        border-radius: 6px;
        border: 2px solid #e5e7eb;
        min-height: 40px;
    }
    
    .product-grid-scrollable:has(.grid-item:nth-child(7))::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, rgba(245, 158, 11, 1) 0%, rgba(217, 119, 6, 1) 100%);
    }
    
    /* If 6 or fewer items, no scrolling */
    .product-grid-scrollable:not(:has(.grid-item:nth-child(7))) {
        max-height: none;
        overflow-y: visible;
    }
}

/* Tablet and Mobile - No scrolling, show all images */
@media (max-width: 1024px) {
    .product-grid-scrollable {
        max-height: none !important;
        overflow-y: visible !important;
        overflow-x: hidden;
        padding-right: 0;
    }
    
    /* Hide scrollbar on tablet and mobile */
    .product-grid-scrollable::-webkit-scrollbar {
        display: none;
    }
    
    .product-grid-scrollable {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
}

/* Product Grid Layout - 3 Image Layout (Legacy) */
.product-grid-three {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 60vh;
    margin: 2rem 0;
    grid-template-areas: 
        "top-left top-right"
        "bottom-center bottom-center";
}

.grid-item.top-left {
    grid-area: top-left;
}

.grid-item.top-right {
    grid-area: top-right;
}

.grid-item.bottom-center {
    grid-area: bottom-center;
    max-width: 50%;
    justify-self: center;
}

/* Legacy 2x2 Grid for backward compatibility */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    height: 60vh;
    margin: 2rem 0;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
    min-height: 200px;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover .grid-image {
    transform: scale(1.05);
}

/* Product Scroll Container - For images after first 6 */
.product-scroll-container {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 0;
}

.product-scroll-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for cleaner look but keep functionality */
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.5) transparent;
}

.product-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.product-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.product-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.5);
    border-radius: 4px;
}

.product-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 158, 11, 0.8);
}

.product-scroll-wrapper .grid-item {
    flex: 0 0 calc(33.333% - 0.67rem);
    min-width: 300px;
    max-width: 400px;
}

/* Desktop view - only show scroll on desktop */
@media (min-width: 1025px) {
    .product-scroll-container {
        display: block;
    }
    
    .product-scroll-wrapper {
        display: flex;
    }
}

/* Tablet and mobile - show as regular grid */
@media (max-width: 1024px) {
    .product-scroll-container {
        display: block;
    }
    
    .product-scroll-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        overflow-x: visible;
        overflow-y: visible;
    }
    
    .product-scroll-wrapper .grid-item {
        flex: none;
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-scroll-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Vertical Scroll Container - For images after first 6 in tab 1 */
.product-scroll-container-vertical {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 0;
    position: relative;
}

.product-scroll-wrapper-vertical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    padding-right: 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    position: relative;
    /* Custom scrollbar styling - only shows when content overflows */
    scrollbar-width: auto;
    scrollbar-color: rgba(245, 158, 11, 0.8) rgba(241, 245, 249, 0.8);
}

.product-scroll-wrapper-vertical::-webkit-scrollbar {
    width: 12px;
}

.product-scroll-wrapper-vertical::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 6px;
    margin: 5px 0;
    border: 1px solid #d1d5db;
}

.product-scroll-wrapper-vertical::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.9) 0%, rgba(217, 119, 6, 0.9) 100%);
    border-radius: 6px;
    border: 2px solid #e5e7eb;
    min-height: 40px;
}

.product-scroll-wrapper-vertical::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(245, 158, 11, 1) 0%, rgba(217, 119, 6, 1) 100%);
}

.product-scroll-wrapper-vertical::-webkit-scrollbar-thumb:active {
    background: rgba(217, 119, 6, 1);
}

.product-scroll-wrapper-vertical .grid-item {
    width: 100%;
    min-width: auto;
    max-width: 100%;
}

/* Desktop view - vertical scroll */
@media (min-width: 1025px) {
    .product-scroll-container-vertical {
        display: block;
        margin-top: 2rem;
    }
    
    .product-scroll-wrapper-vertical {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-height: 600px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 1rem;
        padding-right: 1.5rem;
    }
    
    /* Show scrollbar only when content exceeds max-height */
    .product-scroll-wrapper-vertical:has(.grid-item:nth-child(4)) {
        overflow-y: auto;
    }
}

/* Tablet view - 2 columns with vertical scroll */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-scroll-wrapper-vertical {
        grid-template-columns: repeat(2, 1fr);
        max-height: 700px;
    }
}

/* Mobile view - single column with vertical scroll */
@media (max-width: 768px) {
    .product-scroll-wrapper-vertical {
        grid-template-columns: 1fr;
        max-height: 500px;
        gap: 0.8rem;
        padding: 0.8rem;
        padding-right: 1.2rem;
    }
    
    .product-scroll-wrapper-vertical::-webkit-scrollbar {
        width: 8px;
    }
}

/* Tab Navigation Styling - Matching Reference Image */
.tab-head {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tab-head li {
    margin-bottom: 0.3rem;
}

.tab-head li:last-child {
    margin-bottom: 0;
}

.tab-link {
    display: block;
    padding: 1.2rem 1.5rem;
    background: #2d2d2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    border: 1px solid #3a3a3a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tab-link:hover {
    background: #3a3a3a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tab-link.active,
.tab-link.active:hover,
a.tab-link.active,
a.tab-link.active:hover {
    background: #f59e0b !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: 1px solid #e58e0a !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
    transform: none !important;
}

/* Additional specificity for active state */
ul.tab-head li a.tab-link.active {
    background: #f59e0b !important;
    color: #ffffff !important;
}

/* Force reset for non-active tabs */
.tab-link:not(.active) {
    background: #2d2d2d !important;
    color: #ffffff !important;
}

.tab-icon {
    display: block;
    font-size: 0.8rem;
    line-height: 1.3;
    font-weight: 600;
}

/* Tab Content */
.tab-body {
    display: none;
}

.tab-body.active {
    display: block !important;
}

/* Main Product Layout */
.product {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    background: #f8fafc;
}

.site-wrapper {
    display: flex;
    gap: 2rem;
    min-height: 60vh;
}

.tabs-wrapper {
    flex: 1;
}

.tabs-container {
    display: flex;
    gap: 2rem;
    height: 100%;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.mt-30 {
    margin-top: 2rem;
}

.tabs-block {
    height: 100%;
}

.tabs {
    height: 100%;
}

.row {
    display: flex;
    height: 100%;
    gap: 2rem;
}

.col-md-3 {
    flex: 0 0 280px;
    max-width: 280px;
}

.col-md-9 {
    flex: 1;
    min-height: 60vh;
}

.mt-30 {
    margin-top: 0;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .site-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .col-md-3 {
        flex: none;
        max-width: 100%;
    }
    
    .product-grid-two {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        height: auto;
    }
    
    .product-grid-six {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        height: auto;
    }
    
    .product-grid-three {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: 
            "top-left"
            "top-right"
            "bottom-center";
        height: auto;
    }
    
    .grid-item.bottom-center {
        max-width: 100%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: auto;
    }
    
    .grid-item {
        height: 200px;
    }
    
    .tab-link {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Removed fixed rows - now handled by dynamic grid rules below */
    .grid-item {
        height: auto;
    }
}

.about-text h3 {
    font-size: 3.5rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.about-text h4 {
    font-size: 1.8rem;
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Image Collage Layout - Vindhya Style */
.image-collage {
    position: relative;
    height: 800px;
    width: 100%;
    min-height: 800px;
    max-height: 800px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.main-elevator-image {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: calc(65% - 1rem);
    height: calc(100% - 4rem);
    min-height: 600px;
    max-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid #ffffff;
    margin: 0;
    z-index: 1;
}

.overlapping-elevator-image {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: calc(35% - 1rem);
    height: calc(45% - 1rem);
    min-height: 280px;
    max-height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffffff;
    z-index: 2;
}

.elevator-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.overlapping-elevator-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffffff;
    z-index: 2;
}

.elevator-capsule-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ffffff;
    border-radius: 15px;
    pointer-events: none;
    z-index: 3;
}

.decorative-dots {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 4;
}

.decorative-dots.top-right {
    top: -15px;
    right: -15px;
    background: radial-gradient(circle, #000000 2px, transparent 2px);
    background-size: 8px 8px;
}

.decorative-dots.bottom-left {
    bottom: -15px;
    left: -15px;
    background: radial-gradient(circle, #000000 2px, transparent 2px);
    background-size: 8px 8px;
}

.company-logo-overlay {
    position: absolute !important;
    top: calc(61% - 50px) !important;
    right: calc(35% - 60px) !important;
    z-index: 10 !important;
    pointer-events: none !important;
    width: 120px !important;
    height: 120px !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

/* Remove old decorative elements - now handled by new layout */

.shaft-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.elevator-tracks {
    position: absolute;
    left: 20%;
    right: 20%;
    top: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        #374151 0px,
        #374151 2px,
        transparent 2px,
        transparent 20px
    );
    opacity: 0.8;
}

.elevator-cables {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateX(-50%);
}

.elevator-cabs {
    position: absolute;
    left: 20%;
    right: 20%;
    top: 20%;
    height: 60px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: elevatorMove 8s ease-in-out infinite;
}

.elevator-cabs::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

@keyframes elevatorMove {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(100px); }
    50% { transform: translateY(200px); }
    75% { transform: translateY(100px); }
}

.shaft-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.company-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo-circle {
    width: 120px !important;
    height: 120px !important;
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
    border: 3px solid #f59e0b !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    min-width: 120px !important;
    max-width: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    position: relative !important;
}

.logo-circle::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
    border-radius: 50% !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.logo-content {
    text-align: center !important;
    color: #ffffff !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    margin: 0 !important;
    border: none !important;
    border-width: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    position: relative !important;
    z-index: 1 !important;
}

.logo-circle .logo-image {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    margin: 0 !important;
    border: none !important;
    border-width: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    position: relative !important;
    z-index: 2 !important;
}

.logo-circle .logo-image img {
    max-width: 160% !important;
    max-height: 160% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    /* Convert logo colors to match website's amber/gold theme (#f59e0b) and remove white elements */
    filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
    -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-width: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    mix-blend-mode: normal !important;
    isolation: isolate !important;
    position: relative !important;
    z-index: 3 !important;
    opacity: 1 !important;
}

.logo-letters {
    font-size: 1.2rem;
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 0.05rem;
    line-height: 0.8;
}

.logo-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.4px;
    margin-bottom: 0.03rem;
    line-height: 0.8;
}

.logo-subtitle {
    font-size: 0.5rem;
    font-weight: 600;
    color: #f59e0b;
    letter-spacing: 0.2px;
    line-height: 0.8;
}

.logo-text {
    color: #f59e0b;
    font-size: 0.6rem;
    line-height: 1;
}

.logo-name {
    font-weight: 700;
    margin-bottom: 1px;
}

.logo-subtitle {
    font-weight: 500;
    font-size: 0.5rem;
}

/* Capsule Elevator Image */
.capsule-elevator-image {
    position: relative;
    height: 200px;
    border-radius: 15px;
    margin-top: -50px;
    margin-left: 20px;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.capsule-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: #f59e0b;
    font-size: 0.8rem;
}

/* Outline Button */
.btn-outline {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Elevator Types Section */
.elevator-types-section {
    padding: 60px 0;
    background: #f8fafc;
}

.elevator-types-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.elevator-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.elevator-type-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.elevator-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    position: relative;
}

.card-icon.residential {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-icon.commercial {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.card-icon.hospital {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-icon.freight {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.elevator-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.elevator-type-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Image Collage - Single Unified Container */
@media (max-width: 768px) {
    .image-collage {
        height: 800px !important;
        min-height: 800px !important;
        max-height: 800px !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        padding: 2rem !important;
        background: #f8f9fa !important;
        border-radius: 20px !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
        overflow: hidden !important;
    }
    
    .main-elevator-image {
        position: absolute !important;
        top: 2rem !important;
        left: 2rem !important;
        width: calc(65% - 1rem) !important;
        height: calc(100% - 4rem) !important;
        min-height: 600px !important;
        max-height: 600px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
        border: 4px solid #ffffff !important;
        margin: 0 !important;
        z-index: 1 !important;
    }
    
    .overlapping-elevator-image {
        position: absolute !important;
        bottom: 2rem !important;
        right: 2rem !important;
        width: calc(35% - 1rem) !important;
        height: calc(45% - 1rem) !important;
        min-height: 280px !important;
        max-height: 280px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
        border: 3px solid #ffffff !important;
        z-index: 2 !important;
    }
    
    .company-logo-overlay {
        position: absolute !important;
        top: calc(61% - 50px) !important;
        right: calc(35% - 60px) !important;
        z-index: 10 !important;
        pointer-events: none !important;
        width: 120px !important;
        height: 120px !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .company-logo-overlay .logo-circle {
        width: 120px !important;
        height: 120px !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        background-image: none !important;
        border: 3px solid #f59e0b !important;
        border-radius: 50% !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        min-width: 120px !important;
        max-width: 120px !important;
        min-height: 120px !important;
        max-height: 120px !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
    }
    
    .company-logo-overlay .logo-circle::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        background-image: none !important;
        border-radius: 50% !important;
        z-index: 0 !important;
        pointer-events: none !important;
    }
    
    .company-logo-overlay .logo-content {
        text-align: center !important;
        color: #ffffff !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
        width: 100% !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        margin: 0 !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        margin: 0 !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image img {
        max-width: 160% !important;
        max-height: 160% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
        -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
        opacity: 1 !important;
        mix-blend-mode: normal !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        isolation: isolate !important;
        position: relative !important;
        z-index: 3 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        border-radius: 50% !important;
        z-index: -1 !important;
        pointer-events: none !important;
    }
}

/* Tablet View - Ensure consistency */
@media (min-width: 769px) and (max-width: 1024px) {
    .image-collage {
        height: 800px !important;
        min-height: 800px !important;
        max-height: 800px !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        padding: 2rem !important;
        background: #f8f9fa !important;
        border-radius: 20px !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
        overflow: hidden !important;
    }
    
    .main-elevator-image {
        position: absolute !important;
        top: 2rem !important;
        left: 2rem !important;
        width: calc(65% - 1rem) !important;
        height: calc(100% - 4rem) !important;
        min-height: 600px !important;
        max-height: 600px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
        border: 4px solid #ffffff !important;
        margin: 0 !important;
        z-index: 1 !important;
    }
    
    .overlapping-elevator-image {
        position: absolute !important;
        bottom: 2rem !important;
        right: 2rem !important;
        width: calc(35% - 1rem) !important;
        height: calc(45% - 1rem) !important;
        min-height: 280px !important;
        max-height: 280px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
        border: 3px solid #ffffff !important;
        z-index: 2 !important;
    }
    
    .company-logo-overlay {
        position: absolute !important;
        top: calc(61% - 50px) !important;
        right: calc(35% - 60px) !important;
        z-index: 10 !important;
        pointer-events: none !important;
        width: 120px !important;
        height: 120px !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .company-logo-overlay .logo-circle {
        width: 120px !important;
        height: 120px !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        background-image: none !important;
        border: 3px solid #f59e0b !important;
        border-radius: 50% !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        min-width: 120px !important;
        max-width: 120px !important;
        min-height: 120px !important;
        max-height: 120px !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
    }
    
    .company-logo-overlay .logo-circle::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        background-image: none !important;
        border-radius: 50% !important;
        z-index: 0 !important;
        pointer-events: none !important;
    }
    
    .company-logo-overlay .logo-content {
        text-align: center !important;
        color: #ffffff !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
        width: 100% !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        margin: 0 !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        margin: 0 !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image img {
        max-width: 160% !important;
        max-height: 160% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
        -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
        opacity: 1 !important;
        mix-blend-mode: normal !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        isolation: isolate !important;
        position: relative !important;
        z-index: 3 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        border-radius: 50% !important;
        z-index: -1 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 480px) {
    .image-collage {
        height: 800px !important;
        min-height: 800px !important;
        max-height: 800px !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        padding: 2rem !important;
        background: #f8f9fa !important;
        border-radius: 20px !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
        overflow: hidden !important;
    }
    
    .main-elevator-image {
        position: absolute !important;
        top: 2rem !important;
        left: 2rem !important;
        width: calc(65% - 1rem) !important;
        height: calc(100% - 4rem) !important;
        min-height: 600px !important;
        max-height: 600px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
        border: 4px solid #ffffff !important;
        margin: 0 !important;
        z-index: 1 !important;
    }
    
    .overlapping-elevator-image {
        position: absolute !important;
        bottom: 2rem !important;
        right: 2rem !important;
        width: calc(35% - 1rem) !important;
        height: calc(45% - 1rem) !important;
        min-height: 280px !important;
        max-height: 280px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
        border: 3px solid #ffffff !important;
        z-index: 2 !important;
    }
    
    .company-logo-overlay {
        position: absolute !important;
        top: calc(61% - 50px) !important;
        right: calc(35% - 60px) !important;
        z-index: 10 !important;
        pointer-events: none !important;
        width: 120px !important;
        height: 120px !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .company-logo-overlay .logo-circle {
        width: 120px !important;
        height: 120px !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        background-image: none !important;
        border: 3px solid #f59e0b !important;
        border-radius: 50% !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        min-width: 120px !important;
        max-width: 120px !important;
        min-height: 120px !important;
        max-height: 120px !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
    }
    
    .company-logo-overlay .logo-circle::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        background-image: none !important;
        border-radius: 50% !important;
        z-index: 0 !important;
        pointer-events: none !important;
    }
    
    .company-logo-overlay .logo-content {
        text-align: center !important;
        color: #ffffff !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
        width: 100% !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        margin: 0 !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        margin: 0 !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image img {
        max-width: 160% !important;
        max-height: 160% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        display: block !important;
        filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
        -webkit-filter: sepia(100%) saturate(200%) hue-rotate(-10deg) brightness(1.1) contrast(1.1) !important;
        opacity: 1 !important;
        mix-blend-mode: normal !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: none !important;
        border-width: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        isolation: isolate !important;
        position: relative !important;
        z-index: 3 !important;
    }
    
    .company-logo-overlay .logo-circle .logo-image::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #1e293b !important;
        background-color: #1e293b !important;
        border-radius: 50% !important;
        z-index: -1 !important;
        pointer-events: none !important;
    }
}

.about-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}


.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    animation: bounce 2s ease-in-out infinite 0.5s;
}


.about-text p {
    position: relative;
    padding-left: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}


.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #666;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.about-features i {
    color: var(--accent-color) !important;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Enhanced Achievements */
.achievements {
    padding: 2rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}


.achievements-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.achievements-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    margin: 0 auto 1rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.achievements-header h3 {
    font-size: 1.2rem;
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.achievements-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.achievement-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(245, 158, 11, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.achievement-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #f59e0b;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.achievement-item h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: 900;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-item:hover h3 {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-item p {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e2e8f0;
}

.achievement-item:hover p {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

.achievement-icon {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1);
    color: #ffffff;
}

/* Enhanced Working Process */
.working-process {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.working-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.4;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.working-process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cute);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-item:hover::before {
    opacity: 0.05;
}

.process-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.process-number {
    background: var(--gradient-secondary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.process-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}


.process-item p {
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}


/* Testimonials section removed */

/* Technology Section */
.technology-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-section {
    padding: 60px 0;
    background: var(--gradient-dark);
    color: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-badge {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.cert-item h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.faq-item h4 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

/* CTA Section removed */

/* Testimonials CSS removed */

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 44px;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--bg-white);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 800;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-line {
    width: 40px;
    height: 3px;
    background: #f59e0b;
    margin: 0 auto 1rem auto;
}

.services-header h3 {
    font-size: 1.2rem;
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-transform: capitalize;
}

.services-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card .btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card .btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.service-card .btn:hover::before {
    left: 100%;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.service-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
    flex-grow: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #1e293b;
}

.text-center {
    text-align: center;
}

/* Products CTA Section */
.products-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.products-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.products-cta .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.products-cta .btn-primary {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    margin: 0 auto;
}

.products-cta .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.products-cta .btn-primary i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    color: #f59e0b;
}

.products-cta .btn-primary:hover i {
    transform: translateX(3px);
    color: #ffffff;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .products-cta {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .products-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Stats Section */
.stats {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Page Header - Matching Hero Section Style */
.page-header {
    background: 
        linear-gradient(135deg, rgba(45, 55, 72, 0.8) 0%, rgba(26, 32, 44, 0.9) 100%),
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1761318540/c70c9814f1b2989260f8a1ed23b23c14_cpenjc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(45, 55, 72, 0.8) 70%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.0;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    text-transform: none;
}

.page-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    max-width: 100%;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-icon-large {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e74c3c;
    font-size: 4rem;
}

/* Service Types */
.service-types {
    background: #f8f9fa;
    padding: 60px 0;
}

.service-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Company Story */
.company-story {
    padding: 60px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Mission & Values */
.mission-values {
    background: #f8f9fa;
    padding: 60px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Team Section */
.team-section {
    padding: 60px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 1rem;
}

.member-image .placeholder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.position {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Certifications */
.certifications {
    background: #f8f9fa;
    padding: 60px 0;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cert-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.cert-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Timeline */
.timeline-section {
    padding: 60px 0;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-text h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: #ddd;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 1.2rem;
}

.faq-question i {
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* CTA Section removed */

/* Footer */

/* Team Photo Section */
.team-photo-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.team-photo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-photo:hover img {
    transform: scale(1.05);
}

.team-description h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.team-description p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Team stats specific styling - make numbers black */
.team-stats .stat-item h3 {
    color: #000000 !important;
}

/* Enhanced Certifications */
.certifications-header {
    text-align: center;
    margin-bottom: 3rem;
}

.certifications-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.certifications-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.cert-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
    transform: scale(1.1);
    color: #1e293b;
}

.cert-item h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cert-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-photo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-photo img {
        height: 300px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styling - Matching Website Theme */

/* Company Story */
.company-story {
    padding: 60px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Mission & Values */
.mission-values {
    background: #f8f9fa;
    padding: 60px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.mission-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    color: #1e293b;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Photo Section */
.team-photo-section {
    padding: 60px 0;
    background: #ffffff;
}

.team-photo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-photo:hover img {
    transform: scale(1.05);
}

.team-description h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.team-description p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #f59e0b;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 800;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.member-image {
    margin-bottom: 1.5rem;
}

.placeholder-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-member:hover .placeholder-image {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.position {
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Safety Certifications */
.certifications {
    padding: 60px 0;
    background: #ffffff;
}

.certifications-header {
    text-align: center;
    margin-bottom: 3rem;
}

.certifications-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.certifications-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.cert-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
    transform: scale(1.1);
    color: #1e293b;
}

.cert-item h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cert-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 800;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f59e0b;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #f59e0b;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 70vh;
    }
    
    .page-header {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .team-photo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-photo img {
        height: 300px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 3rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
    }
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}


.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Products Introduction Section */
.products-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.intro-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.intro-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-stats .stat-item:hover {
    transform: translateY(-5px);
}

.intro-stats .stat-item h3 {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.intro-stats .stat-item p {
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: #ffffff;
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-section .section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.products-section .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
    text-align: center;
}

.product-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.product-features span {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-content .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products CTA Section */
.products-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.products-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.products-cta .cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.products-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.products-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.products-cta .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.products-cta .btn-primary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.products-cta .btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.products-cta .btn-secondary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .intro-stats .stat-item {
        padding: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .products-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .products-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Products Layout with Sidebar */
.products-layout {
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.products-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.products-sidebar {
    width: 300px;
    background: #374151;
    padding: 2rem 0;
    position: fixed;
    left: 0;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 0 2rem 2rem 2rem;
    border-bottom: 1px solid #4b5563;
    margin-bottom: 2rem;
}

.sidebar-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu {
    padding: 0 1rem;
}

.sidebar-item {
    width: 100%;
    background: #374151;
    border: none;
    color: #ffffff;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.sidebar-item:hover {
    background: #4b5563;
    transform: translateX(5px);
}

.sidebar-item.active {
    background: #f59e0b;
    color: #ffffff;
}

.sidebar-item span {
    display: block;
}

/* Products Display Area */
.products-display {
    flex: 1;
    margin-left: 300px;
    padding: 2rem;
    background: #ffffff;
    min-height: calc(100vh - 80px);
}

.display-header {
    margin-bottom: 2rem;
    text-align: center;
}

.display-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.display-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-image-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-image-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        padding: 1rem 0;
    }
    
    .products-display {
        margin-left: 0;
        padding: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .display-header h2 {
        font-size: 2rem;
    }
}

.products-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Products Sidebar */
.products-sidebar {
    background: #2c3e50;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.sidebar-header {
    background: #e74c3c;
    padding: 1.5rem;
    text-align: center;
}

.sidebar-header h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.category-list {
    padding: 0;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #34495e;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    background: #34495e;
    padding-left: 2rem;
}

.category-item.active {
    background: #e74c3c;
    padding-left: 2rem;
}

.category-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.category-item span {
    font-weight: 500;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.product-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(44, 62, 80, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-overlay .btn {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-overlay .btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image .placeholder-image {
    font-size: 4rem;
    color: #e74c3c;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: #e8f4fd;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.spec-item i {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

/* Product Specifications */
.product-specifications {
    background: #f8f9fa;
    padding: 60px 0;
}

.product-specifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.spec-category h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list i {
    color: #27ae60;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Product Comparison */
.product-comparison {
    padding: 60px 0;
}

.product-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Professional Image Suggestions - Vindhya Style */
.image-suggestions {
    padding: 60px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.image-suggestions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.5;
}

.image-suggestions h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.image-suggestions > p {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.suggestion-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.suggestion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggestion-card:hover::before {
    opacity: 0.05;
}

.suggestion-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.suggestion-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.suggestion-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.suggestion-card p {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.professional-tips {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.professional-tips h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tip-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-choose-text {
    padding-right: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.section-line {
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-right: 1rem;
}

.section-header h2 {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.why-choose-text h3 {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cta-section {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-section .btn {
    margin: 0 auto;
}

/* Why Choose Image */
.why-choose-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.elevator-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    min-height: 700px;
}

.elevator-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 6px solid #f59e0b;
    background: white;
    padding: 1.5rem;
    position: relative;
    height: 100%;
    min-height: 700px;
}

.elevator-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, #f59e0b, #d97706, #f59e0b);
    border-radius: 30px;
    z-index: -1;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.elevator-frame::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.8;
}

.elevator-display {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    border-radius: 15px;
}

.spotlight-effect {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 50%, transparent 80%);
    border-radius: 30px;
    z-index: -2;
    animation: spotlightPulse 4s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .why-choose-text {
        padding-right: 0;
    }
    
    .why-choose-text h3 {
        font-size: 2.5rem;
    }
    
    .elevator-showcase {
        max-width: 100%;
        min-height: 600px;
    }
    
    .elevator-frame {
        min-height: 600px;
    }
    
    .elevator-display {
        height: 100%;
        min-height: 600px;
    }
}

/* Enhanced Products Page Styling */

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Enhanced Sidebar */
.sidebar-header p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.category-item small {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.2rem;
}

.sidebar-features {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.sidebar-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-features ul {
    list-style: none;
    padding: 0;
}

.sidebar-features li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow-card);
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.product-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* New Products Page Design */
.products-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.products-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    animation-delay: -4s;
}

.floating-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.floating-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.floating-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Product Categories */
.product-categories {
    padding: 60px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.product-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
}

.product-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.product-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features span {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Product Specifications */
.product-specs {
    padding: 60px 0;
    background: white;
}

.specs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.specs-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.specs-header p {
    font-size: 1.2rem;
    color: #666;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.spec-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.spec-card li:last-child {
    border-bottom: none;
}

/* Why Choose Products */
.why-choose-products {
    padding: 60px 0;
    background: var(--gray-50);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section removed */

.btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Hero Background Suggestions */
.hero-background-suggestions {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.hero-background-suggestions h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.background-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.background-option {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.background-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.background-option h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.background-option p {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.priority-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.priority-tag.high {
    background: #e74c3c;
}

.priority-tag.medium {
    background: #f39c12;
}

.background-specs {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.background-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.3;
}

.background-specs h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.background-specs .cute-list {
    position: relative;
    z-index: 2;
}

.background-specs .cute-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0.5rem;
        margin: 0;
        max-width: 100%;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .brand-name {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 3rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-top: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-specs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .products-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-sidebar {
        position: static;
        order: 2;
    }
    
    .products-grid {
        order: 1;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .category-item {
        padding: 0.8rem 1rem;
    }
    
    .category-item:hover,
    .category-item.active {
        padding-left: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 2.5rem;
    }
    
    .about-text h4 {
        font-size: 1.3rem;
    }
    
    .elevator-shaft-image {
        height: 400px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Elevator Types Section Responsive */
    .elevator-types-section {
        padding: 3rem 0;
    }
    
    .elevator-types-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .elevator-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .elevator-type-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .elevator-type-card h3 {
        font-size: 1.3rem;
    }
    
    .elevator-type-card p {
        font-size: 0.9rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Styles */
.main-footer {
    background: #2d3748;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(160, 123, 77, 0.1), rgba(160, 123, 77, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Get In Touch Column */
.contact-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    color: #A07B4D;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.4;
}

/* Important Links Column */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.footer-links li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    font-size: 0.8rem;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #A07B4D;
}

/* Web Links Column */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-media {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-start;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #4a5568;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: #A07B4D;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: initial;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    position: relative;
    z-index: 2;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-powered {
    text-align: right;
}

.footer-legal {
    text-align: left;
}

.footer-bottom p a {
    color: #f59e0b;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: #d97706;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-column h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .contact-block {
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .contact-icon {
        flex-shrink: 0;
    }
    
    .contact-text {
        flex: 1;
        text-align: left;
    }
    
    .contact-label {
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .contact-value {
        display: block;
        line-height: 1.5;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-links li {
        text-align: left;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        display: inline-block;
        text-align: left;
    }
    
    .image-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .social-media {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-powered,
    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-column h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .contact-block {
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .contact-text {
        flex: 1;
        text-align: left;
    }
    
    .contact-label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .footer-links {
        text-align: left;
        padding-left: 0;
    }
    
    .footer-links li {
        text-align: left;
        margin-bottom: 0.8rem;
        padding-left: 1rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .social-media {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .contact-block {
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .contact-text {
        flex: 1;
        text-align: left;
    }
    
    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-links {
        text-align: left;
        padding-left: 0;
    }
    
    .footer-links li {
        text-align: left;
        margin-bottom: 0.8rem;
        padding-left: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .social-media {
        justify-content: flex-start;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 70vh;
    }
    
    .page-header {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .features h2,
    .services-preview h2,
    .service-types h2,
    .team-section h2,
    .certifications h2,
    .timeline-section h2,
    .map-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Product Categories Navigation */
.product-categories {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.product-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.category-tab {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 1.2rem 2.5rem;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}

.category-tab.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: #f59e0b;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    transform: translateY(-3px) scale(1.05);
    animation: activePulse 2s ease-in-out infinite;
}

.category-tab.active:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

@keyframes activePulse {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        transform: translateY(-3px) scale(1.05);
    }
    50% { 
        box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
        transform: translateY(-4px) scale(1.08);
    }
}

.category-tab.active::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

/* Dynamic Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(-12px) scale(1.03) rotateX(5deg); }
    50% { transform: translateY(-15px) scale(1.05) rotateX(3deg); }
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05);
}

.product-card:hover .product-image img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.1) saturate(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9) 0%, rgba(217, 119, 6, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-content {
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-radius: 0 0 25px 25px;
}

.product-content h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-content h3::after {
    opacity: 1;
}

.product-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.product-features span {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-features span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.5s;
}

.product-card:hover .product-features span::before {
    left: 100%;
}

.product-card:hover .product-features span {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    border-color: #f59e0b;
    transform: translateY(-2px);
}

.product-content .btn {
    width: 100%;
    padding: 1.2rem 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    border-radius: 35px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    font-size: 1rem;
}

.product-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-content .btn:hover::before {
    left: 100%;
}

.product-content .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    }
    50% { 
        box-shadow: 0 15px 45px rgba(245, 158, 11, 0.7);
    }
}

.product-content .btn i {
    transition: transform 0.3s ease;
}

.product-content .btn:hover i {
    transform: translateX(3px);
}

/* Animation for dynamic content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.6)); }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

.section-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

/* Floating Elements */
.products-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 30px 30px 0 0;
    margin-top: 2rem;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.products-section::after {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: sparkleFloat 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.6; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Staggered Animation for Product Cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

/* Responsive Design for Category Tabs */
@media (max-width: 768px) {
    .category-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Products Layout with Sidebar */
.products-layout {
    min-height: 100vh;
    background: #ffffff;
    padding-top: 80px; /* Account for navbar */
}

.products-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Left Sidebar */
.products-sidebar {
    width: 300px;
    background: #374151;
    padding: 0;
    position: fixed;
    left: 0;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 100;
    border-radius: 0;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
}

.sidebar-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    background: #f59e0b;
    border-bottom: none;
    margin-bottom: 0;
    text-align: center;
}

.sidebar-header h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-menu {
    padding: 0;
    background: #374151;
}

.sidebar-item {
    width: 100%;
    background: #4b5563;
    border: none;
    color: #ffffff;
    padding: 1rem 1.5rem;
    margin-bottom: 0;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.sidebar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.5s;
}

.sidebar-item:hover::before {
    left: 100%;
}

.sidebar-item:hover {
    background: #6b7280;
    transform: translateX(3px);
    color: #f59e0b;
}

.sidebar-item.active {
    background: #f59e0b;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.sidebar-item span {
    display: block;
    position: relative;
    z-index: 2;
}

/* Right Content Area */
.products-content {
    flex: 1;
    margin-left: 300px;
    padding: 2rem;
    background: #ffffff;
    min-height: calc(100vh - 80px);
    border-radius: 0;
    box-shadow: none;
}

.content-header {
    margin-bottom: 2rem;
    text-align: left;
}

.content-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
}

.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
    transform-style: preserve-3d;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.05);
    border-radius: 8px 8px 0 0;
}

.product-item:hover img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.image-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Sidebar Layout */
@media (max-width: 768px) {
    .products-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        padding: 0;
        border-radius: 0;
    }
    
    .products-content {
        margin-left: 0;
        padding: 1rem;
        border-radius: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: none;
    }
    
    .content-header h1 {
        font-size: 2rem;
    }
    
    .sidebar-menu {
        padding: 0;
    }
    
    .sidebar-item {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    align-content: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form-container,
.contact-info {
    align-self: start;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 2.5rem !important;
    vertical-align: top;
}

.contact-form-container {
    background: #ffffff;
    padding: 2.5rem;
    padding-top: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-top: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    flex: 1;
    justify-content: flex-start;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #1e293b);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 2rem 0;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #ef4444;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 2px;
}

.required-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin: -0.5rem 0 1.5rem 0;
    font-style: italic;
}

.required-note .required {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: #ffffff;
    padding: 2.5rem;
    padding-top: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-top: 0;
}

.contact-details {
    margin: 0;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    justify-content: flex-start;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e293b, #f59e0b);
}

.contact-info h2,
.contact-info h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 2rem 0;
    margin-top: 0;
    padding: 0;
    padding-top: 0;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.contact-details h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 2rem 0;
    margin-top: 0;
    padding: 0;
    padding-top: 0;
    margin-top: 0;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:last-child {
    background: #f8f9fa;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-item:last-child:hover {
    background: #f1f3f5;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 50%, #92400e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    position: relative;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-text h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

.contact-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    width: 100%;
}

.contact-text p a {
    color: #8b5cf6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-text p a:hover {
    color: #7c3aed;
}

.social-media-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.social-media-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #ffffff;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.social-link.facebook:hover { color: #1877f2; }
.social-link.linkedin:hover { color: #0077b5; }
.social-link.instagram:hover { color: #e4405f; }
.social-link.youtube:hover { color: #ff0000; }
.social-link.whatsapp:hover { color: #25d366; }

/* Map Section */
.map-section {
    padding: 2rem 0;
    background: #ffffff;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Map Overlay Button */
.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.get-directions-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: #ffffff;
    color: #1e293b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.get-directions-btn:hover {
    background: #f59e0b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.get-directions-btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Directions Section */
.directions-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.directions-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.location-info h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.location-info p {
    color: #64748b;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.location-info p i {
    color: #f59e0b;
    margin-right: 0.5rem;
    width: 20px;
}

.directions-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.directions-btn, .view-map-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.directions-btn {
    background: linear-gradient(135deg, #f59e0b, #1e293b);
    color: #ffffff;
    border: none;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #1e293b, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.view-map-btn {
    background: #ffffff;
    color: #1e293b;
    border: 2px solid #e5e7eb;
}

.view-map-btn:hover {
    background: #f8f9fa;
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.directions-btn i, .view-map-btn i {
    margin-right: 0.5rem;
}

/* Tablet View for Contact Page */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        padding: 2rem !important;
        display: grid !important;
    }
    
    .contact-form-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 2rem !important;
    }
    
    .contact-details {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-item {
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 1.25rem !important;
    }
    
    .contact-icon {
        width: 60px !important;
        height: 60px !important;
        margin-right: 1.25rem !important;
        flex-shrink: 0 !important;
    }
    
    .contact-text {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .contact-info h2,
    .contact-details h2 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-details {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .contact-item {
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 1.25rem !important;
    }
    
    .contact-icon {
        width: 60px !important;
        height: 60px !important;
        margin-right: 1.25rem !important;
        flex-shrink: 0 !important;
    }
    
    .contact-text {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .contact-info h2,
    .contact-details h2 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .map-container {
        margin: 0 1rem;
    }
    
    .directions-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .directions-actions {
        margin-top: 1rem;
    }
    
    .directions-section {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .map-overlay {
        top: 10px;
        right: 10px;
    }
    
    .get-directions-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Products Introduction */
.products-intro {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(1.05);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.product-content {
    padding: 2rem;
    text-align: center;
}

.product-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: #f59e0b;
}

.product-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    border-color: #f59e0b;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* VINDHYA ELEVATORS Design Elements */

/* Decorative Brackets */
.hero-text-container {
    position: relative;
}

.decorative-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--text-light);
    z-index: 1;
}

.decorative-bracket.top-left {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}

.decorative-bracket.bottom-right {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
}

/* Floating Icons */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-chat a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
}

.floating-chat i {
    font-size: 1.5rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite 1.5s;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

.floating-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.floating-scroll-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite 2s;
}

.floating-scroll-top:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(30, 41, 59, 0.6);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Fixed Header Overlay */
.fixed-header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: none;
}

.overlay-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.overlay-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1;
    letter-spacing: 2px;
    margin-top: 2px;
}

.overlay-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.overlay-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.overlay-nav-link:hover {
    color: var(--accent-color);
    background: rgba(251, 191, 36, 0.1);
}

.overlay-nav-link.active {
    background: var(--gradient-gold);
    color: var(--text-primary);
    font-weight: 600;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--gradient-gold);
    border-color: var(--text-light);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-content h1, .page-header h1, .section-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2, .page-header h2, .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h3, .page-header h3, .section-title h3 {
        font-size: 1.5rem;
    }
    
    .hero-content p, .page-header p, .section-content p, .about-content p, .service-description p {
        font-size: 1rem;
    }
    
    .btn, .btn-primary, .btn-secondary {
        font-size: 0.9rem;
    }
    
    .nav-link, .overlay-nav-link {
        font-size: 0.9rem;
    }
    
    .nav-logo h2, .logo-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1, .page-header h1, .section-title h1 {
        font-size: 2rem;
    }
    
    .hero-content h2, .page-header h2, .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h3, .page-header h3, .section-title h3 {
        font-size: 1.3rem;
    }
    
    .hero-content p, .page-header p, .section-content p, .about-content p, .service-description p {
        font-size: 0.95rem;
    }
}

/* Quote Page Styles */
.quote-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    contain: layout style;
    transform: translateZ(0);
    isolation: isolate;
}

.quote-info {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.quote-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.quote-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.quote-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.quote-header p {
    color: #6b7280;
    line-height: 1.6;
}

.quote-features {
    margin-top: 2rem;
}

.quote-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quote-features .feature-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.quote-features .feature-item i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.quote-form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    contain: none !important;
    transform: translateZ(0);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    transform: translateZ(0);
    contain: none !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    transform: translateZ(0);
    /* Create a containing block for the select */
    contain: layout style;
}

.form-group.custom-select-wrapper {
    overflow: visible !important;
    contain: none !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    contain: none !important;
    transform: translateZ(0); /* Force hardware acceleration and containment */
    z-index: 1;
}

/* Ensure form-row children stay within bounds */
.form-row .form-group {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
    position: relative;
    transform: translateZ(0);
    contain: none !important;
}

.form-row .form-group.custom-select-wrapper {
    overflow: visible !important;
    contain: none !important;
    position: relative;
    z-index: 1;
}

.form-row .form-group.custom-select-wrapper:has(.custom-select.open) {
    z-index: 10000;
}

/* Select wrapper to contain dropdowns */
.select-wrapper {
    position: relative;
    overflow: hidden;
    contain: layout style paint;
    isolation: isolate;
}

.select-wrapper select {
    position: relative;
    z-index: 1;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

/* Required field asterisk styling */
.form-group label .required-asterisk,
.custom-select-wrapper label .required-asterisk,
.checkbox-text .required-asterisk {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 0.25rem;
    line-height: 1;
}

/* Error message styling - Enhanced visibility */
.field-error {
    color: #ef4444 !important;
    font-size: 0.875rem !important;
    margin-top: 0.5rem !important;
    display: block !important;
    font-weight: 500 !important;
    animation: fadeIn 0.3s ease;
    padding-left: 0.25rem;
    line-height: 1.5;
}

/* Error message for custom selects - ensure it's visible */
.custom-select-wrapper .field-error {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    display: block !important;
}

/* Error message for checkbox groups */
.checkbox-group .field-error {
    margin-top: 0.5rem !important;
    margin-left: 0 !important;
    display: block !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure error states are visible */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    background-color: #fef2f2 !important;
}

.custom-select.error .custom-select-trigger {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    background-color: #fef2f2 !important;
}

.custom-select.error .custom-select-value {
    color: #ef4444 !important;
}

/* Checkbox error state */
.checkbox-container input[type="checkbox"]:required:not(:checked) + .custom-checkbox .checkmark {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.checkbox-container.error .checkmark {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f59e0b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    min-width: 0;
    /* Ensure dropdown stays within bounds */
    contain: layout style;
    transform: translateZ(0);
    /* Force the select to respect parent boundaries */
    left: 0;
    right: 0;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f59e0b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-group select option {
    padding: 0.75rem;
    background: #ffffff;
    color: #374151;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group select option:hover {
    background: #fef3e2;
    color: #1e293b;
}

.form-group select option:focus,
.form-group select option:checked,
.form-group select option[selected] {
    background: #f59e0b;
    color: #ffffff;
    font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Field Error Message Styling */
.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Select Error State */
.custom-select.error .custom-select-trigger {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.custom-select.error .custom-select-value {
    color: #ef4444;
}

.form-group select.error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-group select:not(.error):focus {
    border-color: #f59e0b !important;
}

/* Custom Select Dropdown - Matching Image Style */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 1;
    overflow: visible !important;
    contain: none !important;
}

.custom-select-wrapper:has(.custom-select.open) {
    z-index: 10000;
}

.custom-select {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 1;
    isolation: isolate;
}

.custom-select.open {
    z-index: 10000 !important;
    position: relative;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 2px solid #f59e0b;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.custom-select-trigger:hover {
    border-color: #d97706;
}

.custom-select-value {
    color: #374151;
    font-size: 1rem;
    font-weight: 400;
}

/* Placeholder styling for custom select values */
.custom-select-value.placeholder {
    color: #9ca3af !important;
    font-style: italic;
}

.custom-select-arrow {
    color: #f59e0b;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg) !important;
}

.custom-select.open .custom-select-trigger .custom-select-arrow {
    transform: rotate(180deg) !important;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #f59e0b;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    display: block !important;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}

.custom-select.open .custom-select-options {
    max-height: 400px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    display: block !important;
    pointer-events: auto !important;
}

/* Completely hide scrollbar but allow scrolling */
.custom-select-options::-webkit-scrollbar {
    width: 0px !important;
    display: none !important;
    background: transparent !important;
}

.custom-select-options::-webkit-scrollbar-track {
    display: none !important;
    background: transparent !important;
}

.custom-select-options::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
}

.custom-select-options {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.custom-select-option {
    padding: 0.75rem 1rem;
    color: #374151;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background-color: #fef3e2;
    color: #1e293b;
}

.custom-select-option.selected {
    background-color: #fef3e2;
    color: #1e293b;
    font-weight: 600;
}

.custom-select.error .custom-select-trigger {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.custom-select-wrapper input[type="hidden"] {
    display: none;
}

/* Responsive Styles for Custom Select Dropdown */
@media (max-width: 1024px) {
    .custom-select-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .custom-select {
        width: 100%;
        max-width: 100%;
    }
    
    .custom-select-trigger {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .custom-select-value {
        font-size: 0.95rem;
    }
    
    .custom-select-options {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
    
    .custom-select-option {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .custom-select-wrapper {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        position: relative;
    }
    
    .custom-select {
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .custom-select-trigger {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .custom-select-value {
        font-size: 0.95rem;
    }
    
    .custom-select-arrow {
        font-size: 0.8rem;
    }
    
    .custom-select-options {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        border-radius: 8px;
        max-height: 300px;
        position: absolute;
        z-index: 1000;
    }
    
    .custom-select.open .custom-select-options {
        max-height: 300px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .custom-select-option {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        -webkit-tap-highlight-color: rgba(245, 158, 11, 0.2);
        touch-action: manipulation;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .custom-select-trigger {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .custom-select-value {
        font-size: 0.9rem;
    }
    
    .custom-select-arrow {
        font-size: 0.75rem;
    }
    
    .custom-select-options {
        max-height: 250px;
        border-radius: 8px;
    }
    
    .custom-select.open .custom-select-options {
        max-height: 250px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .custom-select-option {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* Ensure dropdown doesn't overflow on any screen size */
.custom-select-wrapper {
    overflow: visible;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.25rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.custom-checkbox {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-text {
    flex: 1;
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
}

input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 1px;
}

input[type="checkbox"]:checked + .custom-checkbox .checkmark {
    background: #f59e0b;
    border-color: #f59e0b;
}

input[type="checkbox"]:checked + .custom-checkbox .checkmark::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

input[type="checkbox"]:checked + .custom-checkbox .checkmark::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.terms-link,
.privacy-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover,
.privacy-link:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.why-choose-quote {
    padding: 60px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.why-choose-quote .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-quote .section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-choose-quote .section-line {
    width: 40px;
    height: 2px;
    background: #F7931E;
    margin: 0 auto 15px auto;
    border-radius: 2px;
}

.why-choose-quote .section-header h3 {
    font-size: 1rem;
    color: #F7931E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.why-choose-quote .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    text-shadow: none;
    background: none;
    background-clip: initial;
    -webkit-background-clip: none;
    -webkit-text-fill-color: #000000;
}

.why-choose-quote .section-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #f59e0b;
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.feature-card .feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-info-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #ffffff;
}

.contact-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-method i {
    font-size: 1.5rem;
    color: #f59e0b;
    width: 50px;
    text-align: center;
}

.contact-method h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: #d1d5db;
    margin: 0;
}

.contact-info-image {
    text-align: center;
}

.contact-info-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Quote Page */
/* Tablet View */
@media (min-width: 769px) and (max-width: 1024px) {
    .quote-section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .quote-form-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        padding: 2.5rem 2rem;
        position: relative;
        contain: layout style;
    }
    
    .quote-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .form-row {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        contain: layout style;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        min-width: 0;
    }
    
    .form-group select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
        z-index: 100 !important;
        min-width: 0 !important;
        contain: layout style !important;
    }
    
    .form-group select option {
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 1024px) {
    .quote-section {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .quote-section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .quote-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        position: relative;
        contain: layout style;
    }
    
    .quote-form-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        position: relative;
        contain: layout style;
    }
    
    .quote-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        min-width: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    
    .form-group select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
        z-index: 100 !important;
        min-width: 0 !important;
        contain: layout style !important;
    }
    
    .form-group select option {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        box-sizing: border-box;
    }
    
    .form-row {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        contain: layout style;
    }
    
    .form-row .form-group {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .quote-section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
        box-sizing: border-box;
        position: relative;
        contain: layout style;
    }
    
    .quote-info {
        position: static;
        padding: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .quote-form-container {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        margin: 0;
        position: relative;
        contain: layout style;
    }
    
    .quote-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        overflow-x: hidden;
        min-width: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1rem;
        min-width: 0;
    }
    
    .form-group select {
        z-index: 101 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
        padding: 1rem !important;
        font-size: 0.95rem !important;
        min-width: 0 !important;
        contain: layout style !important;
    }
    
    .form-group select option {
        max-width: 100% !important;
        padding: 0.75rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 1.5rem;
        overflow-x: hidden;
        position: relative;
        contain: layout style;
    }
    
    .form-row .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
        overflow: hidden;
    }
    
    .contact-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-quote .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 3rem 0;
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .quote-section .container {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .quote-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        position: relative;
        contain: layout style;
    }
    
    .quote-info,
    .quote-form-container {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        margin: 0;
        position: relative;
        contain: layout style;
    }
    
    .quote-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        overflow-x: hidden;
        min-width: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.9rem !important;
        min-width: 0 !important;
    }
    
    .form-group select {
        z-index: 101 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
        font-size: 0.95rem !important;
        padding-right: 2.5rem !important;
        min-width: 0 !important;
        contain: layout style !important;
    }
    
    .form-group select option {
        max-width: 100% !important;
        padding: 0.75rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        font-size: 0.9rem !important;
    }
    
    .form-row {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 1rem;
    }
    
    .form-row .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .quote-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        overflow-x: hidden;
        position: relative;
        contain: layout style;
    }
    
    .form-row .form-group {
        min-width: 0;
        overflow: hidden;
    }
}

/* Desktop View - Ensure dropdowns stay within bounds */
@media (min-width: 1025px) {
    .quote-section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .quote-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    
    .quote-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        position: relative;
        contain: layout style;
    }
    
    .quote-form-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        contain: layout style;
    }
    
    .quote-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
    }
    
    .form-row {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        contain: layout style;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        position: relative;
        min-width: 0;
    }
    
    .form-row .form-group {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .form-group select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        min-width: 0;
        contain: layout style;
    }
    
    .form-group select option {
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
}

/* Hero Section with Blue Background */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(45, 55, 72, 0.8) 0%, rgba(26, 32, 44, 0.9) 100%),
        url('https://res.cloudinary.com/dmkufygnc/image/upload/v1761318540/c70c9814f1b2989260f8a1ed23b23c14_cpenjc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 4rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(45, 55, 72, 0.8) 70%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .hero-content {
    max-width: 750px;
    margin-left: 6%;
    margin-top: 0;
    padding-top: 3rem;
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.0;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    text-transform: none;
}

.hero-section h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    text-transform: none;
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    max-width: 100%;
}

.hero-section .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: flex-start;
}

/* Updated Hero Content for Blue Theme */
.hero-content h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-content h2 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    color: #f59e0b !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-content p {
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    opacity: 0.95 !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Update slide background overlay for blue theme */
.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 55, 72, 0.6);
    z-index: 1;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-section .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .hero-section .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-header {
        padding: 6rem 0 4rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
.hero-section {
    padding: 4rem 0 3rem 0;
}

/* Main Header */
.main-header {
    background: var(--nav-bg) !important;
    background-color: var(--nav-bg) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100vw;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    width: 100%;
    margin: 0;
    background: var(--nav-bg) !important;
    background-color: var(--nav-bg) !important;
    min-height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.logo-circle::before {
    content: '';
    width: 30px;
    height: 20px;
    background: white;
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid white;
}

.logo-circle .elevator-people {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.logo-circle .elevator-people::before,
.logo-circle .elevator-people::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    top: 2px;
}

.logo-circle .elevator-people::before {
    left: 4px;
}

.logo-circle .elevator-people::after {
    right: 4px;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Removed conflicting nav-link.active rule */

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: rgba(245, 158, 11, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
    border-color: rgba(245, 158, 11, 0.5);
}

.nav-phone i {
    font-size: 1rem;
    color: #f59e0b;
}

/* Removed duplicate - using main definition above */

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
    }
    
    .main-header {
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
        flex-direction: column !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 999 !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .nav-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
        width: 100% !important;
        text-align: left !important;
        padding: 1rem 1.5rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        background: var(--nav-bg) !important;
        background-color: var(--nav-bg) !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        list-style: none !important;
    }
    
    .nav-links li {
        margin: 0 !important;
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        list-style: none !important;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-link {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        padding: 0.75rem 1rem !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: var(--nav-link) !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
        box-sizing: border-box !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        margin: 0 !important;
    }
    
    .nav-link:hover {
        color: var(--text-light) !important;
        background: rgba(245, 158, 11, 0.1) !important;
        background-color: rgba(245, 158, 11, 0.1) !important;
    }
    
    .nav-link.active {
        color: var(--text-light) !important;
        background: rgba(245, 158, 11, 0.15) !important;
        background-color: rgba(245, 158, 11, 0.15) !important;
        font-weight: 700 !important;
    }
    
    .nav-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

/* Body padding for fixed header */
body {
    padding-top: 80px;
    margin: 0;
    background: #ffffff;
}

/* Ensure no white gaps in header */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Remove conflicting background rule */

.main-header .navbar {
    background: var(--nav-bg) !important;
    background-color: var(--nav-bg) !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Service Features Styling */
.service-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.feature-item.checked {
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item i {
    margin-right: 0.8rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

.feature-item.checked i {
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 0.8rem;
}

.feature-text {
    flex: 1;
}

.feature-item:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Services Statistics Section */
.services-stats {
    background: var(--bg-light);
    padding: 80px 0;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stats-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Services Process Section */
.services-process {
    padding: 80px 0;
    background: var(--bg-white);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #ff6b35 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
    box-shadow: var(--shadow-light);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #ff6b35 !important;
    border: 3px solid #ff6b35 !important;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: #ff6b35 !important;
    color: var(--text-light) !important;
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Call to Action Section */
.services-cta {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--accent-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta-buttons .btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Remove White Separators and Ensure Consistent Colors */
.main-header::after,
.navbar::after,
.nav-menu::after,
.nav-menu::before {
    display: none !important;
    content: none !important;
}

.main-header,
.navbar,
.nav-menu,
.nav-links {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Fix Header Display Issues */
.main-header {
    background: var(--nav-bg) !important;
    box-shadow: var(--shadow-medium);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 0;
    display: block !important;
    visibility: visible !important;
}

.navbar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background: var(--nav-bg) !important;
    visibility: visible !important;
}

.nav-menu {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
}

.nav-links {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    visibility: visible !important;
}

.nav-link {
    color: var(--nav-link) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
}

.nav-link:hover {
    color: var(--text-light) !important;
    background: rgba(245, 158, 11, 0.1);
}

.nav-link.active {
    color: var(--text-light) !important;
    background: rgba(245, 158, 11, 0.15);
}

.nav-contact {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    visibility: visible !important;
}

.contact-info {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    visibility: visible !important;
}

.contact-item {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    visibility: visible !important;
}

.contact-item:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: translateX(3px);
    color: #ffffff;
}

.contact-item i {
    color: var(--text-light);
    font-size: 1rem;
}

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        color: var(--nav-link) !important;
    }
    
    .nav-link:hover {
        color: var(--text-light) !important;
    }
    
    .nav-link.active {
        color: var(--text-light) !important;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .main-header {
        padding: 0.5rem 0;
    }
    
    .navbar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        color: var(--nav-link) !important;
    }
    
    .nav-link:hover {
        color: var(--text-light) !important;
    }
    
    .nav-link.active {
        color: var(--text-light) !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-block {
        justify-content: center;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-icon {
        color: #ff6b35 !important;
        border-color: #ff6b35 !important;
    }
    
    .step-number {
        background: #ff6b35 !important;
        color: var(--text-light) !important;
    }
    
    .process-step:hover .step-icon {
        background: #ff6b35 !important;
        color: var(--text-light) !important;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        text-align: center;
    }
    
    .step-icon {
        color: #ff6b35 !important;
        border-color: #ff6b35 !important;
    }
    
    .step-number {
        background: #ff6b35 !important;
        color: var(--text-light) !important;
    }
    
    .process-step:hover .step-icon {
        background: #ff6b35 !important;
        color: var(--text-light) !important;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        text-align: center;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        display: block;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        color: #f59e0b;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .contact-block {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .floating-whatsapp,
    .floating-chat,
    .floating-scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .service-icon {
        color: #f59e0b;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Process Steps - Match Desktop Colors on Mobile */
@media (max-width: 768px) {
    .step-icon {
        width: 60px !important;
        height: 60px !important;
        background: #f59e0b !important;
        border: 2px solid #f59e0b !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 20px !important;
    }
    
    .step-icon i {
        font-size: 1.5rem !important;
        color: #ffffff !important;
    }
    
    .step-number {
        font-size: 1.5rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        background: #f59e0b !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        top: -20px !important;
        right: 20px !important;
        z-index: 3 !important;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3) !important;
    }
}

@media (max-width: 640px) {
    .step-icon {
        width: 60px !important;
        height: 60px !important;
        background: #f59e0b !important;
        border: 2px solid #f59e0b !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 20px !important;
    }
    
    .step-icon i {
        font-size: 1.5rem !important;
        color: #ffffff !important;
    }
    
    .step-number {
        font-size: 1.5rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        background: #f59e0b !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        top: -20px !important;
        right: 20px !important;
        z-index: 3 !important;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3) !important;
    }
}

@media (max-width: 480px) {
    .step-icon {
        width: 60px !important;
        height: 60px !important;
        background: #f59e0b !important;
        border: 2px solid #f59e0b !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 20px !important;
    }
    
    .step-icon i {
        font-size: 1.5rem !important;
        color: #ffffff !important;
    }
    
    .step-number {
        font-size: 1.5rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        background: #f59e0b !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        top: -20px !important;
        right: 20px !important;
        z-index: 3 !important;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3) !important;
    }
}

/* Mobile and Tablet - Match Desktop Service Icon Colors */
@media (max-width: 768px) {
    .service-icon {
        color: #f59e0b !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-icon i {
        color: #f59e0b !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3rem !important;
    }
    
    .service-card:hover .service-icon {
        color: #1e293b !important;
    }
    
    .service-card:hover .service-icon i {
        color: #1e293b !important;
    }
}

@media (max-width: 640px) {
    .service-icon {
        color: #f59e0b !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-icon i {
        color: #f59e0b !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3.5rem !important;
    }
    
    .service-card:hover .service-icon {
        color: #1e293b !important;
    }
    
    .service-card:hover .service-icon i {
        color: #1e293b !important;
    }
}

@media (max-width: 480px) {
    .service-icon {
        color: #f59e0b !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-icon i {
        color: #f59e0b !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3.5rem !important;
    }
    
    .service-card:hover .service-icon {
        color: #1e293b !important;
    }
    
    .service-card:hover .service-icon i {
        color: #1e293b !important;
    }
}

@media (max-width: 360px) {
    .service-icon {
        color: #f59e0b !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-icon i {
        color: #f59e0b !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 3rem !important;
    }
    
    .service-card:hover .service-icon {
        color: #1e293b !important;
    }
    
    .service-card:hover .service-icon i {
        color: #1e293b !important;
    }
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-stats,
    .services-process,
    .services-cta {
        padding: 60px 0;
    }
    
    .stats-header h2,
    .process-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
.our-services-grid {
    padding: 60px 0;
    background: #ffffff;
}

/* Services Page Only - Remove Blue Circles from Checkmarks */
.our-services-grid .feature-item.checked {
    color: #1e293b !important;
    font-weight: 500 !important;
}

.our-services-grid .feature-item.checked i {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    color: #F7931E !important;
    width: auto !important;
    height: auto !important;
}

.our-services-grid .feature-item i {
    color: #F7931E !important;
}

/* Mobile - Remove Blue Circles */
@media (max-width: 768px) {
    .our-services-grid .feature-item.checked {
        color: #1e293b !important;
        font-weight: 500 !important;
    }
    
    .our-services-grid .feature-item.checked i {
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        color: #F7931E !important;
        width: auto !important;
        height: auto !important;
    }
    
    .our-services-grid .feature-item i {
        color: #F7931E !important;
        background: none !important;
        border: none !important;
    }
}

@media (max-width: 480px) {
    .our-services-grid .feature-item.checked {
        color: #1e293b !important;
        font-weight: 500 !important;
    }
    
    .our-services-grid .feature-item.checked i {
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        color: #F7931E !important;
        width: auto !important;
        height: auto !important;
    }
    
    .our-services-grid .feature-item i {
        color: #F7931E !important;
        background: none !important;
        border: none !important;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header-content {
    text-align: center;
}

.company-name-orange {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

.services-underline {
    width: 50px;
    height: 2px;
    background: #f59e0b;
    margin: 0 auto 20px auto;
    border-radius: 1px;
}

.services-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.services-description-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.service-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

.service-features .feature-item:last-child {
    margin-bottom: 0;
}

.service-features .feature-item i {
    color: #F7931E;
    margin-right: 0.75rem;
    font-size: 0.9rem;
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-main-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

.services-header-content {
    text-align: center;
}

.company-name-orange {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.services-description-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Removed duplicate styles - using the ones above */

/* Responsive Design */
@media (max-width: 768px) {
    .services-header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
}
    
    .hero-section .hero-content {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .page-header {
        padding: 4rem 0 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Updated Hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content h2 {
        font-size: 1.8rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
    }
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .products-intro {
        padding: 3rem 0;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
    
    .products-section {
        padding: 3rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-content h3 {
        font-size: 1.2rem;
    }
}

/* Hero Section Button Styles */
.hero-section .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.8rem 1.8rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3) !important;
}

.hero-section .btn-primary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4) !important;
}

.hero-section .btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.8rem 1.8rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3) !important;
}

.hero-section .btn-secondary:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4) !important;
}

/* Ensure no gap between header and hero section */
body {
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 80px !important;
}

main {
    margin: 0 !important;
    padding: 0 !important;
}

/* Products Page Responsive Design */
/* Products Page - Consistent Layout for All Devices */
@media (max-width: 1200px) {
    .tabs-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .col-md-3 {
        width: 100%;
        flex: none;
        max-width: 100%;
        order: 1;
    }
    
    .col-md-9 {
        width: 100%;
        flex: none;
        max-width: 100%;
        order: 2;
        margin-top: 1rem;
    }
    
    .row {
        display: flex;
        flex-direction: column;
    }
    
    .tab-head {
        display: flex !important;
        flex-direction: column;
        gap: 0.3rem;
        padding: 1rem;
        background: #374151;
        border-radius: 10px;
        margin-bottom: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .tab-head li {
        flex: none;
        min-width: auto;
        margin-bottom: 0;
        display: block !important;
        visibility: visible !important;
    }
    
    .tab-link {
        padding: 1rem;
        text-align: left;
        font-size: 0.9rem;
        background: #4b5563;
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block !important;
        text-decoration: none;
        color: #ffffff;
        font-weight: 500;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .tab-link:hover {
        background: #f59e0b;
        color: #ffffff;
    }
    
    .tab-link.active {
        background: #f59e0b;
        color: #ffffff;
    }
    
    .tab-icon {
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .product-grid-six {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
        margin-bottom: 1rem;
        min-height: auto;
    }
    
    .grid-item {
        width: 100%;
        height: auto;
        min-height: 200px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background: #ffffff;
        display: block;
    }
    
    .grid-item:empty {
        display: none;
    }
    
    .grid-image {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .grid-item img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 8px !important;
    }
    
    /* Hide content - only show images */
    .grid-info {
        display: none !important;
    }
    
    /* Force all images */
    .product img,
    .tab-body img,
    .grid-item img,
    .grid-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    
    /* Remove extra space when no images */
    .tab-body:empty,
    .product-grid-six:empty {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure proper spacing before footer */
    .main-footer {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .product {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    .tabs-wrapper {
        padding: 1rem;
    }
    
    .tabs-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .col-md-3 {
        width: 100%;
        flex: none;
        max-width: 100%;
        order: 1;
    }
    
    .col-md-9 {
        width: 100%;
        flex: none;
        max-width: 100%;
        order: 2;
        margin-top: 1rem;
    }
    
    .row {
        display: flex;
        flex-direction: column;
    }
    
    .tab-head {
        display: flex !important;
        flex-direction: column;
        gap: 0.3rem;
        padding: 1rem;
        background: #374151;
        border-radius: 10px;
        margin-bottom: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .tab-head li {
        flex: none;
        min-width: auto;
        margin-bottom: 0;
        display: block !important;
        visibility: visible !important;
    }
    
    .tab-link {
        padding: 1rem;
        text-align: left;
        font-size: 0.9rem;
        background: #4b5563;
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block !important;
        text-decoration: none;
        color: #ffffff;
        font-weight: 500;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .tab-link:hover {
        background: #f59e0b;
        color: #ffffff;
    }
    
    .tab-link.active {
        background: #f59e0b;
        color: #ffffff;
    }
    
    .tab-icon {
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .product-grid-six {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
        margin-bottom: 1rem;
        min-height: auto;
    }
    
    .grid-item {
        width: 100%;
        height: auto;
        min-height: 200px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background: #ffffff;
        display: block;
    }
    
    .grid-item:empty {
        display: none;
    }
    
    .grid-image {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .grid-item img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 8px !important;
    }
    
    /* Hide content - only show images */
    .grid-info {
        display: none !important;
    }
    
    /* Force all images in mobile view */
    .product img,
    .tab-body img,
    .grid-item img,
    .grid-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    
    /* Remove extra space when no images */
    .tab-body:empty,
    .product-grid-six:empty {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure proper spacing before footer */
    .main-footer {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .product {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    .tabs-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .col-md-3 {
        width: 100%;
        flex: none;
        max-width: 100%;
        order: 1;
    }
    
    .col-md-9 {
        width: 100%;
        flex: none;
        max-width: 100%;
        order: 2;
        margin-top: 1rem;
    }
    
    .row {
        display: flex;
        flex-direction: column;
    }
    
    .tab-head {
        display: flex !important;
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.8rem;
        background: #374151;
        border-radius: 10px;
        margin-bottom: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .tab-head li {
        flex: none;
        min-width: auto;
        display: block !important;
        visibility: visible !important;
    }
    
    .tab-link {
        padding: 0.8rem;
        text-align: left;
        font-size: 0.8rem;
        background: #4b5563;
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block !important;
        text-decoration: none;
        color: #ffffff;
        font-weight: 500;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .tab-link:hover {
        background: #f59e0b;
        color: #ffffff;
    }
    
    .tab-link.active {
        background: #f59e0b;
        color: #ffffff;
    }
    
    .tab-icon {
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .product-grid-six {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0;
        margin-bottom: 1rem;
        min-height: auto;
    }
    
    .grid-item {
        width: 100%;
        min-height: 180px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background: #ffffff;
        display: block;
    }
    
    .grid-item:empty {
        display: none;
    }
    
    .grid-image {
        height: 180px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .grid-item img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 8px !important;
    }
    
    /* Hide content - only show images */
    .grid-info {
        display: none !important;
    }
    
    /* Force all images in small mobile view */
    .product img,
    .tab-body img,
    .grid-item img,
    .grid-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }
    
    /* Remove extra space when no images */
    .tab-body:empty,
    .product-grid-six:empty {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ensure proper spacing before footer */
    .main-footer {
        margin-top: 2rem;
    }
}

.hero-section {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

/* Mobile & Tablet Only - Remove Extra Space Based on Actual Images */
@media (max-width: 1200px) {
    .product-grid-six {
        display: grid !important;
        grid-auto-rows: auto !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Remove fixed heights - let content determine height */
    .product-grid-six:has(.grid-item:only-child) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(3):last-child) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(5)) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Hide empty grid items completely */
    .product-grid-six .grid-item:empty,
    .product-grid-six .grid-item:not(:has(img)) {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Grid items should only be as tall as their content */
    .product-grid-six .grid-item {
        height: auto !important;
        min-height: 200px !important;
        max-height: none !important;
    }
    
    /* Ensure grid only shows actual content */
    .product-grid-six:empty {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Remove extra margin from tab-body */
    .tab-body {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    .product-grid-six {
        display: grid !important;
        grid-auto-rows: auto !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Remove fixed heights - let content determine height */
    .product-grid-six:has(.grid-item:only-child) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(3):last-child) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(5)) {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Hide empty grid items completely */
    .product-grid-six .grid-item:empty,
    .product-grid-six .grid-item:not(:has(img)) {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Grid items should only be as tall as their content */
    .product-grid-six .grid-item {
        height: auto !important;
        min-height: 200px !important;
        max-height: none !important;
    }
    
    /* Ensure grid only shows actual content */
    .product-grid-six:empty {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Remove extra margin from tab-body */
    .tab-body {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .product-grid-six {
        display: grid !important;
        grid-auto-rows: auto !important;
        gap: 0.8rem !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Remove fixed heights - let content determine height */
    .product-grid-six:has(.grid-item:only-child) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(2):last-child) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(3):last-child) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(4):last-child) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .product-grid-six:has(.grid-item:nth-child(5)) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Hide empty grid items completely */
    .product-grid-six .grid-item:empty,
    .product-grid-six .grid-item:not(:has(img)) {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Grid items should only be as tall as their content */
    .product-grid-six .grid-item {
        height: auto !important;
        min-height: 180px !important;
        max-height: none !important;
    }
    
    /* Ensure grid only shows actual content */
    .product-grid-six:empty {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Remove extra margin from tab-body */
    .tab-body {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Legal Content Pages - Card Design */
.legal-content {
    padding: 4rem 0;
    background: #f5f5f5;
    min-height: 60vh;
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-text {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 3.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.legal-text .last-updated {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.legal-text ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.legal-text li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.legal-text a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #d97706;
    text-decoration: underline;
}

.legal-text strong {
    color: #2d3748;
    font-weight: 600;
}

.legal-text hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.contact-info {
    background: #ffffff;
    border: 1px solid #fbbf24;
    border-left: 6px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.contact-company-name {
    margin-bottom: 1.5rem;
}

.contact-company-name strong {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: block;
    line-height: 1.2;
}

.contact-detail-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-detail-row:last-child {
    margin-bottom: 0;
}

.contact-detail-row i {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.1rem;
}

.contact-detail-row span {
    color: #2d3748;
    flex: 1;
    text-align: left;
    word-wrap: break-word;
}

.contact-detail-row a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-row a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* Contact Info Box - Simple Structure */
.contact-info-box {
    background: #ffffff;
    border: 1px solid #fbbf24;
    border-left: 6px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.contact-info-box p {
    margin: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2d3748;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box p strong {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
}

.contact-info-box p i {
    color: #f59e0b;
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 18px;
    display: inline-block;
}

.contact-info-box p a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box p a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* Responsive Design for Legal Content */
@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 0;
    }
    
    .legal-text {
        padding: 2rem 2rem;
        border-radius: 10px;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .legal-text p,
    .legal-text li {
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-company-name {
        margin-bottom: 1rem;
    }
    
    .contact-company-name strong {
        font-size: 1.1rem;
    }
    
    .contact-detail-row {
        margin-bottom: 0.875rem;
        font-size: 0.95rem;
    }
    
    .contact-detail-row i {
        font-size: 0.95rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .contact-info-box p {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .contact-info-box p strong {
        font-size: 1.1rem;
    }
    
    .contact-info-box p i {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 1.25rem;
        border-left-width: 4px;
    }
    
    .contact-company-name {
        margin-bottom: 0.875rem;
    }
    
    .contact-company-name strong {
        font-size: 1rem;
    }
    
    .contact-detail-row {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        gap: 0.625rem;
    }
    
    .contact-detail-row i {
        font-size: 0.9rem;
    }
    
    .contact-info-box {
        padding: 1.25rem;
        border-left-width: 4px;
    }
    
    .contact-info-box p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-info-box p strong {
        font-size: 1rem;
    }
    
    .contact-info-box p i {
        font-size: 0.9rem;
        margin-right: 0.625rem;
    }
    
    .legal-content {
        padding: 2rem 0;
    }
    
    .legal-content .container {
        padding: 0 15px;
    }
    
    .legal-text {
        padding: 1.5rem 1.5rem;
        border-radius: 8px;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
    
    .legal-text h3 {
        font-size: 1.1rem;
    }
    
    .legal-text p,
    .legal-text li {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .legal-text .last-updated {
        font-size: 0.85rem;
    }
}

/* Testimonials Section - Matching Image Design */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.testimonials-header h3 {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-slider-wrapper {
    position: relative;
    z-index: 1;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-slider-wrapper-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-slider-track {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out, transform 0.6s ease-in-out;
    pointer-events: none;
    transform: translateY(20px);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
    transform: translateY(0);
}

.testimonial-card-inner {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: none;
    border-top: 4px solid #fbbf24;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card.active .testimonial-card-inner {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.15);
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    opacity: 0.9;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 1rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    text-align: right;
}

.testimonial-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    z-index: 10;
}

.testimonial-nav-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.testimonial-nav-arrow:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.testimonial-nav-arrow:active {
    transform: translateY(0) scale(0.98);
}

.testimonial-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}


/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
    
    .testimonial-card-inner {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .testimonial-content {
        gap: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .testimonial-navigation {
        margin-top: 2rem;
    }
    
    .testimonial-nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-header {
        margin-bottom: 2.5rem;
    }
    
    .testimonials-header h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-card-inner {
        padding: 1.25rem;
        min-height: 160px;
        border-radius: 10px;
    }
    
    .testimonial-quote-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: 1rem;
        right: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-rating i {
        font-size: 0.8rem;
    }
    
    .testimonial-nav-arrow {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
}

/* Our Clients Section */
.clients-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-subtitle {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.clients-title {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
}

.clients-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.client-logo-image {
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-image img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo-image img {
    transform: scale(1.05);
}

.client-logo-name {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.clients-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    width: 10px;
    height: 10px;
    background: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

/* Responsive Design for Clients Section */
@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .clients-logos {
        gap: 2.5rem;
    }
    
    .client-logo-image {
        height: 50px;
    }
    
    .client-logo-image img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-title {
        font-size: 1.75rem;
    }
    
    .clients-logos {
        gap: 2rem;
        flex-direction: column;
    }
    
    .client-logo-item {
        width: 100%;
    }
}

/* Products page: remove white gap below product images on mobile/tablet */
@media (max-width: 1200px) {
    .product .product-grid-six .grid-item {
        min-height: 0 !important;
        height: auto !important;
        background: transparent !important;
    }

    .product .product-grid-six .grid-image,
    .product .product-grid-six .grid-item img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3;
        object-fit: cover !important;
    }
}

