.elementor-105 .elementor-element.elementor-element-02466df{--display:flex;}/* Start custom CSS *//* === Base Styles === */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
        
:root {
    /* New color palette */
    --primary: #c52d2a;
    --primary-dark: #9e241f;
    --primary-light: #e07a70;
    --secondary: #e07a70;
    --secondary-dark: #c55d53;
    --secondary-light: #f0b4ad;
    --tertiary: #3a8f94;
    --tertiary-dark: #2d7276;
    --tertiary-light: #7abec1;
    --neutral: #8c8c89;
    --neutral-dark: #6e6e6b;
    --neutral-light: #c2c2c0;

    /* Functional colors */
    --accent: #3a8f94; /* Using tertiary as accent */
    --accent-light: #7abec1;
    --light: #f5f9fc;
    --dark: #1a2e3d;
    --text: #333333;
    
    /* Grayscale */
    --gray-light: #f0f2f5;
    --gray: #e0e0e0;
    --gray-dark: #888;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--gray-light);
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 0;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            font-weight: 600;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-dark);
        }
        
        /* === Navbar === */
        .navbar {
            background-color: white;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
        }
        
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .logo i {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--dark);
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--primary);
        }
        
        .nav-links a.active::after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* === Header === */
        .page-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCI+CiAgPGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iMzgiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIgc3Ryb2tlLXdpZHRoPSIyIiAvPgo8L3N2Zz4=');
            opacity: 0.4;
        }
        
        .page-header .container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .page-header .subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 20px auto 0;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
        }
        
        /* === Control Section === */
        .control-section {
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .control-card {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 25px;
        }
        
        .control-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .search-box {
            flex: 1;
            min-width: 250px;
            max-width: 500px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid var(--gray);
            border-radius: 50px;
            font-size: 1rem;
            padding-left: 50px;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        
        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 15px;
            border: 1px solid var(--gray);
            border-radius: 50px;
            background: white;
            color: var(--text);
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* === Teams Section === */
        .teams-section {
            padding: 50px 0;
        }
        
        .section-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .section-header p {
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .units-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .unit-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-top: 4px solid var(--accent);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .unit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .unit-header {
            background: var(--light);
            padding: 20px 25px;
            border-bottom: 1px solid var(--gray);
            position: relative;
        }
        
        .unit-id {
            position: absolute;
            right: 20px;
            top: 20px;
            background: rgba(0,0,0,0.05);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--gray-dark);
            font-weight: 500;
        }
        
        .unit-header h3 {
            margin: 0;
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 600;
            padding-right: 70px;
            line-height: 1.4;
        }
        
        .unit-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .team-section {
            margin-bottom: 25px;
        }
        
        .team-title {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .team-title i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .team-members {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .team-member {
            background: linear-gradient(to right, var(--secondary-light), var(--secondary));
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(0, 168, 89, 0.2);
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .team-member:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 168, 89, 0.3);
        }
        
        .team-member::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .coverage-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--primary);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: auto;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 102, 204, 0.2);
        }
        
        .coverage-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
        }
        
        .coverage-btn i {
            font-size: 1.1rem;
        }
        
        /* === Modal === */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
        }
        
        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: var(--radius-lg);
            max-width: 900px;
            width: 90%;
            position: relative;
            box-shadow: var(--shadow-lg);
            transform: translateY(-50px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .close-modal {
            position: absolute;
            right: 25px;
            top: 25px;
            width: 32px;
            height: 32px;
            background: var(--gray-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        
        .close-modal:hover {
            background: var(--primary);
            color: white;
            transform: rotate(90deg);
        }
        
        .modal-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 15px;
        }
        
        .modal-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .modal-title {
            margin: 0;
            color: var(--primary);
            font-size: 1.5rem;
            padding-right: 40px;
        }
        
        .modal-subtitle {
            color: var(--gray-dark);
            margin-top: 5px;
            font-weight: 400;
            font-size: 1rem;
        }
        
        .modal-body {
            margin-top: 20px;
        }
        
        .modal-image-container {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .modal-image {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .modal-info {
            margin-top: 20px;
            background: var(--light);
            padding: 20px;
            border-radius: var(--radius-md);
        }
        
        .modal-info-title {
            margin-top: 0;
            color: var(--dark);
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .modal-info-title i {
            color: var(--primary);
        }
        
        .coverage-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .coverage-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
        }
        
        .coverage-item i {
            color: var(--secondary);
            font-size: 0.9rem;
        }
        
        /* === Footer === */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-links i {
            color: var(--accent);
            font-size: 0.8rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }
        
        /* === Responsive === */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.3rem;
            }
            
            .page-header .subtitle {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .units-list {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .control-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .search-box {
                width: 100%;
                max-width: 100%;
            }
            
            .filter-options {
                width: 100%;
                margin-top: 10px;
                justify-content: center;
            }
            
            .modal-content {
                padding: 20px;
                margin: 10% auto;
            }
            
            .coverage-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 60px 0 80px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .page-header .subtitle {
                font-size: 1rem;
            }
            
            .units-list {
                grid-template-columns: 1fr;
            }
            
            .control-card {
                padding: 20px;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
            
            .modal-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .modal-title {
                padding-right: 0;
            }
            
            .close-modal {
                top: 15px;
                right: 15px;
            }
        }
        
        /* === Animations === */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* === Custom Scrollbar === */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--gray-light);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gray-dark);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        
                .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        .stat-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-bottom: 3px solid var(--accent);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--light);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--gray-dark);
            font-size: 0.95rem;
        }
        
        .no-results {
            text-align: center;
            padding: 50px 0;
            color: var(--gray-dark);
        }
        
        .no-results i {
            font-size: 3rem;
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .action-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .action-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */