:root {
    --red-primary: #C41E3A;
    --red-dark: #8B0000;
    --red-light: #E8455E;
    --blue-primary: #1B2A4A;
    --blue-dark: #0F1A30;
    --blue-light: #2D4470;
    --gold-accent: #D4A843;
    --white: #FFFFFF;
    --gray-light: #F5F7FA;
    --gray-medium: #E2E8F0;
    --gray-text: #6B7280;
    --dark-text: #1F2937;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--white);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../img/redowlpn.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80vmin;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--red-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-owl {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader-owl::before,
.loader-owl::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: owlBounce 0.8s ease-in-out infinite alternate;
}

.loader-owl::before {
    left: 15px;
    animation-delay: 0s;
}

.loader-owl::after {
    left: 45px;
    animation-delay: 0.2s;
}

@keyframes owlBounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

.loader-text {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 30px;
    letter-spacing: 3px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Top Bar */
.top-bar {
    background: var(--gray-light);
    color: var(--dark-text);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--gray-medium);
}

.top-bar a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--red-primary);
}

.top-bar i {
    margin-right: 5px;
    color: var(--red-primary);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.navbar-brand .owl-icon {
    width: 50px;
    height: 50px;
    margin-right: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-text);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--red-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 20px 16px !important;
    position: relative;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--red-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--red-primary) !important;
}

.nav-link.active {
    color: var(--red-primary) !important;
}

.dropdown-menu {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 220px;
}

.dropdown-item {
    color: var(--dark-text);
    padding: 10px 20px;
    font-size: 0.88rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--red-primary);
    color: var(--white);
    padding-left: 28px;
}

.navbar-toggler {
    border: 2px solid var(--red-primary);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C41E3A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-nav-cta {
    background: var(--red-primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 24px !important;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-nav-cta::after {
    display: none !important;
}

/* Page Sections */
.page-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-section.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--blue-light) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/heroback.jpg') center/cover;
    opacity: 0.15;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--red-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: var(--red-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title span {
    color: var(--red-primary);
    position: relative;
}

.hero-title .gold-text {
    color: var(--gold-accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 4px;
}

.hero-stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: 20%;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    top: 15%;
    right: -30px;
    animation-delay: 1.5s;
}

.hero-float-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--red-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.hero-float-card h6 {
    font-size: 0.8rem;
    margin-bottom: 2px;
    color: var(--dark-text);
}

.hero-float-card p {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin: 0;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn-red {
    background: var(--red-primary);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-red:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.35);
}

.btn-outline-red {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-red:hover {
    border-color: var(--red-primary);
    background: var(--red-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--gold-accent);
    color: var(--blue-dark);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    background: #E8BF5A;
    color: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--red-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label i {
    font-size: 0.7rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--red-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 600px;
}

.section-desc.center {
    margin: 0 auto;
}

/* About Preview */
.about-preview {
    background: var(--gray-light);
}

.about-image-grid {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    z-index: 2;
}

.about-experience-badge h3 {
    font-size: 2.2rem;
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 0.7rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--dark-text);
}

.about-feature-list li i {
    width: 28px;
    height: 28px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--gray-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--red-primary);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 42, 74, 0.8), transparent);
}

.service-card-img .service-icon {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: var(--red-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    z-index: 2;
}

.service-card-body {
    padding: 28px;
}

.service-card-body h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--blue-dark);
}

.service-card-body p {
    color: var(--gray-text);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-body .learn-more {
    color: var(--red-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-card-body .learn-more:hover {
    gap: 12px;
}

/* Industry Cards */
.industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 26, 48, 0.95) 0%, rgba(15, 26, 48, 0.3) 50%, transparent 100%);
    transition: background 0.3s;
}

.industry-card:hover .overlay {
    background: linear-gradient(to top, rgba(196, 30, 58, 0.9) 0%, rgba(15, 26, 48, 0.5) 50%, transparent 100%);
}

.industry-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
}

.industry-card .content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.industry-card .content p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

.industry-card .industry-features {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-card .industry-features span {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    backdrop-filter: blur(5px);
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C41E3A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.stat-item .stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(196, 30, 58, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-primary);
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 6px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-medium);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.testimonial-card .quote {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-info h6 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--blue-dark);
}

