.elementor-83 .elementor-element.elementor-element-5e91c9f{--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 {
    --primary: #c52d2a;
    --primary-dark: #9e241f;
    --primary-light: #f2c9c7;
    --secondary: #e07a70;
    --secondary-dark: #c55d53;
    --secondary-light: #f8d5d2;
    --accent: #3a8f94;
    --accent-light: #d1e8e9;
    --accent-dark: #2d7276;
    --light: #f5f9fc;
    --dark: #1a2e3d;
    --text: #333333;
    --gray-light: #f0f2f5;
    --gray: #e0e0e0;
    --gray-dark: #888;
    --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);
    --transition: all 0.3s ease;
    --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);
}

img {
    max-width: 100%;
}

/* === 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;
}

/* Mobile menu active state */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

/* === Header === */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0 120px;
    text-align: center;
    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 {
            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;
        }

.header-icon {
    margin-bottom: 5px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* === Navigation Tabs === */
.services-nav-container {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.service-tabs {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tab-btn {
    padding: 14px 25px;
    background: var(--gray-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.tab-btn i {
    font-size: 1.2rem;
}

/* === Service Sections === */
.service-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    display: none;
    overflow: hidden;
}

.service-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    display: flex;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--gray);
    background: var(--light);
}

.section-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: var(--primary);
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.section-title {
    flex: 1;
}

.section-title h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.8rem;
}

.section-title p {
    margin: 8px 0 0;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.section-body {
    padding: 40px;
}

/* === Content Layout === */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.text-content {
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--primary-light), var(--secondary-light));
    opacity: 0.1;
    z-index: 1;
}

.image-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.image-wrapper:hover .image-content {
    transform: scale(1.05);
}

/* === Feature List === */
.feature-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
    background: var(--light);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.3rem;
    min-width: 30px;
    padding-top: 3px;
}

.feature-text strong {
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* === Emergency Box === */
.emergency-box {
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}

.emergency-box h4 {
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.emergency-box h4 i {
    font-size: 1.3rem;
}

.emergency-box p {
    margin-bottom: 0;
}

/* === Infographic Section === */
.infographic-section {
    padding: 50px 0;
    background-color: white;
    margin-top: 40px;
    margin-bottom: 40px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-header-centered p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--gray);
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.step-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover .step-number {
    color: transparent;
}

.process-step:hover .step-icon {
    opacity: 1;
}

.step-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-description {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCI+CiAgPGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iMzgiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIgc3Ryb2tlLXdpZHRoPSIyIiAvPgo8L3N2Zz4=');
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn i {
    font-size: 1.1rem;
}

/* === 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.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-grid .image-wrapper {
        grid-row: 1;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .page-header {
        padding: 80px 0 100px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .section-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .section-body {
        padding: 25px 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .service-tabs {
        padding: 15px;
        gap: 10px;
    }
    
    .emergency-box {
        padding: 20px;
    }
    
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */