* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    padding: 0 3rem;
}

/* Sticky Top Bar */
.top-bar {
    position: sticky;
    top: 0;
    background: #0B1F3A;
    color: #fff;
    padding: 0.6rem 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-bar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-left i {
    color: #D7262E;
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

/* Top Language Selector */
.top-language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.top-lang-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-lang-btn .fi {
    font-size: 1.2rem;
}

.top-lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #D7262E;
    transform: translateY(-2px);
}

.top-lang-btn.active {
    background: #D7262E;
    border-color: #D7262E;
}

/* Header */
header {
    background: #FFFFFF;
    padding: .2rem 0;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    z-index: 100;
}

header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
}

.logo-img-mobile {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 0.3rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D7262E;
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #D7262E;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta-btn {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    color: #FFFFFF;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(215, 38, 46, 0.3);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 38, 46, 0.4);
    color: #FFFFFF;
}

.header-cta-btn i {
    font-size: 1rem;
}

/* Language Selector - Removed from header */
.language-selector {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: #0B1F3A;
    color: #FFFFFF;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: #D7262E;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    background: #0B1F3A;
    color: #FFFFFF;
}

.mobile-menu-header .logo {
    color: #FFFFFF;
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    color: #D7262E;
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid #E5E7EB;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav a i {
    color: #D7262E;
    font-size: 1.1rem;
    width: 25px;
}

.mobile-nav a:hover {
    background: #F3F4F6;
    color: #D7262E;
    padding-left: 2rem;
}

.mobile-language-selector {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.mobile-language-selector h4 {
    color: #0B1F3A;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mobile-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.mobile-lang-btn {
    padding: 0.8rem;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.mobile-lang-btn .fi {
    font-size: 1.3rem;
}

.mobile-lang-btn:hover {
    border-color: #D7262E;
}

.mobile-lang-btn.active {
    background: #0B1F3A;
    color: #FFFFFF;
    border-color: #0B1F3A;
}

.mobile-contact {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #F3F4F6;
    border-radius: 4px;
    color: #0B1F3A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-contact-btn i {
    color: #D7262E;
    font-size: 1.1rem;
}

.mobile-contact-btn:hover {
    background: #0B1F3A;
    color: #FFFFFF;
}

.mobile-contact-btn:hover i {
    color: #FFFFFF;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    border-radius: 50px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(215, 38, 46, 0.3);
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 38, 46, 0.4);
    color: #FFFFFF;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.heroSwiper .swiper-wrapper {
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 36px),
        repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 36px);
    z-index: 2;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
}

.hero-content .container-fluid {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    text-align: center;
}

.hero-text .hero-cta {
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.2;
    font-weight: 800;
    animation: fadeInUp 1s ease-out;
}

.hero-text h1 .highlight {
    color: #D7262E;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #E5E7EB;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: #D7262E;
    color: #FFFFFF;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #b81f26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 38, 46, 0.4);
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 1.2rem 2.5rem;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #0B1F3A;
}

/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

.hero-navigation {
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    pointer-events: none;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.hero-nav-btn:hover:not(.swiper-button-disabled) {
    background: #D7262E;
    border-color: #D7262E;
    transform: scale(1.1);
}

.hero-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Swiper Pagination Custom */
.hero-pagination {
    position: absolute !important;
    bottom: 1.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 100 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 0.8rem !important;
    width: auto !important;
    height: auto !important;
    top: auto !important;
    right: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s !important;
    margin: 0 !important;
    border-radius: 50% !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #D7262E !important;
    width: 40px !important;
    border-radius: 6px !important;
}

/* Hero Social Media */
.hero-social {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-social::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
}

.hero-social::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.3));
}

.hero-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.hero-social a:hover {
    background: #D7262E;
    border-color: #D7262E;
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(215, 38, 46, 0.4);
}

.hero-social a.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.hero-social a.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

.hero-social a.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.hero-social a.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    border-color: #DD2A7B;
}