.testimonial-card .author-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: var(--blue-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-brand .brand-name {
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    font-size: 0.92rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--red-primary);
    transform: translateY(-3px);
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--red-primary);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--red-primary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--red-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Page Header / Breadcrumb */
.page-header {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C41E3A' fill-opacity='0.04'%3E%3Cpath d='M50 50m-25 0a25 25 0 1 0 50 0a25 25 0 1 0-50 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.breadcrumb-custom li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.breadcrumb-custom li a {
    color: var(--gold-accent);
    text-decoration: none;
}

.breadcrumb-custom li.active {
    color: var(--white);
}

/* About Page */
.about-full {
    padding: 80px 0;
}

.about-full-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-full-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    transition: all 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--red-primary);
}

.value-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--red-primary);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.value-card:hover .icon-wrap {
    background: var(--red-primary);
    color: var(--white);
}

.value-card h5 {
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Team */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-card .team-img {
    height: 280px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-card .team-img .avatar-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.team-card .team-info {
    padding: 24px;
}

.team-card .team-info h5 {
    color: var(--blue-dark);
    margin-bottom: 4px;
}

.team-card .team-info p {
    color: var(--red-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card .team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.team-card .team-social a:hover {
    background: var(--red-primary);
    color: var(--white);
}

/* Service Detail Page */
.service-detail {
    padding: 80px 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-medium);
}

.service-detail-card .card-img {
    height: 350px;
    overflow: hidden;
}

.service-detail-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-card .card-content {
    padding: 40px;
}

.service-detail-card .card-content h3 {
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.service-detail-card .card-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--gray-light);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-feature-item i {
    color: var(--red-primary);
}

/* Careers */
.career-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.career-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.career-card .career-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.career-card h5 {
    color: var(--blue-dark);
    margin-bottom: 4px;
}

.career-card .career-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.career-card .career-meta span {
    font-size: 0.82rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.career-card .career-meta span i {
    color: var(--red-primary);
}

.career-tag {
    background: rgba(196, 30, 58, 0.08);
    color: var(--red-primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Contact Page */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
    background: var(--blue-primary);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(196, 30, 58, 0.15);
    border-radius: 50%;
}

.contact-info-card h3 {
    margin-bottom: 8px;
    position: relative;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    position: relative;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 30, 58, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-info-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    position: relative;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-social a:hover {
    background: var(--red-primary);
    transform: translateY(-3px);
}

/* Form Styles */
.form-control,
.form-select {
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.92rem;
    transition: all 0.3s;
    background: var(--gray-light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
    background: var(--white);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.map-placeholder {
    text-align: center;
    color: var(--gray-text);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--red-primary);
    margin-bottom: 12px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--red-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* Why Choose Us */
.why-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    transition: all 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-card .why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--red-primary);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: var(--red-primary);
    color: var(--white);
}

/* Process / Timeline */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--red-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step h5 {
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-medium);
    z-index: 1;
}

/* Newsletter */
.newsletter-section {
    background: var(--gray-light);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    border: 2px solid var(--gray-medium);
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 0.92rem;
    background: var(--white);
}

.newsletter-form input:focus {
    border-color: var(--red-primary);
    outline: none;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-item h3 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-experience-badge {
        width: 100px;
        height: 100px;
    }

    .about-experience-badge h3 {
        font-size: 1.8rem;
    }

    .about-img-float {
        width: 150px;
        height: 150px;
    }

    .nav-link {
        padding: 14px 16px !important;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .hero-float-card {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    padding: 24px 30px;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border: none;
    padding: 20px 30px 30px;
}

/* Tab Styles */
.nav-tabs-custom {
    border: none;
    gap: 8px;
    margin-bottom: 40px;
}

.nav-tabs-custom .nav-link {
    background: var(--gray-light);
    color: var(--blue-dark);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-tabs-custom .nav-link.active {
    background: var(--red-primary);
    color: var(--white);
}

.nav-tabs-custom .nav-link:hover:not(.active) {
    background: var(--gray-medium);
}

/* FAQ Accordion */
.accordion-custom .accordion-item {
    border: 1px solid var(--gray-medium);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-custom .accordion-button {
    font-weight: 600;
    color: var(--blue-dark);
    padding: 18px 24px;
    font-size: 0.95rem;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: rgba(196, 30, 58, 0.05);
    color: var(--red-primary);
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
}

.accordion-custom .accordion-body {
    color: var(--gray-text);
    line-height: 1.7;
    padding: 0 24px 20px;
}