/* =====================================================
   ASG Consultancy Services - Custom Styles
   ===================================================== */

:root {
    /* Color Palette - Derived from logo colors */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #ff6b35;
    --secondary-dark: #e55a2e;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =====================================================
   Base Styles & Typography
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Base mobile typography */
h1 { font-size: clamp(1.75rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* =====================================================
   Navigation
   ===================================================== */

#mainNav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

#mainNav.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    padding: 0.25rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 280px;
    margin-right: 10px;
    transition: var(--transition-smooth);
    object-fit: contain;
}

.brand-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.btn {
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.navbar-nav .nav-link.btn:hover {
    background: var(--secondary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white !important;
}

/* Services Dropdown Styles */
.dropdown:hover .services-dropdown,
.services-dropdown:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.services-dropdown {
    background: white;
    border: none !important;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    min-width: 380px;
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 0.5rem;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
}

.services-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.services-dropdown::-webkit-scrollbar {
    width: 6px;
}

.services-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.services-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.services-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.services-dropdown .dropdown-header {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    margin: 0 -1rem;
    border-left: 4px solid var(--primary-color);
}

.services-dropdown .dropdown-header-link {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    margin: 0 -1rem;
    border-left: 4px solid var(--primary-color);
    text-decoration: none;
}

.services-dropdown .dropdown-header-link:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-left-color: var(--secondary-color);
    padding-left: 1.5rem;
}

.services-dropdown .dropdown-subtitle {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.services-dropdown .dropdown-item {
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.services-dropdown .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 2rem;
}

.services-dropdown .dropdown-divider {
    margin: 1rem 0;
    border-color: var(--border-color);
}

/* Dropdown positioning */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .375rem;
}

.dropdown-menu.show {
    display: block;
}

/* Dropdown toggle arrow */
.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.15em;
    transition: var(--transition-smooth);
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Hover effect for dropdown link */
.dropdown .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Mobile dropdown adjustments */
@media (max-width: 991px) {
    .services-dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 10px !important;
        background: #f8f9fa !important;
        margin: 0.5rem 0 !important;
        padding: 1rem !important;
        max-height: 400px !important;
        overflow-y: auto !important;
        width: 100% !important;
    }
    
    .services-dropdown .dropdown-item {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
        border-radius: 8px !important;
        margin-bottom: 0.5rem !important;
        transition: all 0.3s ease !important;
        color: var(--text-dark) !important;
        font-weight: 500 !important;
    }
    
    .services-dropdown .dropdown-item:hover,
    .services-dropdown .dropdown-item:focus {
        background: rgba(255, 107, 53, 0.1) !important;
        color: #ff6b35 !important;
        transform: translateX(5px) !important;
        padding-left: 2rem !important;
    }
    
    .services-dropdown .dropdown-header-link {
        padding: 1rem 1.5rem !important;
        min-height: 55px !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        background: rgba(30, 58, 138, 0.1) !important;
        color: var(--primary-color) !important;
        margin-bottom: 1rem !important;
    }
    
    .services-dropdown .dropdown-header {
        font-weight: 700 !important;
        color: #ff6b35 !important;
        padding: 1rem 1.5rem 0.5rem !important;
        font-size: 1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .services-dropdown .dropdown-subtitle {
        font-size: 0.9rem !important;
        color: #6c757d !important;
        font-weight: 600 !important;
        padding: 0.5rem 1.5rem !important;
        margin-bottom: 0.5rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .services-dropdown .dropdown-divider {
        margin: 1rem 0 !important;
        opacity: 0.3 !important;
        border-top: 2px solid #dee2e6 !important;
    }
    
    .navbar-toggler {
        border: 2px solid white !important;
        padding: 0.5rem !important;
        border-radius: 8px !important;
        min-height: 48px !important;
        min-width: 48px !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
        outline: none !important;
    }
    
    .navbar-toggler-icon {
        background-size: 1.5rem 1.5rem !important;
    }
}

/* =====================================================
   Hero Section
   ===================================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    color: white;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-bounce);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Orange button styling for Get Started button */
.hero-buttons .btn[style*="background-color: #ff6b35"]:hover,
.hero-buttons .btn[style*="background-color: #ff6b35"]:focus,
.hero-buttons .btn[style*="background-color: #ff6b35"]:active {
    background-color: #e55a2e !important;
    color: white !important;
    border: none !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3) !important;
}

.hero-stats {
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* =====================================================
   Sections
   ===================================================== */

section {
    padding: var(--section-padding);
}

.bg-light {
    background: var(--bg-light) !important;
}

/* =====================================================
   Consulting Excellence Section
   ===================================================== */

.consulting-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.consulting-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.consulting-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 8px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.consulting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 58, 138, 0.95);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.overlay-content h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #ff6b35;
}

.overlay-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.overlay-content p {
    font-size: 12px;
    margin: 0;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.consulting-content {
    padding-left: 2rem;
}

.consulting-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.consulting-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.experience-badge {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.experience-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.experience-plus {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: 700;
    margin-left: 5px;
    margin-top: 5px;
}

.experience-text {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    margin-top: 1rem;
}

.years-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1;
}

.experience-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
}

.services-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.services-list li i {
    color: #ff6b35;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.btn-explore {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-explore:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .consulting-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .consulting-title {
        font-size: 2rem;
    }
    
    .consulting-image {
        width: 320px;
        height: 320px;
    }
    
    .experience-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .consulting-image {
        width: 280px;
        height: 280px;
    }
    
    .consulting-title {
        font-size: 1.75rem;
    }
    
    .overlay-content {
        padding: 15px;
    }
    
    .overlay-content h2 {
        font-size: 24px;
    }
}

/* =====================================================
   About Strategy Section
   ===================================================== */

.about-strategy-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.welcome-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.strategy-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.strategy-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
}

