 :root {
            --primary-color: #000066;
            --secondary-color: #000066;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #333;
            --header-height: 80px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            padding-top: var(--header-height);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Navbar Styling - SIMPLIFIED */
        .navbar {
            background: linear-gradient(135deg, #000066 50%, #ff3333 100%) !important;
            box-shadow: 0 4px 18px rgba(26, 109, 158, 0.1);
            padding: 10px 0;
            transition: all 0.3s ease;
            z-index: 1050;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 0.5px;
            color: white !important;
            display: flex;
            align-items: center;
        }

        .logo-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid white;
            margin-right: 12px;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .logo-circle:hover {
            transform: scale(1.05);
        }

        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Mobile menu button styling */
        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.5rem 0.75rem;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
        }

        /* Nav link styling */
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            margin: 0 0.25rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            color: rgba(255, 255, 255, 0.9) !important;
        }

        .nav-link:hover, .nav-link:focus {
            background: rgba(255, 255, 255, 0.15);
        }

        .nav-link.active {
            background: rgba(255, 255, 255, 0.25);
            color: white !important;
            font-weight: 600;
        }

        /* Emergency button styling */
        .emergency-btn {
            background-color: white;
            color: #000066 !important;
            font-weight: 600;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-left: 0.5rem;
        }

        .emergency-btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

       
        @media (max-width: 991.98px) {
            body {
                padding-top: 70px;
            }
            
            .navbar {
                min-height: 70px;
            }
            
            .navbar-brand {
                font-size: 1.2rem;
            }
            
            .logo-circle {
                width: 50px;
                height: 50px;
            }
            
            /* Mobile menu - CENTERED */
            .navbar-collapse {
                background: linear-gradient(135deg, #000066 30%, #ff3333 100%);
                padding: 1rem;
                border-radius: 12px;
                margin-top: 10px;
                animation: fadeInDown 0.25s ease;
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
                text-align: center;
            }
            
            /* Center all nav items in mobile menu */
            .navbar-nav {
                width: 100%;
                text-align: center;
            }
            
            .nav-item {
                display: block;
                width: 100%;
                margin: 0.3rem 0;
            }
            
            .nav-link {
                display: inline-block;
                text-align: center;
                padding: 0.8rem 1.5rem !important;
                margin: 0.2rem 0;
                width: auto;
            }
            
            /* Center emergency button on mobile */
            .emergency-btn {
                margin: 1rem auto 0 auto;
                display: inline-block;
                width: fit-content;
            }
        }

        @media (max-width: 575.98px) {
            .navbar-brand {
                font-size: 1.1rem;
            }
            
            .logo-circle {
                width: 45px;
                height: 45px;
            }
            
            .nav-link {
                padding: 0.7rem 1.2rem !important;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 400px) {
            .navbar-brand {
                font-size: 1rem;
            }
            
            .logo-circle {
                width: 40px;
                height: 40px;
            }
            
            .nav-link {
                padding: 0.6rem 1rem !important;
                font-size: 0.9rem;
            }
        }

        /* Updated Service Items - More Compact */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
        }

        .service-item-modern {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .service-item-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: #000066;
        }

        .service-item-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #000066, #ff3333);
        }

        .service-item-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #000066 30%, #ff3333 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            flex-shrink: 0;
        }

        .service-item-modern h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: #000066;
            line-height: 1.3;
        }

        .service-item-modern p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .service-item-modern ul {
            padding-left: 20px;
            margin-bottom: 0;
            flex-grow: 0;
        }

        .service-item-modern ul li {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.3rem;
            line-height: 1.4;
        }

        .service-item-modern ul li i {
            font-size: 0.8rem;
        }

        /* More compact category content */
        .category-content {
            padding: 2rem;
        }

        /* Adjust service categories for better spacing */
        .service-category {
            margin-bottom: 2.5rem;
            border-radius: 15px;
        }

        .category-header {
            padding: 2rem 2rem;
        }

        .category-header h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .category-header p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Adjust icon sizes */
        .category-header .category-icon {
            width: 70px;
            height: 20px;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        /* For mobile responsiveness */
        @media (max-width: 768px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .service-item-modern {
                padding: 1.2rem;
                min-height: 250px;
            }
            
            .category-content {
                padding: 1.5rem;
            }
            
            .category-header {
                padding: 1.5rem;
            }
            
            .category-header h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .service-item-modern {
                min-height: 230px;
            }
            
            .service-item-icon {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .service-item-modern h4 {
                font-size: 1rem;
            }
            
            .service-item-modern p {
                font-size: 0.85rem;
            }
            
            .service-item-modern ul li {
                font-size: 0.8rem;
            }
        }
                    

        /* Updated Services Hero Section */
        .services-hero-section {
            margin-top: 10px;
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .services-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 60%;
            height: 200%;
            background: linear-gradient(135deg, rgba(0, 0, 102, 0.05) 0%, rgba(255, 51, 51, 0.05) 100%);
            transform: rotate(15deg);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #000066 0%, #ff3333 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-content .lead {
            color: #666;
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Services Quick List */
        .services-quick-list {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .service-quick-item {
            padding: 0.8rem;
            border-radius: 8px;
            transition: var(--transition);
        }

        .service-quick-item:hover {
            background: #f8f9fa;
            transform: translateX(5px);
        }

        .service-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #000066 30%, #ff3333 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .service-quick-item span {
            font-weight: 600;
            color: #333;
        }

        /* Hero Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #000066 30%, #ff3333 100%);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 102, 0.2);
        }

        .btn-outline-primary {
            border: 2px solid #000066;
            color: #000066;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: #000066;
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Image */
        .hero-image-container {
            position: relative;
            height: 100%;
            min-height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-image-container:hover .hero-image {
            transform: scale(1.03);
        }

        /* Badges */
        .emergency-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
            color: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
            z-index: 3;
            max-width: 150px;
            text-align: center;
        }

        .experience-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: linear-gradient(135deg, #000066 0%, #0044cc 100%);
            color: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 102, 0.3);
            z-index: 3;
            text-align: center;
        }

        /* Hero Features */
        .hero-features {
            margin-top: 2rem;
        }

        .feature-item {
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-item i {
            background: linear-gradient(135deg, #000066 30%, #ff3333 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-item h5 {
            color: #333;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background: white;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #000066 0%, #ff3333 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        
        /* Services Main Section */
        .services-content {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .services-content .lead {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
        }

        /* Service Tabs */
        .service-tabs-modern {
            display: flex;
            gap: 10px;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .service-tab-modern {
            padding: 12px 24px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            font-weight: 600;
            color: #666;
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-tab-modern:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .service-tab-modern.active {
            background: linear-gradient(135deg, #000066 50%, #ff3333 100%) !important;
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 15px rgba(0, 0, 102, 0.2);
        }

        /* Service Categories */
        .service-category {
            display: none;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
            transition: var(--transition);
        }

        .service-category.active {
            display: block;
        }

        .service-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .category-header {
            background: linear-gradient(135deg, #000066 50%, #ff3333 100%) !important;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .category-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .category-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        /* Service Content Layout */
        .service-content-wrapper {
            padding: 2rem;
        }

        .service-portrait-image {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .service-portrait-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-details {
            padding: 0 1rem;
        }

        .service-sub-item {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }

        .service-sub-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .sub-item-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .sub-item-icon {
            width: 50px;
            height: 50px;
            background: #f0f9ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 1.3rem;
        }

        .service-sub-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 0;
        }

        .service-sub-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .service-sub-item ul {
            padding-left: 20px;
            margin-bottom: 0;
        }

        .service-sub-item ul li {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 5px;
        }


        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #000066 30%, #ff3333 100%) !important;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            transform: rotate(15deg);
            opacity: 0.3;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #000033 0%, #000066 100%);
            color: white;
            padding: 40px 0 30px;
        }

        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-links a:hover {
            background: white;
            color: var(--primary-color) !important;
            transform: translateY(-3px);
        }


        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Fade in animation for mobile menu */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .services-hero-section {
                padding: 60px 0;
                min-height: auto;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content .lead {
                font-size: 1.1rem;
            }
            
            .hero-image-container {
                margin-top: 3rem;
                min-height: 400px;
            }
            
            .emergency-badge,
            .experience-badge {
                position: relative;
                top: auto;
                right: auto;
                bottom: auto;
                left: auto;
                margin: 1rem auto;
                display: inline-block;
                width: 100%;
                max-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .services-quick-list .col-6 {
                width: 100%;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-cta .btn {
                width: 100%;
                text-align: center;
            }
            
            .service-tabs-modern {
                justify-content: center;
            }
            
            .service-tab-modern {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .services-hero-section {
                padding: 40px 0;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .service-quick-item {
                padding: 0.6rem;
            }
            
            .service-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .feature-item {
                padding: 0.5rem;
            }
            
            .feature-item i {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 400px) {
            .hero-content h1 {
                font-size: 1.6rem;
            }
            
            .hero-cta .btn {
                font-size: 0.9rem;
                padding: 0.7rem 1.5rem;
            }
        }
  