.hero-social a.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Services */
.services {
    padding: 5rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(11,31,58,0.02) 50px, rgba(11,31,58,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(11,31,58,0.02) 50px, rgba(11,31,58,0.02) 51px);
    pointer-events: none;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #0B1F3A;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D7262E, #b81f26);
    border-radius: 2px;
}

.services .section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    height: 380px;
    box-shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(11, 31, 58, 0.85) 100%);
    z-index: 1;
    transition: all 0.4s;
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(215, 38, 46, 0.7) 0%, rgba(11, 31, 58, 0.95) 100%);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-bg {
    transform: scale(1.15);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #D7262E;
    transition: all 0.5s;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.15) translateY(-10px);
    color: #FFFFFF;
}

.service-content h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-content p {
    color: #E5E7EB;
    line-height: 1.7;
    opacity: 0.95;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.service-card:hover .service-content p {
    opacity: 1;
    color: #FFFFFF;
    transform: translateY(-5px);
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    color: #FFFFFF;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(215, 38, 46, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 38, 46, 0.5);
    color: #FFFFFF;
}

.btn-view-all i {
    transition: transform 0.3s;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Projects */
.projects {
    padding: 5rem 2rem;
    background: #FFFFFF;
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0B1F3A;
    font-weight: 800;
}

.projects .section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Swiper Slider */
.swiper {
    width: 100%;
    
}

.swiper-slide {
    height: auto;
}

.project-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.15);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: #0B1F3A;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-content p {
    color: #6B7280;
}

.swiper-pagination-bullet {
    background: #0B1F3A;
}

.swiper-pagination-bullet-active {
    background: #D7262E;
}

/* Footer */
footer {
    background: #0B1F3A;
    color: #E5E7EB;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #E5E7EB;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: #D7262E;
}

.footer-section p {
    color: #E5E7EB;
    line-height: 1.8;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #D7262E;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #D7262E;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9CA3AF;
}

