:root
{
    --black-color: #000000;
    --red-color: #ee242f;
    --gray-color: #eeeeee;
    --white-color: #ffffff;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

body
{
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black-color);
    color: var(--white-color);
}
section
{
    padding: 60px 0;
}
i.bi 
{
    color: var(--red-color);
    font-size: larger;
}
.text-red
{
    color: var(--red-color) !important;
}
.text-white
{
    color: var(--white-color) !important;
}
.text-black
{
    color: var(--black-color) !important;
}
.bg-red
{
    background-color: var(--red-color) !important;
}
.bg-white
{
    background-color: var(--white-color) !important;
}
.bg-black
{
    background-color: var(--black-color) !important;
}
.text-stroke {
  color: var(--black-color) !important;
  text-shadow:
    1px 0 var(--red-color),
   -1px 0 var(--red-color),
    0 1px var(--red-color),
    0 -1px var(--red-color),
    1px 1px var(--red-color) ,
   -1px -1px var(--red-color),
    1px -1px var(--red-color),
   -1px 1px var(--red-color) !important;
}
.text-stroke-white {
  color: var(--white-color) !important;
  text-shadow:
    1px 0 var(--black-color) ,
   -1px 0 var(--black-color) ,
    0 1px var(--black-color) ,
    0 -1px var(--black-color) ,
    1px 1px var(--black-color) ,
   -1px -1px var(--black-color) ,
    1px -1px var(--black-color) ,
   -1px 1px var(--black-color) !important;
}

.navbar
{
    background-color: var(--black-color);
    border-radius: 30px;
    position: absolute;
    width: 90%;
    box-sizing: border-box;
    justify-self: center;
    top: 30px;
    z-index: 1000;
    box-shadow: 0px 7px 10px rgba(238, 36, 47, 0.3) !important;
}
.navbar-collapse
{
    flex-grow: 0 !important;
}
.navbar .nav-link
{
    color: var(--white-color) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
}
.navbar .nav-link:hover
{
    color: var(--white-color) !important;
    transform: translateY(-5px) scale(1.05);
    transition: all 0.3s ease-in-out;
    text-decoration: underline;
}
.navbar .nav-link.active
{
    color: var(--white-color) !important;
    text-shadow: #000000 1px 1px 0, #000000 -1px 1px 0, #000000 -1px -1px 0, #000000 1px -1px 0;
    font-weight: 700;
    transform: scale(1.06);
}

