 :root {
            --primary-navy: #001f3f;
            --light-navy: #003d7a;
            --accent-white: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: var(--primary-navy) !important;
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-white) !important;
        }
        
        .nav-link {
            color: var(--accent-white) !important;
            margin: 0 0.5rem;
            transition: opacity 0.3s;
        }
        
        .nav-link:hover {
            opacity: 0.8;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        
        .btn-custom {
            background-color: white;
            color: var(--primary-navy);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            transition: transform 0.3s;
        }
        
        .btn-custom:hover {
            transform: scale(1.05);
            background-color: #f0f0f0;
        }
        
        .section-title {
            color: var(--primary-navy);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--primary-navy);
        }
        
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .service-card .card-header {
            background-color: var(--primary-navy);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            padding: 1.5rem;
        }
        
        .service-card .card-body {
            padding: 2rem;
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }
        
        .brands-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        
        .brand-badge {
            display: inline-block;
            background-color: var(--primary-navy);
            color: white;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-navy);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-navy);
        }
        
        .pricing-table {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .pricing-table thead {
            background-color: var(--primary-navy);
            color: white;
        }
        
        .float-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: transform 0.3s;
            text-decoration: none;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
            color: white;
        }
        
        .float-call {
            bottom: 90px;
            right: 20px;
            background-color: var(--primary-navy);
        }
        
        .float-whatsapp {
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
        }
        
        .contact-section {
            background-color: var(--primary-navy);
            color: white;
            padding: 60px 0;
        }
        
        .contact-info {
            font-size: 1.1rem;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: white;
        }
        
        footer {
            background-color: #000;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .carousel-item {
            height: 400px;
            background-color: #f0f0f0;
        }
        
        .carousel-item img {
            height: 100%;
            object-fit: cover;
        }
        
        .service-detail-section {
            padding: 60px 0;
        }
        
        .service-detail-card {
            margin-bottom: 40px;
        }
        
        .img-placeholder {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            border-radius: 10px;
        }
        
        .cta-button {
            background-color: var(--primary-navy);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: opacity 0.3s;
        }
        
        .cta-button:hover {
            opacity: 0.8;
            color: white;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }



 
  .image-container {
    /* Define the desired height for the container, e.g., for uniform image galleries */
    height: 450px; 
    /* Ensures no overflow is visible if the image extends beyond the container (optional) */
    overflow: hidden; 
  }

  .cropped-center {
    width: 100%;
    height: 100%;
    /* This is the key: it scales the image to cover the entire container while maintaining aspect ratio, then crops equally from the sides/top/bottom */
    object-fit: cover;
    /* This centers the visible portion of the image within the container */
    object-position: center; 
  }
 