/* Fixed Contact Buttons */
.fixed-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: #D7262E;
    color: #FFFFFF;
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(215, 38, 46, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .container-fluid {
        padding: 0 2rem;
    }
    
    .top-bar-left span:last-child {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-pagination {
        right: 1rem;
        gap: 0.6rem;
    }
    
    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .hero-pagination .swiper-pagination-bullet-active {
        height: 30px;
    }
    
    .hero-slider-controls {
        bottom: 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-cta-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 550px;
    }
    
    .hero-text {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .top-bar-info {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-pagination {
        display: none !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-slider-controls {
        bottom: 1rem;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fixed-contact {
        bottom: 1rem;
        right: 1rem;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .hero-slider-controls {
        bottom: 0.8rem;
    }
}


/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-pagination {
        right: 1rem !important;
        gap: 0.6rem !important;
    }
    
    .hero-pagination .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }
    
    .hero-pagination .swiper-pagination-bullet-active {
        height: 30px !important;
    }
    
    .hero-slider-controls {
        bottom: 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .hero-social {
        left: 1rem;
        gap: 1rem;
    }
    
    .hero-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-social::before,
    .hero-social::after {
        height: 2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .container-fluid {
        padding: 0 2rem;
    }
    
    .top-bar .container-fluid {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 550px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-text {
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .top-bar .container-fluid {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .top-bar-left {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-pagination {
        display: none !important;
    }
    
    .hero-social {
        display: none !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-slider-controls {
        bottom: 1rem;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fixed-contact {
        bottom: 1rem;
        right: 1rem;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .container-fluid {
        padding: 0 1rem;
    }
    
    .header-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .hero-slider-controls {
        bottom: 0.8rem;
    }
    
    .top-bar-left span {
        font-size: 0.8rem;
    }
}


/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    pointer-events: none;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-image-large {
    grid-column: 1 / 3;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.about-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    color: #FFFFFF;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(215, 38, 46, 0.5);
    backdrop-filter: blur(10px);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

.about-image-small {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 280px;
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding-left: 2rem;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(215, 38, 46, 0.15);
    color: #D7262E;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(215, 38, 46, 0.3);
}

.about-content h2 {
    font-size: 2.8rem;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-content h2 .highlight {
    color: #D7262E;
}

.about-intro {
    font-size: 1.05rem;
    color: #E5E7EB;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #FFFFFF;
    font-size: 1.3rem;
}

.feature-text h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: #E5E7EB;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #D7262E;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #E5E7EB;
    font-weight: 500;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .about-image-large {
        grid-column: 1;
        height: 300px;
    }
    
    .about-image-small {
        height: 220px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .about-cta .btn-primary,
    .about-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* Projects */
.projects {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(11,31,58,0.02) 60px, rgba(11,31,58,0.02) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(11,31,58,0.02) 60px, rgba(11,31,58,0.02) 61px);
    pointer-events: none;
    z-index: 1;
}

.projects .container {
    position: relative;
    z-index: 2;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #0B1F3A;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.projects h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: rgba(215, 38, 46, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D7262E, #b81f26);
    border-radius: 2px;
}

.projects .section-subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

/* Swiper Slider */
.projectsSwiper {
    width: 100%;
    padding-bottom: 5rem;
    margin-top: 2rem;
}

.projectsSwiper .swiper-slide {
    height: auto;
}

.project-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(215, 38, 46, 0.05) 0%, rgba(11, 31, 58, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.2);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 31, 58, 0.4) 100%);
    z-index: 2;
    transition: all 0.4s;
}

.project-card:hover .project-image::before {
    background: linear-gradient(180deg, rgba(215, 38, 46, 0.4) 0%, rgba(11, 31, 58, 0.7) 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.15) rotate(2deg);
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    color: #FFFFFF;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(215, 38, 46, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6B7280;
}

.project-meta i {
    color: #D7262E;
}

.project-content h3 {
    color: #0B1F3A;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.project-card:hover .project-content h3 {
    color: #D7262E;
}

.project-content p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D7262E;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.project-link i {
    transition: transform 0.3s;
}

.project-link:hover {
    gap: 0.8rem;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Swiper Navigation */
.projectsSwiper .swiper-button-next,
.projectsSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.15);
    transition: all 0.3s;
}

.projectsSwiper .swiper-button-next::after,
.projectsSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
    color: #0B1F3A;
    font-weight: 900;
}

.projectsSwiper .swiper-button-next:hover,
.projectsSwiper .swiper-button-prev:hover {
    background: #D7262E;
    transform: scale(1.1);
}

.projectsSwiper .swiper-button-next:hover::after,
.projectsSwiper .swiper-button-prev:hover::after {
    color: #FFFFFF;
}

/* Swiper Pagination */
.projectsSwiper .swiper-pagination {
    bottom: 0 !important;
}

.projectsSwiper .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #D1D5DB !important;
    opacity: 1 !important;
    transition: all 0.3s !important;
}

.projectsSwiper .swiper-pagination-bullet-active {
    background: #D7262E !important;
    width: 40px !important;
    border-radius: 6px !important;
}

@media (max-width: 768px) {
    .projects h2 {
        font-size: 2rem;
    }
    
    .project-image {
        height: 220px;
    }
    
    .projectsSwiper .swiper-button-next,
    .projectsSwiper .swiper-button-prev {
        display: none;
    }
}


/* Footer */
footer {
    background: #0B1F3A;
    color: #E5E7EB;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    pointer-events: none;
    z-index: 1;
}

/* Footer Top CTA */
.footer-top {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.footer-cta-content h3 {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta-button {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cta {
    background: #FFFFFF;
    color: #D7262E;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #D7262E;
}

.btn-cta-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 1.2rem 2.5rem;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: #FFFFFF;
    color: #D7262E;
}

/* Footer Main */
.footer-main {
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #D7262E;
    border-radius: 2px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: #D7262E;
    border-color: #D7262E;
    transform: translateY(-5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #E5E7EB;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a i {
    color: #D7262E;
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.footer-section a:hover {
    color: #FFFFFF;
    padding-left: 0.5rem;
}

.footer-section a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #E5E7EB;
}

.footer-contact i {
    color: #D7262E;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 2rem 1rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta-button {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #E5E7EB;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    padding: 3rem;
    border-radius: 16px;
    color: #FFFFFF;
    position: sticky;
    top: 100px;
}

.contact-info-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: #E5E7EB;
    margin-bottom: 2.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(215, 38, 46, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(215, 38, 46, 0.3);
}

.contact-icon i {
    color: #D7262E;
    font-size: 1.3rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #E5E7EB;
    line-height: 1.7;
}

.contact-details a {
    color: #E5E7EB;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #D7262E;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social-links a:hover {
    background: #D7262E;
    border-color: #D7262E;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #F3F4F6;
    padding: 3rem;
    border-radius: 16px;
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: #0B1F3A;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #6B7280;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #0B1F3A;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D7262E;
    box-shadow: 0 0 0 3px rgba(215, 38, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    font-weight: 400;
    color: #6B7280;
    cursor: pointer;
}

.form-checkbox label a {
    color: #D7262E;
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    color: #FFFFFF;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(215, 38, 46, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 38, 46, 0.5);
}

/* Map Section */
.map-section {
    padding: 0;
    background: #F3F4F6;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        position: relative;
        top: 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 2rem 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .map-container {
        height: 400px;
    }
}


/* Services Page Styles */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    pointer-events: none;
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: #E5E7EB;
}

/* Services Detail Section */
.services-detail {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 2px solid #E5E7EB;
}

.service-detail-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15);
    height: 500px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-detail-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(215, 38, 46, 0.4);
    z-index: 2;
}

.service-detail-badge i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: #0B1F3A;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D7262E, #b81f26);
    border-radius: 2px;
}

.service-intro {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F3F4F6;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-feature-item:hover {
    background: #E5E7EB;
    transform: translateX(10px);
}

.service-feature-item i {
    color: #D7262E;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-feature-item span {
    color: #0B1F3A;
    font-weight: 500;
    font-size: 0.95rem;
}

.service-applications {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.service-applications h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.application-tags span {
    background: rgba(215, 38, 46, 0.2);
    color: #FFFFFF;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(215, 38, 46, 0.3);
    transition: all 0.3s;
}

.application-tags span:hover {
    background: #D7262E;
    border-color: #D7262E;
    transform: translateY(-2px);
}

/* Services CTA Section */
.services-cta-section {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.05) 60px, rgba(255,255,255,0.05) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.05) 60px, rgba(255,255,255,0.05) 61px);
    pointer-events: none;
}

.services-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-buttons .btn-primary {
    background: #FFFFFF;
    color: #D7262E;
}

.services-cta-buttons .btn-primary:hover {
    background: #0B1F3A;
    color: #FFFFFF;
}

.services-cta-buttons .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.services-cta-buttons .btn-secondary:hover {
    background: #FFFFFF;
    color: #D7262E;
}

/* Responsive */
@media (max-width: 992px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }
    
    .service-detail-image {
        height: 400px;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .services-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 2rem 3rem;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
    
    .services-detail {
        padding: 4rem 2rem;
    }
    
    .service-detail-card {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .service-detail-badge {
        width: 60px;
        height: 60px;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .service-detail-badge i {
        font-size: 1.8rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .services-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .services-cta-content p {
        font-size: 1rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
    }
    
    .services-cta-buttons .btn-primary,
    .services-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* About Page Styles */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: #E5E7EB;
}

/* Company Story */
.company-story {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(215, 38, 46, 0.1);
    color: #D7262E;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(215, 38, 46, 0.2);
}

.story-content h2 {
    font-size: 2.8rem;
    color: #0B1F3A;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.story-content h2 .highlight {
    color: #D7262E;
}

.story-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: #F3F4F6;
    border-radius: 12px;
    border-left: 4px solid #D7262E;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: #E5E7EB;
    transform: translateX(10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: #FFFFFF;
    font-size: 1.5rem;
}

.highlight-text h4 {
    color: #0B1F3A;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.highlight-text p {
    color: #6B7280;
    font-size: 0.95rem;
    margin: 0;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.story-image-main {
    grid-column: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15);
    height: 400px;
}

.story-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.story-image-main:hover img {
    transform: scale(1.1);
}

.story-image-secondary {
    grid-column: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 31, 58, 0.15);
    height: 280px;
}

.story-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.story-image-secondary:hover img {
    transform: scale(1.1);
}

/* Mission Vision Values */
.mission-vision {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mvv-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D7262E, #b81f26);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(215, 38, 46, 0.1) 0%, rgba(215, 38, 46, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.mvv-card:hover .mvv-icon {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    transform: scale(1.1) rotate(10deg);
}

.mvv-icon i {
    font-size: 2rem;
    color: #D7262E;
    transition: color 0.4s;
}

.mvv-card:hover .mvv-icon i {
    color: #FFFFFF;
}

.mvv-card h3 {
    font-size: 1.8rem;
    color: #0B1F3A;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #6B7280;
    line-height: 1.8;
    font-size: 1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #0B1F3A;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D7262E, #b81f26);
    border-radius: 2px;
}

.section-header p {
    color: #6B7280;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-item {
    background: #F3F4F6;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.why-item:hover::before {
    opacity: 1;
}

.why-item > * {
    position: relative;
    z-index: 1;
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(215, 38, 46, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.4s;
}

.why-item:hover .why-number {
    color: rgba(255, 255, 255, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.why-icon i {
    font-size: 1.8rem;
    color: #D7262E;
    transition: all 0.4s;
}

.why-item:hover .why-icon {
    transform: scale(1.1);
}

.why-item h4 {
    font-size: 1.3rem;
    color: #0B1F3A;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.4s;
}

.why-item:hover h4 {
    color: #FFFFFF;
}

.why-item p {
    color: #6B7280;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.4s;
}

.why-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Statistics Section */
.statistics-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    display: inline;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
}

.stat-label {
    color: #E5E7EB;
    font-size: 1rem;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.team-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
    transition: all 0.4s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 31, 58, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.team-social a:hover {
    background: #D7262E;
    transform: translateY(-5px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    color: #0B1F3A;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-info p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* Certificates Section */
.certificates-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.certificate-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
    transition: all 0.4s;
}

.certificate-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(215, 38, 46, 0.1) 0%, rgba(215, 38, 46, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.certificate-card:hover .certificate-icon {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    transform: scale(1.1);
}

.certificate-icon i {
    font-size: 2rem;
    color: #D7262E;
    transition: color 0.4s;
}

.certificate-card:hover .certificate-icon i {
    color: #FFFFFF;
}

.certificate-card h4 {
    font-size: 1.3rem;
    color: #0B1F3A;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.certificate-card p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.05) 60px, rgba(255,255,255,0.05) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.05) 60px, rgba(255,255,255,0.05) 61px);
    pointer-events: none;
}

.about-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-primary {
    background: #FFFFFF;
    color: #D7262E;
}

.about-cta-buttons .btn-primary:hover {
    background: #0B1F3A;
    color: #FFFFFF;
}

.about-cta-buttons .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.about-cta-buttons .btn-secondary:hover {
    background: #FFFFFF;
    color: #D7262E;
}

/* Responsive */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 2rem 3rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .company-story,
    .mission-vision,
    .why-choose,
    .statistics-section,
    .team-section,
    .certificates-section {
        padding: 4rem 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .about-cta-content p {
        font-size: 1rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn-primary,
    .about-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* Projects Page Styles */

/* Projects Hero */
.projects-hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    pointer-events: none;
}

.projects-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.projects-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1rem;
}

.projects-hero p {
    font-size: 1.2rem;
    color: #E5E7EB;
}

/* Projects Filter */
.projects-filter-section {
    padding: 3rem 2rem;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #F3F4F6;
    color: #0B1F3A;
    padding: 0.9rem 2rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    background: #E5E7EB;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    color: #FFFFFF;
    border-color: #D7262E;
    box-shadow: 0 4px 15px rgba(215, 38, 46, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

/* Projects Grid */
.projects-grid-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-grid-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
    transition: all 0.4s;
    opacity: 1;
    transform: scale(1);
}

.project-grid-card.hidden {
    display: none;
}

.project-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
}

.project-grid-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.project-grid-card:hover .project-grid-image img {
    transform: scale(1.15);
}

.project-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 31, 58, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.project-grid-card:hover .project-grid-overlay {
    opacity: 1;
}

.project-view-btn {
    width: 60px;
    height: 60px;
    background: #D7262E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    transform: scale(0.8);
}

.project-grid-card:hover .project-view-btn {
    transform: scale(1);
}

.project-view-btn:hover {
    background: #FFFFFF;
    color: #D7262E;
    transform: scale(1.1);
}

.project-grid-content {
    padding: 2rem;
}

.project-grid-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(215, 38, 46, 0.1);
    color: #D7262E;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-grid-content h3 {
    font-size: 1.4rem;
    color: #0B1F3A;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.project-grid-card:hover .project-grid-content h3 {
    color: #D7262E;
}

.project-grid-content p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-grid-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.project-grid-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.9rem;
}

.project-grid-meta i {
    color: #D7262E;
}

.project-grid-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.project-grid-tags span {
    background: #F3F4F6;
    color: #0B1F3A;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.project-grid-tags span:hover {
    background: #D7262E;
    color: #FFFFFF;
}

/* Project Stats */
.project-stats-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 100%);
    position: relative;
    overflow: hidden;
}

.project-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
    pointer-events: none;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.project-stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.project-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.project-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.project-stat-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.project-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.project-stat-suffix {
    display: inline;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
}

.project-stat-label {
    color: #E5E7EB;
    font-size: 1rem;
    font-weight: 500;
}

/* Projects CTA */
.projects-cta-section {
    background: linear-gradient(135deg, #D7262E 0%, #b81f26 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.projects-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,255,255,0.05) 60px, rgba(255,255,255,0.05) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.05) 60px, rgba(255,255,255,0.05) 61px);
    pointer-events: none;
}

.projects-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.projects-cta-content h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.projects-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.projects-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.projects-cta-buttons .btn-primary {
    background: #FFFFFF;
    color: #D7262E;
}

.projects-cta-buttons .btn-primary:hover {
    background: #0B1F3A;
    color: #FFFFFF;
}

.projects-cta-buttons .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.projects-cta-buttons .btn-secondary:hover {
    background: #FFFFFF;
    color: #D7262E;
}

/* Responsive */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .projects-hero h1 {
        font-size: 2.5rem;
    }
    
    .filter-buttons {
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .project-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 6rem 2rem 3rem;
    }
    
    .projects-hero h1 {
        font-size: 2rem;
    }
    
    .projects-hero p {
        font-size: 1rem;
    }
    
    .projects-filter-section {
        padding: 2rem 1rem;
        position: relative;
    }
    
    .filter-buttons {
        gap: 0.6rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .projects-grid-section {
        padding: 3rem 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-grid-image {
        height: 220px;
    }
    
    .project-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .projects-cta-content p {
        font-size: 1rem;
    }
    
    .projects-cta-buttons {
        flex-direction: column;
    }
    
    .projects-cta-buttons .btn-primary,
    .projects-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
