/* Reset and Base Styles */

:root {
    --primary-color: #1e3a8acc;
    /* Green from logo */
    --secondary-color: #0056a3;
    /* Blue for finance */
    --accent-color: #ff6b00;
    /* Orange accent from brochure */
    --text-color: #333;
    --background-color: #f4f7fa;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #262626;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

a {
    text-decoration: none;
}


/* Directions */
.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(40px);
}

.fade-top {
    transform: translateY(-50px);
}

.fade-bottom {
    transform: translateY(40px);
}

/* Show class */
.show {
    opacity: 1;
    transform: translate(0, 0);
}


/* Color System */
.orange-text {
    color: #fb923c;
}

.dark-text {
    color: #262626;
}

.green-text {
    color: #16a34a;
}

.blue-text {
    color: #2563eb;
}

.red-text {
    color: #dc2626;
}

/* Emergency Banner */
.emergency-banner {
    background-color: #1E3A8ACC;
    color: white;
    padding: 0.75rem 0;
}

.emergency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-icon {
    width: 1rem;
    height: 1rem;
}

.emergency-banner span {
    font-size: 0.875rem;
    font-weight: 500;
}

.image {
    height: 120px;
    margin-left: 20px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
    position: relative;
    z-index: 1000;

}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-wrapper {
    display: flex;

    align-items: center;
    gap: 1rem;
}

.logo-circl {
    position: absolute;
}

.logo-circle {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.shield-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.logo-text h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #262626;
    margin: 0;
    letter-spacing: -0.025em;
}

.logo-text p {
    font-size: 0.875rem;
    color: #737373;
    margin: 0;
    font-weight: 500;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #262626;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.navigation {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dc2626;
    border-radius: 1px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    margin-left: 30px;
}

.emergency-btn:hover {
    background-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.language-btn {
    background-color: #f9fafb;
    color: #374151;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.language-btn:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #dc2626;
}

.mobile-emergency {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-emergency-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.mobile-emergency-btn:hover {
    background-color: #b91c1c;
}


.text-xl {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #f1c40f;
}

/* Hero Section 
.hero {
    position: relative;
    min-height: 80vh;
    /*background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    background: black;
    padding: 5rem 0;
    align-items: center;
    justify-content: center;
    color: black;
}
*/
.impact {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #1e3a8a, #2a3f5d);

    padding: 5rem 0;
    align-items: center;
    justify-content: center;
    color: black;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('video/video1.MOV');*/
    background: url('video/video1.MOV') no-repeat center center / cover;
    background-size: cover;
    background-position: center;
    opacity: 0.9;

}



.emergency-banner-icon {
    display: flex;
    justify-content: space-between;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-text {
    padding-top: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 48rem;
}

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

.btn-emergency {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-emergency:hover {
    background-color: #b91c1c;
}

.btn-outline {
    background-color: transparent;
    color: #262626;
    border: 2px solid #d1d5db;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* Statistics Cards */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.orange-card {
    background-color: #fff7ed;
}

.blue-card {
    background-color: #eff6ff;
}

.green-card {
    background-color: #f0fdf4;
}

.red-card {
    background-color: #fef2f2;
}

.stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto 0.5rem;
}

.orange-card .stat-icon {
    color: #ea580c;
}

.blue-card .stat-icon {
    color: #2563eb;
}

.green-card .stat-icon {
    color: #16a34a;
}

.red-card .stat-icon {
    color: #dc2626;
}

.stat-title {
    font-size: 0.75rem;
    color: #737373;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-subtitle {
    font-size: 0.75rem;
    color: #737373;
}

/* Services Section */
.services {
    padding: 0;
    padding-bottom: 20px;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.section-header p {
    font-size: 1.25rem;
    color: #737373;
    max-width: 48rem;
    margin: 0 auto;
}

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

.service-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-icon-wrapper {
    background-color: #fef2f2;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: #fee2e2;
}

.service-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.service-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #262626;
}

.service-card p {
    color: #737373;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}


/* Services */
.services2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service2-card {
    background: var(--background-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service2-card:hover {
    transform: translateY(-10px);
}

.service2-card i {
    color: #28a745;
}

.service2-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service2-card h3 {
    font-size: 20px;
    color: #0056a3;
    margin-bottom: 15px;
}



.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #fb923c;
    border-radius: 50%;
}

.service-btn {
    background-color: transparent;
    border: 1px solid #d1d5db;
    color: #262626;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: #737373;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

.value-card {
    background-color: white;
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 2rem;
    height: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #737373;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: #262626;
    color: white;
    padding: 2rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-shield {
    width: 2rem;
    height: 2rem;
    color: #dc2626;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-emergency-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.footer-emergency-btn:hover {
    background-color: #b91c1c;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fb923c;
    margin-top: 0.25rem;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #dc2626;
}

.footer-section1 {
    padding-left: 50px;
    margin-top: 50px;
}

.footer-section {
    margin-top: 50px;
}

/* Responsive Design */

@media (max-width: 2080px) {
    .social-links a {
        font-size: 30px;
    }

    .emergency-banner span {
        font-size: 20px;
    }
}

@media (max-width: 1480px) {
    .social-links a {
        font-size: 20px;
    }

    .emergency-banner span {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .logo-section {
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .image {
        height: 100px;
        margin-left: 0;
    }

    .footer-section1 {
        padding-left: 0px;
    }

    .services2 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 700px;
        background-image: url('./car3.webp');
        background-size: cover;
        background-position: center;
        opacity: 0.4;
    }

    .emergency-banner span {
        font-size: 12px;

        font-weight .container {
            padding: 0 0.5rem;
        }
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }


    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .image {
        height: 100px;
        margin-left: 0;
    }

    .footer-section1 {
        padding-left: 0px;
        text-align: center;
    }

    .contact-item {
        display: block;
    }

    .contact-icon {
        display: none;
    }

    .emergency-banner span {
        font-size: 10px;
    }

    .phone-icon {
        width: 1rem;
        height: 15px;
    }

    .social-links a {
        color: white;
        font-size: 12px;
        transition: 0.3s;
    }

    .social-links {
        display: flex;
        gap: 6px;
    }

    /* Directions */
    .fade-left {
        transform: none;
    }

    .fade-right {
        transform: none;
    }

    .fade-top {
        transform: none;
    }

    .fade-bottom {
        transform: none;
    }
}




/* News Container */
.news-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Single News Card */
.news-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* News Image */
.news-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* News Content */
.news-content {
    padding: 15px 20px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.news-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .news-section {
        flex-direction: column;
        align-items: center;
    }

    .news-card {
        max-width: 90%;
    }
}