:root {
    --primary-red: #ff0000;
    --accent-white: #ffffff;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-light: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background: var(--primary-red);
    color: var(--text-light);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
}

.site-brand .site-logo {
    width: 55px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    padding: 4px;
}

.site-brand span {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: var(--accent-white);
}

.btn-nav, .cta-btn {
    background: var(--accent-white) !important;
    color: var(--primary-red) !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.btn-nav:hover, .cta-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #cc0000 !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-red);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-white);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    padding: 100px 20px;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 25px 30px;
    animation: fadeInUp 1s ease-out;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    animation: shatterText 0.8s ease-out 0.5s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-content button {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-content button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Shattering Animation Keyframes */
@keyframes shatterText {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(25px) scale(1.1);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
button, .btn {
    padding: 10px 20px;
    background: var(--primary-red);
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    color: var(--text-light);
    border-radius: 4px;
}

button:hover, .btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

/* Main Content Sections */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
}

.section-title {
    display: inline-block;
    font-size: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-red);
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 120px;
    height: 4px;
    background: var(--primary-red);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title span {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Cards Layout */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    justify-items: stretch;
    align-items: start;
}

.card {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 20px;
}

.card p {
    color: #666;
    font-size: 14px;
}

.news-section {
    position: relative;
    background: linear-gradient(180deg, #b71c1c 0%, #d32f2f 42%, #f44336 100%);
    overflow: hidden;
    padding: 90px 0 70px;
}

.news-section::before,
.news-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.news-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, transparent 70%);
    top: -160px;
    right: -140px;
}

.news-section::after {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 235, 238, 0.25) 0%, transparent 65%);
    bottom: -140px;
    left: -120px;
}

.news-section-header {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.news-section-header .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #b71c1c;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.news-section-header .section-title {
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.05;
}

.news-section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
    transition: all 0.35s ease;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff1744, #d32f2f, #ff1744);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.news-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.news-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #b71c1c;
    font-weight: 700;
    letter-spacing: 0.01em;
    width: fit-content;
    transition: all 0.3s ease;
}

.news-card:hover .news-card-badge {
    background: linear-gradient(135deg, #ff1744 0%, #d32f2f 100%);
    color: white;
    transform: scale(1.05);
}

.news-card-title {
    color: #2e1111;
    font-size: 1.45rem;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: #ff1744;
}

.news-card-text {
    color: #5f4444;
    flex: 1;
    line-height: 1.75;
    font-size: 0.98rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-text {
    color: #333;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
}

.news-card-footer time {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-footer time {
    color: #ff1744;
}

.news-card-footer .btn {
    background: linear-gradient(135deg, #ff1744 0%, #d32f2f 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.news-card-footer .btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.4);
}

.news-card-footer time {
    color: #b71c1c;
    font-weight: 600;
}

.news-card-footer .btn {
    background: #b71c1c;
    border-radius: 999px;
    padding: 11px 20px;
    color: #fff;
    box-shadow: 0 14px 25px rgba(183, 28, 28, 0.24);
}

.news-card-footer .btn:hover {
    background: #930d0d;
}

/* Footer */
footer {
    background: var(--primary-red);
    color: var(--text-light);
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    header h2 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    nav {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-nav, .cta-btn {
        padding: 6px 12px !important;
        font-size: 14px !important;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(220, 53, 69, 0.9);
        margin-top: 5px;
        width: 100%;
        min-width: unset;
    }

    /* Disable hover on mobile, use click instead */
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}

/* Company Cards with Logos and Services */
.company-logo {
    text-align: center;
    margin-bottom: 10px;
}

.company-logo img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-logo img:hover {
    transform: scale(1.05);
}

.company-services {
    margin: 15px 0;
    text-align: left;
}

.company-services h4 {
    color: var(--primary-red);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.company-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-services li {
    padding: 3px 0;
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 15px;
}

.company-services li:before {
    content: "✓";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Enhanced Card Styling */
.card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.service-card {
    background: var(--surface-alt);
    border: 1px solid #1f1f1f;
    padding: 40px;
    transition: all 0.4s ease;
    height: 100%;
}
.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    background: #161616;
}
.service-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 300px;
    margin-bottom: 20px;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Buttons */
.btn-bold {
    background: var(--accent);
    color: white;
    font-weight: 900;
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}
.btn-bold:hover {
    background: transparent;
    color: var(--accent);
}

/* Shattering Particle Effects */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(255,255,255,0.05) 0%, transparent 50%);
    opacity: 0;
    z-index: 2;
    transition: opacity 1s ease-in-out;
}

.hero-slide.leaving::after {
    animation: particleShatter 1.5s ease-in-out forwards;
}

@keyframes particleShatter {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    30% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
    70% {
        opacity: 0.4;
        transform: scale(0.9) rotate(-3deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.2) rotate(10deg);
    }
}

/* Enhanced text shattering effect */
.shatter-text {
    display: inline-block;
    animation: textShatter 0.8s ease-out both;
}

@keyframes textShatter {
    0% {
        transform: translateY(20px) rotateX(90deg);
        opacity: 0;
        filter: blur(5px);
    }
    50% {
        transform: translateY(-5px) rotateX(-10deg);
        opacity: 0.7;
        filter: blur(2px);
    }
    100% {
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
        filter: blur(0);
    }
}

/* Loading animation for initial load */
.hero-content {
    animation-fill-mode: both;
}

.contact-cta {
    background: var(--accent);
    color: white;
}

.contact-cta .btn {
    color: white;
    border-color: white;
}

.contact-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0;
    border-top: 1px solid #222;
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2rem; }
}

/* Enhanced Attractive Features */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary-accent));
    z-index: 9999;
    transition: width 0.25s ease;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

#back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Mobile Responsive for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
        min-height: 55vh;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .cards {
        gap: 18px;
    }

    .section {
        padding: 50px 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 40px 12px;
    }
}

/* Mobile Responsive for Company Cards */
@media (max-width: 768px) {
    .company-logo img {
        width: 60px;
        height: 60px;
    }

    .company-services h4 {
        font-size: 14px;
    }

    .company-services li {
        font-size: 13px;
        padding-left: 12px;
    }

    .company-services li:before {
        font-size: 12px;
    }
}



.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(230, 57, 70, 0.4);
    border-radius: 50%;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Enhanced animations */
.animate__fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