.hero-section h1:not(.text-red)
{
    text-shadow: 1px 1px var(--red-color);
}
.hero-section h1 .text-red
{
    text-shadow: none;
}
.cta-red
{
    background-color: var(--red-color);
    color: var(--white-color) !important;
    border: none;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
}
.cta-black
{
    background-color: var(--black-color);
    color: var(--white-color) !important;
    border: none;
    padding: 10px 30px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50px;
}
/*home Hero Section */
.home-hero-section
{
    background: linear-gradient(135deg, var(--black-color) 0%, rgba(238, 36, 47, 0.1) 50%, var(--black-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
}
.hero-image-container
{
    background: var(--home-hero-image) no-repeat center center; 
    background-size: contain; 
    width: 100%; 
    height: 36rem;
    border-radius: 15px;
}
@media (max-width: 500px) {
    .hero-image-container
    {
        height: 25rem;
    }
}
/* Stats Section */
.stats-section
{
    background-color: var(--black-color);
}

.stats-card 
{
    background: linear-gradient(135deg, rgba(238, 36, 47, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(238, 36, 47, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.stats-card:hover
{
    transform: translateY(-10px);
    border-color: var(--red-color);
    box-shadow: 0 20px 40px rgba(238, 36, 47, 0.2);
}

.stats-icon
{
    color: var(--red-color);
}

.stats-number
{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
}

.stats-label
{
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-color);
    letter-spacing: 1px;
}

/* About Section */
.images-container
{
    position: relative;
    min-height: 400px;
}
@media (max-width:768px) {
    .images-container
    {
        min-height: 350px;
    }
}
.images-container img:nth-child(1)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
}
.images-container img:nth-child(2)
{
    position: absolute;
    top: 60px;
    left: 50%;
    width: 45%;
}
.images-container img:nth-child(3)
{
    position: absolute;
    top: 120px;
    left: 30%;
    width: 45%;
}

/* services Section */
.service-card
{
    background-color: var(--red-color);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    box-shadow:2px 2px 8px var(--red-color);
    color: var(--white-color);
}

/* team Section */
.team-card
{
    background: rgba(238, 36, 47, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 36, 47, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--white-color);
}
.team-card:hover
{
    transform: translateY(-10px);
    border-color: var(--red-color);
    box-shadow: 0 20px 40px rgba(238, 36, 47, 0.3);
}
/* blog Section */
.blog-info
{
    background-color: rgba(238, 36, 47, 0.5);
    padding: 10px;
    border-radius: 10px;
}

/* contact Section */
.newsletter-container
{
    border: 2px solid var(--red-color);
    border-radius: 15px;
}

/* Enhanced Secondary Pages Hero Section */
.secondary-hero
{
    background: linear-gradient(135deg, var(--black-color) 0%, rgba(238, 36, 47, 0.1) 50%, var(--black-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
}

.secondary-hero .hero-title
{
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    position: relative;
}

.secondary-hero .hero-title::after
{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--red-color), rgba(238, 36, 47, 0.5));
    border-radius: 2px;
}

.secondary-hero .hero-description
{
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Custom Breadcrumb */
.custom-breadcrumb
{
    margin-top: 2rem;
}

.breadcrumb-list
{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(238, 36, 47, 0.1);
    border: 1px solid rgba(238, 36, 47, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.breadcrumb-item
{
    display: flex;
    align-items: center;
}

.breadcrumb-link
{
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover
{
    color: var(--red-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.breadcrumb-link i
{
    font-size: 1rem;
}

.breadcrumb-separator
{
    color: rgba(255, 255, 255, 0.6);
    margin: 0 15px;
    font-weight: 300;
}

.breadcrumb-current span
{
    color: var(--red-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Decorative Elements */
.hero-decoration
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle
{
    position: absolute;
    border: 2px solid rgba(238, 36, 47, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1
{
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2
{
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 8%;
    animation-delay: 3s;
}

.decoration-line
{
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(238, 36, 47, 0.3), transparent);
    animation: slide 8s ease-in-out infinite;
}

.line-1
{
    width: 2px;
    height: 200px;
    top: 15%;
    left: 15%;
    transform: rotate(45deg);
}

@keyframes float
{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slide
{
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px)
{
    .hero-section
    {
        padding: 150px 0 60px;
    }
    
    .secondary-hero .hero-title
    {
        font-size: 2.5rem;
    }
    
    .secondary-hero .hero-description
    {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .breadcrumb-list
    {
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
    }
    
    .breadcrumb-separator
    {
        display: none;
    }
    
    .decoration-circle
    {
        display: none;
    }
}

@media (max-width: 576px)
{
    .secondary-hero .hero-title
    {
        font-size: 2rem;
    }
    
    .breadcrumb-link
    {
        font-size: 0.9rem;
    }
}

/* Legacy breadcrumb styles for other pages */
.breadcrumb a
{
    color: var(--white-color) !important;
    text-decoration: none;
    font-weight: 600;
}

/* Nav Pills Custom Styling */
.nav-pills .nav-link
{
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.nav-pills .nav-link:hover
{
    background: rgba(238, 36, 47, 0.3);
    color: var(--white-color);
}

.nav-pills .nav-link.active
{
    background-color: var(--red-color);
    color: var(--white-color);
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 36, 47, 0.4);
}

.proccess-step
{
    background: rgba(238, 36, 47, 0.1);
    border: 1px solid rgba(238, 36, 47, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: var(--white-color);
}
.proccess-step:hover
{
    background: rgba(238, 36, 47, 0.3);
    border-color: var(--red-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 36, 47, 0.2);
}
.step-number
{
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    background-color: var(--red-color);
    color: var(--white-color);
    margin-bottom: 10px;
    width: 100%;
}
.step-title
{
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 8px;
}
.step-description
{
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Swiper Custom Styling */
.swiper-pagination-bullet
{
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active
{
    background: var(--red-color);
    transform: scale(1.2);
}

.client-card .client-logo img
{
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.client-card:hover .client-logo img
{
    filter: grayscale(0%);
    transform: scale(1.05);
}

.contact-card
{
    background: rgba(238, 36, 47, 0.1);
    border: 1px solid rgba(238, 36, 47, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    color: var(--white-color);
}
.contact-card:hover
{
    background: rgba(238, 36, 47, 0.3);
    border-color: var(--red-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 36, 47, 0.2);
}

/* Contact Form Styling */
.contact-form .form-control,
.contact-form .form-select
{
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(238, 36, 47, 0.3);
    color: var(--white-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus
{
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red-color);
    color: var(--white-color);
    box-shadow: 0 0 0 0.2rem rgba(238, 36, 47, 0.25);
}

.contact-form .form-control::placeholder
{
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-floating > label
{
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select ~ label
{
    color: var(--red-color);
}
.contact-icon
{
    color: var(--red-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Process Steps Styles - Services Page */
.process-step {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem 1rem;
    border-radius: 0.5rem;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon-wrapper {
    transform: scale(1.1);
}

.step-number {
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-icon-large {
    font-size: 28px;
}

/* Project Filter Styles - Work Page */
.projects-filter-section .filter-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(238, 36, 47, 0.2) !important;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(238, 36, 47, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin: 0.25rem;
}

.filter-btn:hover {
    background: rgba(238, 36, 47, 0.1);
    border-color: var(--red-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 36, 47, 0.2);
}

.filter-btn.active {
    background: var(--red-color);
    border-color: var(--red-color);
    color: var(--white-color);
    box-shadow: 0 5px 15px rgba(238, 36, 47, 0.3);
}

.filter-btn .project-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 600;
}

.filter-btn.active .project-count {
    background: rgba(255, 255, 255, 0.3);
}

.filter-btn i {
    color: var(--red-color);
    font-size: 1rem;
}

.filter-btn.active i,
.filter-btn:hover i {
    color: var(--white-color);
}