/*
Theme Name: Smart Repair Theme
Theme URI: https://www.codegeniusoft.com/themes/smartrepair
Author: Abuzarr Ghafaari
Author URI: https://www.codegeniusoft.com/
Description: A professional and responsive one-page WordPress theme built for maintenance, repair, and home service businesses. Features comprehensive service management, customizable sections, and modern design. Perfect for AC services, plumbing, electrical work, cleaning, construction, and more. Developed by Code Genius Soft.
Version: 2.3.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smartrepair
Tags: one-page, responsive, business, services, repair, maintenance, professional, customizable, modern, service-business
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Network: false

Smart Repair Theme v2.3.1 - Professional Service Business WordPress Theme
========================================================================

A comprehensive, feature-rich WordPress theme designed specifically for service-based businesses including:
- Air Conditioning Services
- Plumbing & Electrical Work  
- Cleaning Services
- Construction & Renovation
- Interior Design & Architecture
- Appliance Repair
- Gardening & Landscaping
- And much more...

Key Features:
- Fully responsive design
- 12+ pre-built service categories with 120+ subcategories
- Customizable color schemes
- Professional contact forms
- Team member showcase
- Service detail pages
- Modern animations (AOS)
- SEO optimized
- Cross-browser compatible
- Easy customization via WordPress Customizer

Developed with ❤️ by Code Genius Soft
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Container Fluid for Full Width Layouts */
.container-fluid {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Mobile-specific container fluid padding */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .container-fluid {
        padding: 0 !important;
    }
    
    /* Override inline styles for mobile */
    .container-fluid[style*="padding"] {
        padding: 0 15px !important;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.preloader-animation {
    margin: 0 auto 20px;
}

/* Classic Spinner */
.preloader-spinner .preloader-animation {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--preloader-color, #0078FF);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Bouncing Dots */
.preloader-dots .preloader-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.preloader-dots .preloader-animation::before,
.preloader-dots .preloader-animation::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--preloader-color, #0078FF);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.preloader-dots .preloader-animation::before {
    animation-delay: -0.32s;
}

.preloader-dots .preloader-animation {
    width: 12px;
    height: 12px;
    background: var(--preloader-color, #0078FF);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
    animation-delay: -0.16s;
}

/* Pulsing Circle */
.preloader-pulse .preloader-animation {
    width: 50px;
    height: 50px;
    background: var(--preloader-color, #0078FF);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Wave Animation */
.preloader-wave .preloader-animation {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
}

.preloader-wave .preloader-animation::before,
.preloader-wave .preloader-animation::after {
    content: '';
    width: 8px;
    height: 20px;
    background: var(--preloader-color, #0078FF);
    animation: wave 1.2s ease-in-out infinite;
}

.preloader-wave .preloader-animation::before {
    animation-delay: -0.4s;
}

.preloader-wave .preloader-animation {
    width: 8px;
    height: 20px;
    background: var(--preloader-color, #0078FF);
    animation: wave 1.2s ease-in-out infinite;
    animation-delay: -0.2s;
}

/* Loading Bars */
.preloader-bars .preloader-animation {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
}

.preloader-bars .preloader-animation::before,
.preloader-bars .preloader-animation::after {
    content: '';
    width: 10px;
    height: 30px;
    background: var(--preloader-color, #0078FF);
    animation: bars 1s ease-in-out infinite;
}

.preloader-bars .preloader-animation::before {
    animation-delay: -0.3s;
}

.preloader-bars .preloader-animation {
    width: 10px;
    height: 30px;
    background: var(--preloader-color, #0078FF);
    animation: bars 1s ease-in-out infinite;
    animation-delay: -0.15s;
}

/* Ring Loader */
.preloader-ring .preloader-animation {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--preloader-color, #0078FF);
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

/* Dual Ring */
.preloader-dual-ring .preloader-animation {
    width: 50px;
    height: 50px;
    position: relative;
}

.preloader-dual-ring .preloader-animation::before,
.preloader-dual-ring .preloader-animation::after {
    content: '';
    position: absolute;
    border: 3px solid transparent;
    border-top: 3px solid var(--preloader-color, #0078FF);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.preloader-dual-ring .preloader-animation::before {
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
}

.preloader-dual-ring .preloader-animation::after {
    width: 30px;
    height: 30px;
    top: 10px;
    left: 10px;
    animation-direction: reverse;
}

/* Ripple Effect */
.preloader-ripple .preloader-animation {
    width: 50px;
    height: 50px;
    position: relative;
}

.preloader-ripple .preloader-animation::before,
.preloader-ripple .preloader-animation::after {
    content: '';
    position: absolute;
    border: 2px solid var(--preloader-color, #0078FF);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
}

.preloader-ripple .preloader-animation::before {
    width: 0;
    height: 0;
    top: 25px;
    left: 25px;
}

.preloader-ripple .preloader-animation::after {
    width: 0;
    height: 0;
    top: 25px;
    left: 25px;
    animation-delay: 1s;
}

/* Rotating Cube */
.preloader-cube .preloader-animation {
    width: 40px;
    height: 40px;
    background: var(--preloader-color, #0078FF);
    animation: cube 2s infinite ease-in-out;
}

/* Beating Heart */
.preloader-heart .preloader-animation {
    width: 50px;
    height: 45px;
    position: relative;
    transform: rotate(-45deg);
    animation: heart 1.2s infinite;
}

.preloader-heart .preloader-animation::before,
.preloader-heart .preloader-animation::after {
    content: '';
    width: 26px;
    height: 40px;
    position: absolute;
    left: 25px;
    top: 0;
    background: var(--preloader-color, #0078FF);
    border-radius: 25px 25px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.preloader-heart .preloader-animation::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

/* Rotating Gear */
.preloader-gear .preloader-animation {
    width: 50px;
    height: 50px;
    background: var(--preloader-color, #0078FF);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: gear 2s linear infinite;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes wave {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

@keyframes bars {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

@keyframes ripple {
    0% { top: 25px; left: 25px; width: 0; height: 0; opacity: 1; }
    100% { top: 0px; left: 0px; width: 50px; height: 50px; opacity: 0; }
}

@keyframes cube {
    0%, 70%, 100% { transform: scale3D(1, 1, 1); }
    35% { transform: scale3D(0, 0, 1); }
}

@keyframes heart {
    0% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(0.8); }
    100% { transform: rotate(-45deg) scale(1); }
}

@keyframes gear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Adjust header position when WordPress admin bar is present */
body.admin-bar .header {
    top: 32px; /* Move header below WordPress admin bar */
}

/* Mobile responsive for WordPress admin bar */
@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px; /* WordPress admin bar is taller on mobile */
    }
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
}

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

.nav-logo .logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.nav-logo .logo-link:hover {
    opacity: 0.8;
}

.nav-logo h2 {
    color: #0078FF;
    font-weight: 700;
    margin: 0;
}

.nav-logo i {
    margin-right: 8px;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .nav-logo .logo-text {
        font-size: 18px !important;
    }
    
    .nav-logo .logo-image {
        max-height: 35px !important;
    }
    
    .nav-logo .logo-icon {
        font-size: 18px !important;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0078FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0078FF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

/* Button Layout Options */
.nav-buttons-horizontal {
    flex-direction: row;
    align-items: center;
}

.nav-buttons-vertical {
    flex-direction: column;
    align-items: stretch;
}

/* Button Size Options */
.nav-buttons-small .btn {
    padding: 8px 16px;
    font-size: 12px;
    gap: 6px;
}

.nav-buttons-medium .btn {
    padding: 12px 24px;
    font-size: 14px;
    gap: 8px;
}

.nav-buttons-large .btn {
    padding: 16px 32px;
    font-size: 16px;
    gap: 10px;
}

/* Mobile Hide Option */
@media (max-width: 768px) {
    .nav-buttons-mobile-hide {
        display: none !important;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-call {
    background: var(--call-button-color, #0078FF);
    color: white;
}

.btn-call:hover {
    background: var(--call-button-color, #0078FF);
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: var(--whatsapp-button-color, #25D366);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-button-color, #25D366);
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: var(--whatsapp-button-color, #25D366);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-button-color, #25D366);
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #0078FF;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 120, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0078FF;
    border: 2px solid #0078FF;
}

.btn-secondary:hover {
    background: #0078FF;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #0078FF;
    border: 2px solid #0078FF;
    padding: 8px 20px;
    font-size: 13px;
}

.btn-outline:hover {
    background: #0078FF;
    color: white;
    transform: translateY(-2px);
}

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

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

/* Slider Section */
.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Desktop/Laptop Styles (Default) */
.slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
    text-align: center;
}

/* Slider Content Positioning */
.slider-content-left-top {
    position: absolute;
    top: 20%;
    left: 5%;
    text-align: left;
    max-width: 45%;
}

.slider-content-left-middle {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 45%;
}

.slider-content-left-below {
    position: absolute;
    bottom: 20%;
    left: 5%;
    text-align: left;
    max-width: 45%;
}

.slider-content-center-top {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 60%;
}

.slider-content-center-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 60%;
}

.slider-content-center-below {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 60%;
}

.slider-content-right-top {
    position: absolute;
    top: 20%;
    right: 5%;
    text-align: right;
    max-width: 45%;
}

.slider-content-right-middle {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    text-align: right;
    max-width: 45%;
}

.slider-content-right-below {
    position: absolute;
    bottom: 20%;
    right: 5%;
    text-align: right;
    max-width: 45%;
}

/* Desktop Positioning - Ensure bottom positioning works */
@media (min-width: 769px) {
    .slider-content-left-below {
        position: absolute !important;
        bottom: 20% !important;
        left: 5% !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        text-align: left !important;
        max-width: 45% !important;
    }

    .slider-content-center-below {
        position: absolute !important;
        bottom: 20% !important;
        left: 50% !important;
        top: auto !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        max-width: 60% !important;
    }

    .slider-content-right-below {
        position: absolute !important;
        bottom: 20% !important;
        right: 5% !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        text-align: right !important;
        max-width: 45% !important;
    }
}

.slider-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-content-left .slider-text {
    margin-left: 0;
}

.slider-content-right .slider-text {
    margin-right: 0;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-button {
    margin-top: 2rem;
}

.btn-slider {
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Button Size Variations */
.btn-slider.btn-small {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
}

.btn-slider.btn-medium {
    padding: 12px 24px !important;
    font-size: 1.1rem !important;
}

.btn-slider.btn-large {
    padding: 16px 32px !important;
    font-size: 1.3rem !important;
}

.btn-slider.btn-extra-large {
    padding: 20px 40px !important;
    font-size: 1.5rem !important;
}

.btn-slider:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-dot.active,
.slider-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Default gradient background */
.hero-background.gradient-bg {
    background: linear-gradient(135deg, #0078FF 0%, #00A859 100%);
}

/* Image background */
.hero-background.image-bg {
    /* Remove background: none to allow inline styles to work */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Responsive image background for mobile */
@media (max-width: 768px) {
    .hero-background.image-bg {
        background-attachment: scroll !important;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
    opacity: 0.3;
}

/* Hide grain pattern for image backgrounds */
.hero-background.image-bg::before {
    display: none;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.typing-text {
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Button Layouts */
.hero-buttons-horizontal {
    flex-direction: row;
}

.hero-buttons-vertical {
    flex-direction: column;
    align-items: center;
}

/* Hero Button Sizes */
.hero-buttons-small .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.hero-buttons-medium .btn {
    padding: 12px 25px;
    font-size: 15px;
}

.hero-buttons-large .btn {
    padding: 15px 30px;
    font-size: 16px;
}

/* Hero Button Styles */
.btn-hero-primary {
    background: var(--hero-primary-color, #0078FF);
    color: white;
    border: 2px solid var(--hero-primary-color, #0078FF);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--hero-primary-color, #0078FF);
    border-color: var(--hero-primary-color, #0078FF);
}

.btn-hero-whatsapp {
    background: var(--hero-whatsapp-color, #25D366);
    color: white;
    border: 2px solid var(--hero-whatsapp-color, #25D366);
}

.btn-hero-whatsapp:hover {
    background: transparent;
    color: var(--hero-whatsapp-color, #25D366);
    border-color: var(--hero-whatsapp-color, #25D366);
}

.btn-hero-secondary {
    background: var(--hero-secondary-color, #28a745);
    color: white;
    border: 2px solid var(--hero-secondary-color, #28a745);
}

.btn-hero-secondary:hover {
    background: transparent;
    color: var(--hero-secondary-color, #28a745);
    border-color: var(--hero-secondary-color, #28a745);
}

/* Hero Service Area */
.hero-service-area {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-service-area:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-service-area i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Mobile responsive for service area */
@media (max-width: 768px) {
    .hero-service-area {
        display: flex;
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-service-area i {
        font-size: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* Enhanced scroll pulse animation for image backgrounds */
.scroll-pulse-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-pulse-animation .pulse-arrow {
    width: 35px;
    height: 35px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: pulseArrow 2s infinite;
    margin-bottom: 10px;
}

.scroll-pulse-animation .scroll-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseText 2s infinite;
}

@keyframes pulseArrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(45deg) scale(1);
        opacity: 0.8;
        border-color: rgba(255, 255, 255, 0.8);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) rotate(45deg) scale(1.1);
        opacity: 1;
        border-color: rgba(255, 255, 255, 1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

@keyframes pulseText {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

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

/* Desktop Hero Section Centering */
@media (min-width: 769px) {
    .hero {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-content {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 800px !important;
    }
    
    .hero-title {
        text-align: center !important;
    }
    
    .hero-subtitle {
        text-align: center !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
        text-align: center !important;
    }
}

/* Section Styles */
section {
    padding: 40px 0;
}

/* Fix internal scrolling issues - ensure sections behave normally */
.about, .why-choose, .team {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
}

.about .container-fluid, 
.why-choose .container-fluid, 
.team .container-fluid {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
}

.features-grid, .choose-grid, .team-grid, .team-grid-3, .team-grid-4 {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

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

/* About Section */
.about {
    background: white;
    padding: 80px 0 !important;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0078FF, #00A859);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Service Categories Filter */
.service-categories {
    margin: 2rem 0;
    text-align: center;
}

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

.category-filter {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    white-space: nowrap;
}

.category-filter:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.category-filter.active {
    background: linear-gradient(135deg, #0078FF, #00A859);
    border-color: #0078FF;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
}

.category-filter.active:hover {
    background: linear-gradient(135deg, #0056b3, #007a47);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.4);
}

/* Service Card Filtering Animation */
.service-card {
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

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

/* Responsive Category Filters */
@media (max-width: 768px) {
    .category-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-filter {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .category-filters {
        gap: 0.4rem;
    }
    
    .category-filter {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Services Section */
.services {
    background: #F5F6FA;
}

/* Service Detail Heading Spacing */
.services.service-detail .section-header {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .services.service-detail .section-header {
        margin-top: 20px;
    }
}

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

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078FF, #00A859);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose {
    background: white;
}

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

.choose-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: auto;
    min-height: 280px;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.choose-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #0078FF, #00A859);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 120, 255, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    position: relative;
}

.choose-icon i {
    font-size: 2rem !important;
    color: white !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.choose-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team {
    background: white;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.team-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0078FF, #00A859);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    transition: all 0.3s ease;
}

.team-member:hover .member-image img {
    border-color: #0078FF;
    transform: scale(1.05);
}

.member-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6c757d;
    border: 4px solid #f8f9fa;
}

.member-info {
    position: relative;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-member:hover .member-name {
    color: #0078FF;
}

.member-designation {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: #f8f9fa;
    color: #1877f2;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-3px);
}

.social-link.twitter {
    background: #f8f9fa;
    color: #1da1f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-3px);
}

.social-link.linkedin {
    background: #f8f9fa;
    color: #0077b5;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-3px);
}

.social-link.instagram {
    background: #f8f9fa;
    color: #e4405f;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-3px);
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .member-designation {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 1rem;
    }
    
    .member-image {
        width: 80px;
        height: 80px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact {
    background: #F5F6FA;
}

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

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0078FF;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    padding: 1rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078FF, #00A859);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-content p {
    margin: 0;
}

.info-content a {
    color: #0078FF;
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0 1rem; /* Minimized top padding */
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 20px; /* Add horizontal padding for full-width footer */
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #0078FF;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

/* Footer Contact Information */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact .contact-item i {
    color: #0078FF;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact .contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact .contact-details strong {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-contact .contact-details span,
.footer-contact .contact-details a {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-details a:hover {
    color: #0078FF;
}

/* Business Hours Styles */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.business-hours .hours-line {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.3;
}

/* WhatsApp Contact Styles */
.contact-item .fab.fa-whatsapp {
    color: #25D366; /* WhatsApp green */
}

.contact-item .fab.fa-whatsapp:hover {
    color: #128C7E; /* Darker WhatsApp green */
}

/* Mobile responsive for contact info */
@media (max-width: 768px) {
    .footer-contact .contact-item {
        gap: 0.5rem;
    }
    
    .footer-contact .contact-item i {
        font-size: 1rem;
        width: 18px;
    }
    
    .footer-contact .contact-details strong,
    .footer-contact .contact-details span,
    .footer-contact .contact-details a {
        font-size: 0.85rem;
    }
    
    .business-hours .hours-line {
        font-size: 0.85rem;
    }
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--icon-spacing, 1rem);
    max-width: calc((var(--icon-size, 40px) + var(--icon-spacing, 16px)) * var(--icons-per-row, 4));
}

.social-icons a {
    width: var(--icon-size, 40px);
    height: var(--icon-size, 40px);
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: calc(var(--icon-size, 40px) * 0.5);
}

.social-icons a:hover {
    background: #0078FF;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 20px 0; /* Add horizontal padding for full-width footer */
    border-top: 1px solid #333;
    color: #ccc;
}

.footer-bottom a {
    color: #0078FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    z-index: 1000;
    width: var(--whatsapp-size, 60px);
    height: var(--whatsapp-size, 60px);
}

/* Position Classes */
.whatsapp-bottom-right {
    bottom: 30px;
    right: 30px;
}

.whatsapp-bottom-left {
    bottom: 30px;
    left: 30px;
}

.whatsapp-top-right {
    top: 100px;
    right: 30px;
}

.whatsapp-top-left {
    top: 100px;
    left: 30px;
}

/* Device Visibility Classes */
.whatsapp-hide-mobile {
    display: block;
}

.whatsapp-hide-desktop {
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .whatsapp-hide-desktop {
        display: none !important;
    }
}

.whatsapp-float a {
    width: 100%;
    height: 100%;
    background: var(--whatsapp-color, #25D366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: calc(var(--whatsapp-size, 60px) * 0.4);
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    width: var(--scroll-size, 50px);
    height: var(--scroll-size, 50px);
    background: var(--scroll-color, #0078FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Position classes for scroll-to-top button */
.scroll-top-bottom-right {
    bottom: 30px;
    right: 30px;
}

.scroll-top-bottom-left {
    bottom: 30px;
    left: 30px;
}

.scroll-top-top-right {
    top: 100px;
    right: 30px;
}

.scroll-top-top-left {
    top: 100px;
    left: 30px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--scroll-color, #0078FF);
    filter: brightness(0.8);
    transform: translateY(-3px);
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
    .hero-buttons .btn {
        justify-content: center;
        text-align: center;
    }
    
    /* Slider Tablet Styles */
    .slider-container {
        height: 60vh !important;
        min-height: 400px !important;
        max-height: 600px !important;
    }
    
    .slider-slide {
        background-size: contain !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .slider-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .slider-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.3rem !important;
    }
    
    .btn-slider {
        font-size: 1rem !important;
        padding: 12px 24px !important;
    }
    
    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 20px;
    }
    
    .slider-next {
        right: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 25px 0;
    }
    
    /* Override for specific sections */
    .slider-section {
        padding: 0 !important;
    }
    
    .hero {
        padding: 0 !important;
    }
    
    .about {
        padding: 25px 0 !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile menu items */
    .nav-menu .nav-item {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        background: white;
        width: 100%;
        text-align: left;
        position: relative;
    }
    
    .nav-menu .nav-link:hover {
        background-color: #f8f9fa;
        color: #007bff;
    }
    
    /* Mobile dropdown parent items */
    .nav-menu .has-dropdown > .nav-link::after {
        content: "▶";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        color: #666;
        transition: transform 0.3s ease;
    }
    
    .nav-menu .has-dropdown.active > .nav-link::after {
        transform: translateY(-50%) rotate(90deg);
        color: #007bff;
    }
    
    .nav-menu .has-dropdown.active > .nav-link {
        background-color: #e3f2fd;
        color: #007bff;
    }
    
    /* Slider Mobile Styles */
    .slider-section {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .slider-container {
        height: 50vh !important;
        min-height: 350px !important;
        max-height: 500px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .slider-slide {
        background-size: contain !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Mobile Responsive Adjustments for Slider Content */
    .slider-content-left-top,
    .slider-content-left-middle,
    .slider-content-left-below,
    .slider-content-center-top,
    .slider-content-center-middle,
    .slider-content-center-below,
    .slider-content-right-top,
    .slider-content-right-middle,
    .slider-content-right-below {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        max-width: 90% !important;
        padding: 0 15px !important;
        margin: 0 !important;
    }
    
    .slider-text {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .slider-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
    }
    
    .slider-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
        padding: 0 !important;
    }
    
    .btn-slider {
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
        margin: 0 !important;
    }
    
    /* Button Size Variations for Mobile */
    .btn-slider.btn-small {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
    
    .btn-slider.btn-medium {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .btn-slider.btn-large {
        padding: 12px 24px !important;
        font-size: 1rem !important;
    }
    
    .btn-slider.btn-extra-large {
        padding: 14px 28px !important;
        font-size: 1.1rem !important;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-pagination {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .nav-buttons:not(.nav-buttons-mobile-hide) {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .nav-buttons-horizontal:not(.nav-buttons-mobile-hide) {
        flex-direction: column;
    }
    
    .nav-buttons:not(.nav-buttons-mobile-hide) .btn {
        padding: 10px 20px;
        font-size: 13px;
        justify-content: center;
    }
    
    .nav-buttons:not(.nav-buttons-mobile-hide) .btn-text {
        display: inline;
    }
    
    .hero {
        padding: 0 15px;
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding: 120px 0 60px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem; /* Add space above scroll indicator on mobile */
    }
    
    /* Override layout for mobile - always stack vertically */
    .hero-buttons-horizontal {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Mobile button sizes */
    .hero-buttons-small .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-buttons-medium .btn {
        padding: 11px 22px;
        font-size: 14px;
    }
    
    .hero-buttons-large .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* Fix scroll indicator on mobile - use triangle method to avoid line artifacts */
    .scroll-indicator {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce-mobile 2s infinite;
    }
    
    .scroll-arrow {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 12px solid white;
        transform: none; /* Remove rotation */
        position: relative;
    }
    
    /* Mobile-specific bounce animation */
    @keyframes bounce-mobile {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-8px);
        }
        60% {
            transform: translateX(-50%) translateY(-4px);
        }
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .whatsapp-bottom-right,
    .whatsapp-bottom-left {
        bottom: 30px;
    }
    
    .whatsapp-bottom-right {
        right: 30px;
    }
    
    .whatsapp-bottom-left {
        left: 30px;
    }
    
    .whatsapp-top-right,
    .whatsapp-top-left {
        top: 100px;
    }
    
    .whatsapp-top-right {
        right: 30px;
    }
    
    .whatsapp-top-left {
        left: 30px;
    }
    
    .whatsapp-float {
        width: calc(var(--whatsapp-size, 60px) * 0.85);
        height: calc(var(--whatsapp-size, 60px) * 0.85);
    }
    
    .scroll-top-bottom-right,
    .scroll-top-bottom-left {
        bottom: 20px;
    }
    
    .scroll-top-bottom-right {
        right: 20px;
    }
    
    .scroll-top-bottom-left {
        left: 20px;
    }
    
    .scroll-top-top-right,
    .scroll-top-top-left {
        top: 80px;
    }
    
    .scroll-top-top-right {
        right: 20px;
    }
    
    .scroll-top-top-left {
        left: 20px;
    }
    
    .scroll-top {
        width: calc(var(--scroll-size, 50px) * 0.9);
        height: calc(var(--scroll-size, 50px) * 0.9);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Slider Extra Small Mobile Styles */
    .slider-section {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .slider-container {
        height: 45vh !important;
        min-height: 300px !important;
        max-height: 400px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .slider-slide {
        background-size: contain !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .slider-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.2 !important;
        padding: 0 !important;
    }
    
    .slider-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
    }
    
    .slider-text {
        padding: 0 10px !important;
        margin: 0 !important;
    }
    
    .btn-slider {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-pagination {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .feature-card,
    .service-card,
    .choose-card {
        padding: 1.5rem 1rem;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0078FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-toggle::after {
    content: " ▼";
    font-size: 0.8em;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
}

/* When dropdown is being animated, ensure proper visibility */
.dropdown-menu.slide-down,
.dropdown-menu.fade-in,
.dropdown-menu.flip-vertical,
.dropdown-menu.zoom-in,
.dropdown-menu.slide-up,
.dropdown-menu.bounce-in,
.dropdown-menu.rotate-in {
    opacity: 1;
    visibility: visible;
}

/* Animation Classes */
.dropdown-menu.slide-down {
    animation: slideDown var(--dropdown-duration, 300ms) var(--dropdown-easing, ease) forwards;
}

.dropdown-menu.fade-in {
    animation: fadeIn var(--dropdown-duration, 300ms) var(--dropdown-easing, ease) forwards;
}

.dropdown-menu.flip-vertical {
    animation: flipVertical var(--dropdown-duration, 300ms) var(--dropdown-easing, ease) forwards;
}

.dropdown-menu.zoom-in {
    animation: zoomIn var(--dropdown-duration, 300ms) var(--dropdown-easing, ease) forwards;
}

.dropdown-menu.slide-up {
    animation: slideUp var(--dropdown-duration, 300ms) var(--dropdown-easing, ease) forwards;
}

.dropdown-menu.bounce-in {
    animation: bounceIn var(--dropdown-duration, 300ms) var(--dropdown-easing, ease) forwards;
}

.dropdown-menu.rotate-in {
    animation: rotateIn var(--dropdown-duration, 300ms) var(--dropdown-easing, ease) forwards;
}

/* Keyframe Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes flipVertical {
    from {
        opacity: 0;
        transform: rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Hide animations for closing */
.dropdown-menu.closing {
    animation: fadeOut 200ms ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu .dropdown-link {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.dropdown-menu .dropdown-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Removed CSS hover display to allow JavaScript animations to control dropdown visibility */

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Ensure all sections stay within viewport */
    section, div, .container, .container-fluid {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix any elements that might extend beyond viewport */
    * {
        max-width: 100vw !important;
    }
    
    /* Specific fixes for common overflow causes */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Fix button and form elements */
    .btn, button, input, textarea, select {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix images and media */
    img, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix navigation and header elements */
    .header, .nav, .navbar {
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Fix footer elements */
    .footer, footer {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none !important; /* Hidden by default on mobile */
        box-shadow: none !important;
        background: #f8f9fa !important;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Mobile dropdown when active - show with slide effect */
    .nav-item.dropdown.active .dropdown-menu,
    .has-dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    /* Mobile dropdown links styling */
    .dropdown-menu .dropdown-link {
        display: block !important;
        padding: 12px 30px !important;
        color: #495057 !important;
        font-size: 14px !important;
        border-bottom: 1px solid #e9ecef !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
        background: white !important;
    }
    
    .dropdown-menu .dropdown-link:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-menu .dropdown-link:hover,
    .dropdown-menu .dropdown-link:focus {
        background-color: #007bff !important;
        color: white !important;
        padding-left: 35px !important;
    }
    
    /* Mobile dropdown toggle indicators */
    .nav-item.dropdown > .nav-link::after,
    .has-dropdown > .nav-link::after {
        content: "▶" !important;
        font-size: 12px !important;
        color: #6c757d !important;
        transition: transform 0.3s ease !important;
        display: inline-block !important;
        margin-left: 8px !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .nav-item.dropdown.active > .nav-link::after,
    .has-dropdown.active > .nav-link::after {
        content: "▼" !important;
        transform: translateY(-50%) rotate(0deg) !important;
        color: #007bff !important;
    }
    
    /* Mobile menu parent link styling */
    .nav-item.dropdown > .nav-link,
    .has-dropdown > .nav-link {
        position: relative !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid #e9ecef !important;
        background: white !important;
        color: #495057 !important;
        font-weight: 500 !important;
    }
    
    .nav-item.dropdown.active > .nav-link,
    .has-dropdown.active > .nav-link {
        background: #e3f2fd !important;
        color: #007bff !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    .container-fluid[style*="padding"] {
        padding: 0 10px !important;
    }
}

/* CRITICAL: Force normal scrolling behavior - Override any framework or dynamic CSS */
.about, .why-choose, .team,
.about-section, .who-we-are, .services {
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    position: relative !important;
    display: block !important;
}

.about .container-fluid, 
.why-choose .container-fluid, 
.team .container-fluid,
.about .container, 
.why-choose .container, 
.team .container {
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    position: relative !important;
    display: block !important;
}

.features-grid, .choose-grid, .team-grid, .team-grid-3, .team-grid-4 {
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    position: relative !important;
}

/* NUCLEAR OPTION: Complete Why Choose Us Section Override */
.why-choose {
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    position: static !important;
    display: block !important;
    contain: none !important;
    isolation: auto !important;
    transform: none !important;
    will-change: auto !important;
}

.why-choose * {
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    position: static !important;
    contain: none !important;
    isolation: auto !important;
    transform: none !important;
    will-change: auto !important;
}

.why-choose .container-fluid {
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    position: static !important;
    display: block !important;
    width: 100% !important;
    padding: 0 20px !important;
}

.why-choose .choose-grid {
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}

.why-choose .choose-card {
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    position: static !important;
    display: block !important;
    contain: none !important;
    isolation: auto !important;
    transform: none !important;
    will-change: auto !important;
}

/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    section, div {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    /* Fix specific sections with scrolling issues - COMPREHENSIVE MOBILE FIX */
    .about, .why-choose, .team, .about-section, .who-we-are, .services {
        overflow-x: hidden !important;
        overflow-y: visible !important;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }
    
    .about .container-fluid, 
    .why-choose .container-fluid, 
    .team .container-fluid,
    .about-section .container, 
    .who-we-are .container, 
    .why-choose .container, 
    .team .container,
    .services .container {
        overflow-x: hidden !important;
        overflow-y: visible !important;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }
    
    /* Fix grids and content areas */
    .features-grid, .choose-grid, .team-grid, .team-grid-3, .team-grid-4 {
        overflow-x: hidden !important;
        overflow-y: visible !important;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        display: block !important;
    }
    
    /* Fix cards and content */
    .feature-card, .choose-card, .team-member, .service-card {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .about-section .container, 
    .who-we-are .container, 
    .why-choose .container, 
    .team .container,
    .services .container {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .about-section .row, 
    .who-we-are .row, 
    .why-choose .row, 
    .team .row,
    .services .row {
        margin: 0 !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .about-section [class*="col-"], 
    .who-we-are [class*="col-"], 
    .why-choose [class*="col-"], 
    .team [class*="col-"],
    .services [class*="col-"] {
        padding: 0 10px !important;
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    /* Apply services-like grid approach to other sections */
    .choose-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
/* NUCLEAR MOBILE FIX: Complete CSS reset for scrolling issues */
@media (max-width: 768px) {
    /* NUCLEAR FIX: Why Choose Us Section - Reset all possible CSS properties */
    .why-choose {
        overflow: visible !important;
        overflow-y: visible !important;
        overflow-x: hidden !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        padding: 60px 0 !important;
        background: white !important;
        position: static !important;
        display: block !important;
        contain: none !important;
        isolation: auto !important;
        transform: none !important;
        will-change: auto !important;
        perspective: none !important;
        backface-visibility: visible !important;
        clip: auto !important;
        clip-path: none !important;
        mask: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .why-choose * {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        position: static !important;
        contain: none !important;
        isolation: auto !important;
        transform: none !important;
        will-change: auto !important;
        perspective: none !important;
        backface-visibility: visible !important;
        clip: auto !important;
        clip-path: none !important;
        mask: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .why-choose .container-fluid {
        overflow: visible !important;
        overflow-y: visible !important;
        overflow-x: hidden !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        display: block !important;
    }
    
    /* Why Choose Us Cards - Nuclear reset for all scrolling properties */
    .why-choose .choose-grid {
        overflow: visible !important;
        overflow-y: visible !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        display: block !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        contain: none !important;
        isolation: auto !important;
        transform: none !important;
        will-change: auto !important;
        perspective: none !important;
        backface-visibility: visible !important;
    }
    
    .why-choose .choose-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 25px 0 !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        padding: 25px 20px !important;
        display: block !important;
        position: static !important;
        background: white !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid #f0f0f0 !important;
        text-align: center !important;
        float: none !important;
        clear: both !important;
        contain: none !important;
        isolation: auto !important;
        transform: none !important;
        will-change: auto !important;
        perspective: none !important;
        backface-visibility: visible !important;
        clip: auto !important;
        clip-path: none !important;
        mask: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .why-choose .choose-card * {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        position: static !important;
        contain: none !important;
        isolation: auto !important;
        transform: none !important;
        will-change: auto !important;
        perspective: none !important;
        backface-visibility: visible !important;
        clip: auto !important;
        clip-path: none !important;
        mask: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Perfect Circular Icons - 75px with Perfect Centering */
    .why-choose .choose-icon {
        width: 75px !important;
        height: 75px !important;
        margin: 0 auto 25px auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #0078FF, #00A859) !important;
        color: white !important;
        flex-shrink: 0 !important;
        position: relative !important;
        box-shadow: 0 10px 25px rgba(0, 120, 255, 0.35) !important;
        transition: all 0.3s ease !important;
        border: 3px solid rgba(255, 255, 255, 0.25) !important;
        min-width: 75px !important;
        min-height: 75px !important;
        max-width: 75px !important;
        max-height: 75px !important;
    }
    
    .why-choose .choose-icon i {
        font-size: 2rem !important;
        color: white !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .why-choose .choose-card:hover .choose-icon {
        transform: scale(1.1) !important;
        box-shadow: 0 12px 25px rgba(0, 120, 255, 0.4) !important;
    }
    
    /* Professional Card Styling - Adjusted for 75px icons */
    .why-choose .choose-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 30px 0 !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: 300px !important;
        padding: 35px 25px !important;
        display: block !important;
        position: static !important;
        background: white !important;
        border-radius: 25px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(0, 120, 255, 0.1) !important;
        text-align: center !important;
        float: none !important;
        clear: both !important;
        contain: none !important;
        isolation: auto !important;
        transform: none !important;
        will-change: auto !important;
        perspective: none !important;
        backface-visibility: visible !important;
        clip: auto !important;
        clip-path: none !important;
        mask: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: all 0.3s ease !important;
    }
    
    .why-choose .choose-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
        border-color: rgba(0, 120, 255, 0.2) !important;
    }
    
    .why-choose .choose-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 18px !important;
        overflow: visible !important;
        height: auto !important;
        font-weight: 700 !important;
        color: #2c3e50 !important;
        text-align: center !important;
        line-height: 1.4 !important;
        letter-spacing: -0.5px !important;
    }
    
    .why-choose .choose-card p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        overflow: visible !important;
        height: auto !important;
        color: #6c757d !important;
        text-align: center !important;
        margin: 0 !important;
        font-weight: 400 !important;
        letter-spacing: 0.2px !important;
    }
    
    /* Team Member Cards - Fix internal scrolling */
    .team-member {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        display: block !important;
        position: relative !important;
        background: #fff !important;
        border-radius: 15px !important;
        padding: 20px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    }
    
    .team-member * {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .team-member .member-image {
        width: 120px !important;
        height: 120px !important;
        border-radius: 50% !important;
        margin: 0 auto 15px auto !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }
    
    .team-member .member-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    .team-member .member-info {
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .team-member .member-name {
        font-size: 18px !important;
        font-weight: 600 !important;
        margin-bottom: 5px !important;
        color: #333 !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .team-member .member-designation {
        font-size: 14px !important;
        color: #666 !important;
        margin-bottom: 15px !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .team-member .member-social {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 10px !important;
        overflow: visible !important;
        height: auto !important;
    }
}
    
    .team-member .social-link {
        width: 35px !important;
        height: 35px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important;
        transition: all 0.3s ease !important;
    }
    
    /* WhatsApp Button Mobile Fixes - Provide Space for Full Pulse Animation */
    .whatsapp-float {
        /* Container needs to be larger to accommodate 10px pulse overflow */
        width: calc(var(--whatsapp-size, 60px) * 0.85 + 20px) !important;
        height: calc(var(--whatsapp-size, 60px) * 0.85 + 20px) !important;
        /* Add padding to center the button and provide pulse space */
        padding: 10px !important;
        /* Ensure container doesn't clip the pulse */
        overflow: visible !important;
    }
    
    .whatsapp-float a {
        /* Button size remains the same but now has space around it */
        width: calc(var(--whatsapp-size, 60px) * 0.85) !important;
        height: calc(var(--whatsapp-size, 60px) * 0.85) !important;
        background: var(--whatsapp-color, #25D366);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: calc(var(--whatsapp-size, 60px) * 0.35);
        text-decoration: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        animation: whatsapp-pulse 2s infinite;
        /* Center the button within the padded container */
        margin: 0 auto;
    }
    
    .whatsapp-float a:hover {
        /* Disable hover scaling on mobile to prevent scrolling */
        transform: none !important;
        /* Keep desktop hover shadow but no scaling */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    .whatsapp-float a:active {
        /* Touch feedback for mobile */
        transform: scale(0.95) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .team-member {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .team-member .member-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    .team-member .member-name {
        font-size: 16px !important;
    }
    
    .team-member .member-designation {
        font-size: 13px !important;
    }
    
    .whatsapp-float {
        width: calc(var(--whatsapp-size, 60px) * 0.75) !important;
        height: calc(var(--whatsapp-size, 60px) * 0.75) !important;
    }
}

/* Footer Logo Image Styles */
.footer-logo-image {
    margin-bottom: 1rem;
}

.footer-logo-image img {
    max-height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.comment-notes {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #0078FF;
    border-radius: 4px;
}

.comment-moderation-notice {
    font-size: 0.9rem;
    color: #856404;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid #ffc107;
}

.comment-awaiting-moderation {
    color: #856404;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    font-style: italic;
    border-left: 4px solid #ffc107;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.comment-notes {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #0078FF;
    border-radius: 4px;
}

.comment-moderation-notice {
    font-size: 0.9rem;
    color: #856404;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid #ffc107;
}

.comment-awaiting-moderation {
    color: #856404;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    font-style: italic;
    border-left: 4px solid #ffc107;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

/* Comments Section Styles */
.comments-area {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0078FF;
}

.comment-list .children {
    margin-left: 2rem;
    margin-top: 1rem;
}

.comment-meta {
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 600;
    color: #333;
}

.comment-metadata {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.comment-metadata a {
    color: #666;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #0078FF;
}

.comment-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reply {
    text-align: right;
}

.comment-reply-link {
    background: #0078FF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.comment-reply-link:hover {
    background: #0056b3;
    color: white;
}

.no-comments {
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 2rem;
}

/* Comment Form Styles */
.comment-respond {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #0078FF;
    box-shadow: 0 0 0 2px rgba(0, 120, 255, 0.1);
}

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

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 1rem;
}

.form-submit {
    margin-top: 1rem;
}

.submit {
    background: #0078FF;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit:hover {
    background: #0056b3;
}

/* Comments Navigation */
.comment-navigation {
    margin: 2rem 0;
    text-align: center;
}

.comment-navigation .nav-previous,
.comment-navigation .nav-next {
    display: inline-block;
    margin: 0 1rem;
}

.comment-navigation a {
    background: #f0f0f0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: #0078FF;
    color: white;
}

/* Responsive Comments */
@media (max-width: 768px) {
    .comments-area {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .comment-list .children {
        margin-left: 1rem;
    }
    
    .comment-respond {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-reply-title {
        font-size: 1.3rem;
    }
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-toggle::after {
    content: " ▼";
    font-size: 0.8em;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu .dropdown-link {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.dropdown-menu .dropdown-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Removed duplicate CSS hover display to allow JavaScript animations to control dropdown visibility */

/* Removed duplicate mobile dropdown styles - consolidated above */