.call-us-section {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.call-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.call-icon i {
    color: white;
    font-size: 1.5rem;
}

.call-content .call-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.satisfaction-meter h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-bar {
    background: #e9ecef;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, var(--primary-color), #ff6b35);
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 2s ease-in-out;
}

.percentage {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.about-image-section img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

/* =====================================================
   Excellence Section
   ===================================================== */

.excellence-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.excellence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
}

.leadership-image {
    position: relative;
    z-index: 2;
}

.founders-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ff6b35;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.founders-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.excellence-content {
    position: relative;
    z-index: 2;
}

.excellence-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.excellence-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.statistics-grid {
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.info-grid {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-grid .info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-grid .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-grid .info-item strong {
    color: #ff6b35;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .strategy-title,
    .excellence-title {
        font-size: 2rem;
    }
    
    .founders-photo {
        width: 280px;
        height: 280px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .strategy-title,
    .excellence-title {
        font-size: 1.75rem;
    }
    
    .founders-photo {
        width: 250px;
        height: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .call-us-section {
        flex-direction: column;
        text-align: center;
    }
    
    .call-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* =====================================================
   Why Choose Us Section
   ===================================================== */

#why-choose {
    background: #f8f9fa;
    padding: 80px 0;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.why-choose-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.why-choose-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.why-choose-carousel-container {
    position: relative;
    padding: 2rem 0;
}

.why-choose-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    z-index: 1;
}

.why-choose-card > * {
    position: relative;
    z-index: 2;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: #ff6b35;
}

.why-choose-card:hover .card-icon {
    background: #ff6b35;
    transform: scale(1.1);
}

.why-choose-card:hover .card-icon i {
    color: white;
}

.why-choose-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.2rem;
    color: white;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .why-choose-card {
        height: auto;
        min-height: 280px;
        margin-bottom: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .why-choose-title {
        font-size: 1.5rem;
    }
    
    .why-choose-card {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
}

/* =====================================================
   Service Cards
   ===================================================== */

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #fbbf24);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* =====================================================
   Industry Cards
   ===================================================== */

.industry-card {
    background: var(--bg-white);
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid var(--border-color);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-smooth);
}

.industry-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, 0.2);
}

.industry-card:hover .industry-icon i {
    color: white;
}

.industry-card h5 {
    margin: 0;
    font-weight: 600;
}

/* =====================================================
   Clients Section - Platinum Style
   ===================================================== */

.clients-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffa500);
    border-radius: 2px;
}

.clients-scrolling-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 2rem 0;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.clients-scroll-track {
    display: flex;
    align-items: center;
    animation: scroll-right-to-left 30s linear infinite;
    width: max-content;
}

.client-logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    margin: 0 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-logo-item:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
    border: 2px solid #ff6b35;
}

.client-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.client-logo-item:hover .client-logo-img {
    opacity: 1;
    transform: scale(1.2);
}

/* Scrolling Animation */
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.clients-scrolling-container:hover .clients-scroll-track {
    animation-play-state: paused;
}

/* Alternative scrolling speeds for variety */
.clients-scroll-track {
    animation-duration: 40s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clients-title {
        font-size: 2rem;
    }
    
    .client-logo-item {
        width: 150px;
        height: 100px;
        margin: 0 20px;
        padding: 15px;
    }
    
    .client-logo-img {
        max-height: 60px;
    }
    
    .clients-scroll-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 1.75rem;
    }
    
    .client-logo-item {
        width: 120px;
        height: 80px;
        margin: 0 15px;
        padding: 10px;
    }
    
    .client-logo-img {
        max-height: 50px;
    }
}

/* =====================================================
   Testimonials Section - Horizontal Scrolling
   ===================================================== */

.testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 0 80px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.testimonials-scrolling-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 2rem 0;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.testimonials-scroll-track {
    display: flex;
    align-items: stretch;
    animation: scroll-testimonials 40s linear infinite;
    width: max-content;
    gap: 30px;
}

.testimonial-card-item {
    flex-shrink: 0;
    width: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-info h5 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Navigation buttons */
.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.testimonial-nav-btn:hover {
    background: #ff6b35;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Scrolling Animation */
@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-scrolling-container:hover .testimonials-scroll-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card-item {
        width: 320px;
        padding: 2rem;
    }
    
    .testimonials-scroll-track {
        animation-duration: 30s;
        gap: 20px;
    }
    
    .testimonial-nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card-item {
        width: 280px;
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
}

/* =====================================================
   FAQ and Contact Section
   ===================================================== */

.faq-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.faq-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff6b35" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

.faq-container,
.contact-form-container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* FAQ Styling */
.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
}

.faq-question.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    color: white;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.faq-question h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question.active h5 {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--bg-white);
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    padding-top: 1rem;
}

/* Modern Contact Form Styling */
.modern-contact-form {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8c5a 50%, var(--primary-color) 100%);
}

.form-group {
    margin-bottom: 2rem;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-bottom-color: var(--primary-color);
}

.form-input:focus + .form-label,
.form-input:valid + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -8px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8c5a 100%);
    transition: width 0.3s ease;
}

.form-input:focus ~ .form-underline {
    width: 100%;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 1.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Form Status Messages */
.form-status {
    margin-top: 1.5rem;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.loading {
    background: #e2f3ff;
    color: #0066cc;
    border: 1px solid #b8daff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Submit Button Loading State */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.submit-btn.loading .btn-text {
    opacity: 0.7;
}

.submit-btn.loading .btn-icon i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Headers */
.faq-contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.faq-contact-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-contact-section .row {
        flex-direction: column-reverse;
    }
    
    .faq-contact-section .section-title {
        font-size: 2rem;
    }
    
    .modern-contact-form {
        padding: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .faq-contact-section .section-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer.active {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .modern-contact-form {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-contact-section .section-title {
        font-size: 1.5rem;
    }
    
    .faq-question h5 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer.active {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .modern-contact-form {
        padding: 1.25rem;
    }
}

/* =====================================================
   New Services Section - Ealkay Style
   ===================================================== */

.services-new-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff6b35" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

/* Section Header */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-badge i {
    font-size: 0.8rem;
}

.section-title-new {
    font-size: 3rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 2rem;
    position: relative;
}

.section-header-right {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 2rem;
}

.btn-all-services {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-all-services:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Left Side Image */
.services-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.services-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-image-container:hover .services-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    min-height: 380px;
    width: 100%;
}

/* Service Card Animation on Load */
.service-card-new {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 1;
    transform: translateY(0);
}

.service-card-new:nth-child(1) { animation-delay: 0.1s; }
.service-card-new:nth-child(2) { animation-delay: 0.2s; }
.service-card-new:nth-child(3) { animation-delay: 0.3s; }
.service-card-new:nth-child(4) { animation-delay: 0.4s; }
.service-card-new:nth-child(5) { animation-delay: 0.5s; }
.service-card-new:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Cards */
.service-card-new {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #2d3748 100%);
    border-radius: 12px;
    padding: 1.2rem;
    color: white;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: center;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

.service-card-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-icon-new {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.service-icon-new i {
    font-size: 1.2rem;
    color: white;
}

.service-title-new {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: white;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.service-description {
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 1;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hover Background Images */
.service-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-hover-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8) 0%, rgba(27, 38, 59, 0.8) 50%, rgba(45, 55, 72, 0.8) 100%);
    transition: all 0.3s ease;
}

/* Enhanced text visibility overlay */
.service-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(13, 27, 42, 0.4) 0%, 
        rgba(27, 38, 59, 0.3) 50%, 
        rgba(45, 55, 72, 0.4) 100%);
    z-index: 2;
    opacity: 1;
    transition: all 0.3s ease;
}

.service-card-new:hover::after {
    background: linear-gradient(135deg, 
        rgba(13, 27, 42, 0.6) 0%, 
        rgba(27, 38, 59, 0.5) 50%, 
        rgba(45, 55, 72, 0.6) 100%);
}

/* Enhanced Hover Effects */
.service-card-new:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.3), 0 0 0 1px var(--secondary-color);
    border-color: var(--secondary-color);
    z-index: 10;
}

.service-card-new:hover .service-hover-bg {
    opacity: 1;
}

.service-card-new:hover .service-icon-new {
    background: var(--secondary-color);
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card-new:hover .service-title-new {
    color: white;
    font-size: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.2rem;
}

.service-card-new:hover .service-description {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title-new {
        font-size: 2.5rem;
    }
    
    .services-grid {
        height: auto;
    }
    
    .section-header-right {
        position: static;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 992px) {
    .services-new-section .row {
        flex-direction: column-reverse;
    }
    
    .services-image-container {
        height: 350px;
        margin-top: 3rem;
    }
    
    .services-main-image {
        object-position: center top;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto;
    }
    
    .service-card-new {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title-new {
        font-size: 2rem;
    }
    
    .services-image-container {
        height: 300px;
    }
    
    .services-main-image {
        object-position: center top;
    }
    
    .service-card-new {
        padding: 1.5rem;
    }
    
    .service-card-new:hover {
        transform: translateY(-10px) scale(1.05);
    }
    
    .service-icon-new {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .service-icon-new i {
        font-size: 1.3rem;
    }
    
    .service-title-new {
        font-size: 1rem;
    }
    
    .service-card-new:hover .service-title-new {
        font-size: 1.15rem;
    }
    
    .service-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .service-card-new:hover .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .section-title-new {
        font-size: 1.75rem;
    }
    
    .btn-all-services {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .services-image-container {
        height: 280px;
    }
    
    .services-main-image {
        object-position: center top;
    }
    
    .service-card-new {
        padding: 1.25rem;
    }
    
    .service-card-new:hover {
        transform: translateY(-8px) scale(1.04);
    }
    
    .service-title-new {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card-new:hover .service-title-new {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .service-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .service-card-new:hover .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-icon-new {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-new i {
        font-size: 1.2rem;
    }
    
    .service-card-new {
        padding: 1rem;
    }
    
    .service-title-new {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.75rem;
    }
}

/* =====================================================
   Additional Service Card Enhancements
   ===================================================== */

/* Add subtle animation to cards */
.service-card-new {
    animation: subtle-float 6s ease-in-out infinite;
}

.service-card-new:nth-child(2) {
    animation-delay: -2s;
}

.service-card-new:nth-child(3) {
    animation-delay: -4s;
}

@keyframes subtle-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Enhanced focus states for accessibility */
.service-card-new:focus,
.service-card-new:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
    transform: translateY(-12px) scale(1.06);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card-new:hover {
        transform: translateY(-8px) scale(1.04);
    }
    
    .service-card-new:active {
        transform: translateY(-5px) scale(1.02);
        transition: all 0.2s ease;
    }
}

/* Better text contrast on smaller screens */
@media (max-width: 576px) {
    .service-card-new::after {
        background: linear-gradient(135deg, 
            rgba(13, 27, 42, 0.6) 0%, 
            rgba(27, 38, 59, 0.5) 50%, 
            rgba(45, 55, 72, 0.6) 100%);
    }
    
    .service-title-new,
    .service-description {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* =====================================================
   Location Map Section
   ===================================================== */

.location-section {
    background: var(--bg-light);
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.2);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(255, 107, 53, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-content {
    text-align: center;
    color: white;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.map-icon i {
    font-size: 2rem;
    color: white;
}

.map-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.map-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Address Card */
.address-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.address-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.address-icon i {
    font-size: 1.8rem;
    color: white;
}

.address-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.address-details {
    margin-bottom: 2rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.address-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.address-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.address-text {
    flex: 1;
    line-height: 1.6;
}

.address-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.address-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-text a:hover {
    color: var(--secondary-color);
}

/* Directions Button */
.btn-directions {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-directions:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-directions i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .address-card {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .address-card {
        padding: 1.5rem;
    }
    
    .address-item {
        padding: 0.8rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .address-icon {
        width: 60px;
        height: 60px;
    }
    
    .address-icon i {
        font-size: 1.5rem;
    }
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
    .service-card-new {
        animation: none;
    }
}

/* =====================================================
   Industries We Serve Section - Ealkay Style
   ===================================================== */

.industries-new-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.industries-new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

.industries-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
}

.industries-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.industry-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.industry-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.industry-card-new:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2d3748 100%);
    color: white;
    padding: 2rem;
    position: relative;
}

.industry-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

.industry-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.industry-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industries-title {
        font-size: 2.5rem;
    }
    
    .industries-grid {
        gap: 1.5rem;
    }
    
    .industry-content {
        padding: 1.75rem;
    }
    
    .industry-content h4 {
        font-size: 1.25rem;
    }
    
    .industry-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industries-title {
        font-size: 2.25rem;
    }
    
    .industries-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 3rem;
    }
    
    .industries-title {
        font-size: 2rem;
    }
    
    .industry-image {
        height: 200px;
    }
    
    .industry-content {
        padding: 1.5rem;
    }
    
    .industry-content h4 {
        font-size: 1.15rem;
    }
    
    .industry-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .industries-title {
        font-size: 1.75rem;
    }
    
    .industries-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .industry-image {
        height: 180px;
    }
    
    .industry-content {
        padding: 1.25rem;
    }
    
    .industry-content h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .industry-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .industries-grid {
        margin-top: 2rem;
    }
}

/* =====================================================
   Contact Cards Section
   ===================================================== */

.contact-cards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff6b35" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

.contact-card-new {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-card-new:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-card-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-card-new:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-card-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-card-action {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-card-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-card-new:hover .contact-card-link {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-card-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Special styling for WhatsApp card */
.contact-card-new:nth-child(3) .contact-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card-new:nth-child(3):hover .contact-card-icon {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.contact-card-new:nth-child(3) .contact-card-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-card-new:nth-child(3):hover .contact-card-link {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-card-new {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .contact-card-icon i {
        font-size: 1.75rem;
    }
    
    .contact-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .contact-cards-section .row {
        justify-content: center;
    }
    
    .contact-cards-section .col-lg-4 {
        max-width: 400px;
    }
    
    .contact-card-new {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-card-icon {
        width: 65px;
        height: 65px;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card-title {
        font-size: 1.2rem;
    }
    
    .contact-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-card-new {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-card-icon i {
        font-size: 1.3rem;
    }
    
    .contact-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-card-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .contact-card-note {
        font-size: 0.8rem;
    }
}

/* =====================================================
   Blog Cards
   ===================================================== */

.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-meta .date {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.blog-meta .category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.blog-content h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* =====================================================
   FAQ Section
   ===================================================== */

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-light);
    color: var(--text-light);
}

/* =====================================================
   Contact Section
   ===================================================== */

.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 3rem;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.contact-info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* =====================================================
   Footer - Dark Blue Theme
   ===================================================== */

.footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Sections */
.footer-section {
    height: 100%;
}

.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* About Us Section */
.footer-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: var(--secondary-color);
}

/* Contact Information */
.footer-contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    margin: 2rem 0 1.5rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-gst {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-description p,
    .footer-links a,
    .contact-item a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description p {
        margin-bottom: 1rem;
    }
    
    .footer-address p {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 0.75rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
    }
    
    .footer-copyright,
    .footer-gst {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 0.95rem;
    }
    
    .footer-description p,
    .footer-address p,
    .footer-links a,
    .contact-item a {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-copyright,
    .footer-gst {
        font-size: 0.75rem;
    }
}

/* =====================================================
   Back to Top Button
   ===================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =====================================================
   Button Styles
   ===================================================== */

.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .feature-card,
    .service-card,
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .navbar-nav .nav-link.btn {
        margin-top: 1rem;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 80px;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .stat-item h3 {
        font-size: var(--font-size-2xl);
    }
    
    .feature-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
    }
}

/* =====================================================
   Animation Enhancements
   ===================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* =====================================================
   Utility Classes
   ===================================================== */

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-medium);
}

.rounded-custom {
    border-radius: 15px;
}

/* =====================================================
   Loading States & Transitions
   ===================================================== */

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* =====================================================
   Print Styles
   ===================================================== */

/* =====================================================
   Section Divider
   ===================================================== */

.section-divider {
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .section-divider {
        height: 60px;
    }
    
    .section-divider::before {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .section-divider {
        height: 40px;
    }
    
    .section-divider::before {
        width: 60px;
    }
    
    .section-divider::after {
        width: 4px;
        height: 4px;
    }
}

/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ===================================================== */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Large Devices (992px to 1199px) - Tablets Landscape */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-card-new {
        padding: 1.8rem;
    }
    
    .service-icon-new {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Medium Devices (768px to 991px) - Tablets Portrait */
@media (max-width: 991px) {
    /* Navigation Improvements */
    .navbar-brand .brand-text {
        font-size: 1.3rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        margin: 0.5rem;
        padding: 12px 24px;
    }
    
    /* Service Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-new {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    /* About Section */
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Stats Adjustments */
    .hero-stats .row > div {
        margin-bottom: 1rem;
    }
}

/* Small Devices (576px to 767px) - Mobile Landscape */
@media (max-width: 767px) {
    /* Typography Mobile */
    h1, .display-4 {
        font-size: 2rem;
    }
    
    h2, .display-5 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand img.logo {
        height: 40px;
        max-width: 220px;
        width: auto;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }
    
    /* Service Cards Mobile */
    .service-card-new {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon-new {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    /* Content Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-links {
        columns: 1;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
}

/* Extra Small Devices (up to 575px) - Mobile Portrait */
@media (max-width: 575px) {
    /* Base Layout */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Typography Extra Small */
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Navigation Extra Small */
    .navbar-brand img.logo {
        height: 35px;
        max-width: 200px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Service Cards Extra Small */
    .service-card-new {
        padding: 1.2rem;
    }
    
    .service-card-new h4 {
        font-size: 1.1rem;
    }
    
    .service-card-new p {
        font-size: 0.9rem;
    }
    
    /* Content Spacing */
    section {
        padding: 40px 0;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Cards and Components */
    .card, .service-card-new {
        border-radius: 15px;
    }
    
    /* Form Elements Mobile */
    .form-control {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .service-card-new:hover,
    .service-card-hr:hover,
    .process-step:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .btn, .nav-link, .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better touch feedback */
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .nav-link:active,
    .dropdown-item:active {
        background-color: rgba(102, 126, 234, 0.1);
    }
}

/* Landscape Mobile Specific */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* High DPI / Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo, .service-icon-new, .service-icon-hr {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility Improvements for Mobile */
@media (max-width: 768px) {
    /* Larger focus indicators */
    .btn:focus,
    .nav-link:focus,
    .form-input:focus {
        outline: 3px solid rgba(102, 126, 234, 0.5);
        outline-offset: 2px;
    }
    
    /* Better contrast for small screens */
    .text-muted {
        color: #495057 !important;
    }
    
    /* Ensure readable font sizes */
    small, .small {
        font-size: 0.875rem !important;
    }
}

/* HR Services Page Mobile Responsiveness */
@media (max-width: 991px) {
    .hr-hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .service-card-hr {
        margin-bottom: 2rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-item-hr {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hr-hero-section .col-lg-6:last-child {
        margin-top: 2rem;
    }
    
    .service-card-hr {
        padding: 2rem 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .benefits-section .col-lg-6:last-child {
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .hr-hero-section {
        padding: 60px 0 40px;
    }
    
    .service-card-hr {
        padding: 1.5rem;
    }
    
    .service-icon-hr {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   ===================================================== */

/* Override existing mobile styles with better responsiveness */
@media (max-width: 991px) {
    /* Navigation Mobile Improvements */
    .navbar {
        padding: 1rem 0 !important;
    }
    
    .navbar-brand img {
        height: 45px !important;
    }
    
    .navbar-toggler {
        border: 2px solid white !important;
        padding: 0.5rem !important;
        border-radius: 8px !important;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        margin-top: 1rem !important;
        border-radius: 15px !important;
        padding: 1.5rem !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.1rem !important;
        padding: 1rem 1.5rem !important;
        color: var(--text-dark) !important;
        font-weight: 600 !important;
        border-bottom: 1px solid #e9ecef !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--bg-light) !important;
        border-radius: 10px !important;
    }
    
    .navbar-nav .btn-primary {
        margin-top: 1rem !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 25px !important;
        padding: 1rem !important;
        border-bottom: none !important;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh !important;
        padding: 120px 0 80px !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        font-weight: 700 !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2.5rem !important;
        max-width: 100% !important;
    }
    
    .hero-buttons {
        margin-bottom: 3rem !important;
    }
    
    .hero-buttons .btn {
        display: block !important;
        width: 100% !important;
        margin: 0.75rem 0 !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        min-height: 55px !important;
    }
    
    /* Stats Mobile */
    .hero-stats {
        margin-top: 3rem !important;
    }
    
    .stat-item {
        text-align: center !important;
        padding: 1.5rem 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .stat-item h3 {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-item p {
        font-size: 1rem !important;
    }
}

@media (max-width: 767px) {
    /* Container Mobile */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Navigation Extra Mobile */
    .navbar-brand img {
        height: 40px !important;
    }
    
    .navbar-toggler {
        font-size: 1.8rem !important;
    }
    
    /* Hero Section Small Mobile */
    .hero-section {
        padding: 100px 0 60px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
    }
    
    .hero-buttons .btn {
        font-size: 1rem !important;
        padding: 0.875rem 1.5rem !important;
        min-height: 50px !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
    }
    
    .stat-item p {
        font-size: 0.9rem !important;
    }
    
    /* Content Sections Mobile */
    .consulting-section,
    .about-strategy-section,
    .services-section,
    section {
        padding: 50px 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .consulting-title,
    .about-title {
        font-size: 1.6rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Text Content */
    p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        text-align: center !important;
    }
    
    /* Buttons */
    .btn-explore,
    .btn {
        width: 100% !important;
        text-align: center !important;
        margin: 1rem 0 !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 50px !important;
    }
    
    /* Images */
    .consulting-image-wrapper,
    .about-image-wrapper {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .consulting-image img,
    .about-image img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 15px !important;
    }
    
    /* Service Cards Mobile */
    .service-card,
    .service-card-new {
        margin-bottom: 2rem !important;
        padding: 2rem 1.5rem !important;
        border-radius: 15px !important;
    }
    
    .service-card h3,
    .service-card-new h3 {
        font-size: 1.3rem !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .service-card ul li,
    .service-card-new ul li {
        font-size: 0.95rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .service-icon-new {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 1rem !important;
        font-size: 1.5rem !important;
    }
    
    /* Client Portfolio Mobile */
    .client-logo img {
        max-width: 120px !important;
        height: auto !important;
        margin: 0.5rem !important;
    }
    
    .portfolio-grid {
        gap: 1rem !important;
    }
    
    .portfolio-item {
        margin-bottom: 1.5rem !important;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 2rem !important;
        text-align: center !important;
    }
    
    .footer h5 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer p,
    .footer a {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .footer .row > div {
        margin-bottom: 2rem !important;
    }
    
    /* FAQ Section Mobile */
    .faq-question {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
        border-radius: 10px !important;
    }
    
    .faq-question h5 {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
    }
    
    .faq-answer p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }
    
    /* Back to Top Button Mobile */
    .back-to-top {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    /* Services List */
    .services-list li {
        font-size: 1rem !important;
        padding: 1rem 0 !important;
        text-align: left !important;
    }
    
    /* Experience Badge */
    .experience-badge {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .experience-number {
        font-size: 3rem !important;
    }
    
    /* Contact Form */
    .modern-contact-form {
        padding: 2rem 1.5rem !important;
        border-radius: 15px !important;
        margin-bottom: 2rem !important;
    }
    
    .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .form-input,
    .form-control {
        padding: 1rem !important;
        font-size: 1rem !important;
        min-height: 55px !important;
        border-radius: 10px !important;
        border: 2px solid #e9ecef !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
    }
    
    .form-input:focus,
    .form-control:focus {
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1) !important;
        outline: none !important;
    }
    
    textarea.form-control,
    textarea.form-input {
        min-height: 120px !important;
        resize: vertical !important;
    }
    
    .submit-btn {
        width: 100% !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        min-height: 55px !important;
        border-radius: 10px !important;
        background: var(--primary-color) !important;
        border: none !important;
        color: white !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    
    .submit-btn:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3) !important;
    }
    
    .form-status {
        padding: 1rem !important;
        border-radius: 10px !important;
        margin-top: 1rem !important;
        font-size: 1rem !important;
        text-align: center !important;
        font-weight: 500 !important;
    }
}

@media (max-width: 575px) {
    /* Extra Small Mobile */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.4 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .hero-buttons .btn {
        font-size: 0.95rem !important;
        padding: 0.75rem 1.25rem !important;
        min-height: 48px !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .consulting-title,
    .about-title {
        font-size: 1.4rem !important;
    }
    
    .stat-item h3 {
        font-size: 1.8rem !important;
    }
    
    .stat-item p {
        font-size: 0.85rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
    }
    
    .experience-number {
        font-size: 2.5rem !important;
    }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons .btn {
        display: inline-block !important;
        width: auto !important;
        margin: 0.5rem 0.5rem !important;
        min-width: 140px !important;
    }
    
    .hero-stats {
        margin-top: 2rem !important;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets */
    .btn, .nav-link, .dropdown-item {
        min-height: 48px !important;
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-toggler {
        min-height: 48px !important;
        min-width: 48px !important;
    }
    
    /* Touch feedback */
    .btn:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease !important;
    }
    
    .nav-link:active {
        background-color: rgba(0, 123, 255, 0.1) !important;
        border-radius: 8px !important;
    }
}

/* High Resolution Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-brand img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .footer {
        background: white !important;
        color: black !important;
        border-top: 2px solid black;
    }
}