@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

:root {
    --main_accent: #000;
    --primary-red: #d30000;
    --primary-red-hover: #a00000;
    --bg-dark: #050505;
    --bg-card: #111111;
    --text-gray: #a1a1a1;
}
a,
a:hover,
input,
input:hover,
button,
button:hover,
img,
header,
.inner_header,
.award_section a * {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease-out !important;
    -moz-transition: all 0.5s ease-out !important;
    -o-transition: all 0.5s ease-out !important;
    transition: all 0.5s ease-out !important;
}

img {
    max-width: 100%;
    height: auto;
}
body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;


}

h1, h2, h3, h4, h5, h6, .nav-link>a, .btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-top-15 {
    margin-top: 15px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-top-120 {
    margin-top: 120px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-top-15 {
    padding-top: 15px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-top-120 {
    padding-top: 120px;
}
.padding-top-240 {
    padding-top: 240px;
}
.left_text {
    text-align: left;
}
.centered_text {
    text-align: center;
}
.right_text {
    text-align: right;
}
p.list_package {
    margin-block: 0.5rem;
}
.addons-title {
    cursor: pointer;
    color: var(--primary-red);
    font-weight: bold;
    user-select: none;
}

.addons-content {
    display: none;
    margin-top: 10px;
    padding: 15px;
}

.addons-content ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.addons-content li {
    margin-bottom: 8px;
}
.text-red { color: var(--primary-red); }
.bg-red { background-color: var(--primary-red); }
.header_3 {
    text-align: right;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}
#about img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
header {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index: 10;
}
/* Buttons */
.btn-red {
    background-color: var(--primary-red);
    color: white;
    border: none;
    letter-spacing: 1px;
    padding: 10px 24px;
    font-weight: 600;
    transition: 0.3s ease;
}
.btn-red:hover {
    background-color: var(--primary-red-hover);
    color: white;
}
.btn-outline-light {
    border-color: #444;
    letter-spacing: 1px;
}
.btn-outline-light:hover {
    background-color: #222;
    border-color: #666;
}
.logo_items {
    
}
.logo_items img {
    max-width: 150px;
    width: 100%;
    height: 160px;
    object-fit: contain;
}
.signature {
    font-family: "Parisienne", cursive;
    transform: scale(1, 1) translate(352.5px, 0px) rotate(357deg);
        font-weight: 400;
    font-style: normal;
    font-size: 30px;
}
.quotation {
    font-size: 20px;
}
/* Navbar */
header {
    background:transparent;
    padding:15px 0;
}
header.scroll-nav {
    background-color: #000;
    
}
header.scroll-nav .navbar {
    background-color: #000;
    border-bottom: 1px solid #222;
}
.navbar-brand img { height: 160px; }
header.scroll-nav .navbar-brand img { height: 90px; }
.nav-link>a {
  
    letter-spacing: 1px;
    color: #fff !important;
}
.nav-link>a:hover, .nav-link.current-menu-item>a { color: var(--primary-red) !important; }
header ul {
    display: flex;

    margin-bottom: 0;
    padding-block: 0;
    list-style: none;
}
header ul>li {
    margin-right: 30px;
}
header ul>li>a {
    
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1503376712341-ea82002dd429?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section video {
    position: absolute;
    top:0;
    left:0;
    min-width:100%;
    min-height:100%;
    
}
.hero-section:before {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background:rgba(0,0,0,0.2);
    z-index: 2;
    content:'';
}
.hero-section .container {
    position: relative;
    z-index: 3;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
}

/* Section Spacing */
.section-padding { padding: 80px 0; }
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.section-subtitle {
    font-size: 0.9rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Services Cards */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid #222;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
    display: inline-block;
    width:100%;
}
.service-card:hover { border-color: var(--primary-red); }
.service-card * {
    color:#fff;
}
.service-icon {
    width: 60px;
    height: 60px;
    background-color: #222;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.learn-more {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.learn-more:hover { color: var(--primary-red); }

/* Gallery */
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* Logos */
.brand-logo {
    filter: grayscale(100%) brightness(200%);
    height: 50px;
    opacity: 0.6;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid #222;
    padding: 30px;
}
.stars { color: var(--primary-red); margin-bottom: 15px; }

/* Pricing */
.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid #222;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    position: relative;
}
.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom:0;
}
.pricing-card.popular {
    border: 2px solid var(--primary-red);
}
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-red);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.price {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

/* Contact Form */
.form-control, .form-select {
    background-color: #fff;
    border: none;
    border-radius: 2px;
    padding: 12px;
    font-size: 0.9rem;
}

/* FAQ Accordion */
.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #333;
}
.accordion-button {
    background-color: transparent;
    color: white;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    box-shadow: none !important;
    padding: 20px 0;
}
.accordion-button:not(.collapsed) {
    color: var(--primary-red);
    background-color: transparent;
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-body {
    color: var(--text-gray);
    padding: 0 0 20px 0;
}

/* Footer */
footer {
    border-top: 1px solid #222;
    padding-top: 60px;
    padding-bottom: 20px;
}
.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.footer-links a:hover { color: white; }
footer img {
    max-width: 100%;
}


/* Animation */
/* Container sizing and positioning */
.section-solutions {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Adjust height as needed */
    display: flex;
    align-items: center; /* Pushes content to the bottom */
    background-color: #111;
    overflow: hidden;
    color: #ffffff;
    font-family: sans-serif; /* Replace with your theme's font */
    flex-wrap: wrap;
}

.s-solutions {
    flex-wrap: wrap;
}
/* Background image container */
.s-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Add a dark gradient overlay so white text is readable */
.s-backgrounds::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* Individual images (hidden by default) */
.media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out; /* Smooth fade effect */
}

/* The active image */
.media-wrapper.active {
    opacity: 1;
}

/* Ensure images cover the area without distorting */
.media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Foreground content container */
.s-solutions {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

/* Individual service cards */

@media(min-width:768px) {
    .s-solution {
        cursor: pointer;
        padding-bottom: 2rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        opacity: 0.6;
        transition: all 0.3s ease;
    }
    .s-solutions .row {
        width: 100%;
    }
    .s-solution {
        flex: 1;
    } 
    /* Foreground content container */
    .s-solutions {
        padding: 4rem 2rem;
    }
    .s-solution:hover,
    .s-solution.active {
        opacity: 1;
        border-bottom-color: #dc3545; /* Matches the text-red from your original site */
    }
}
/* Hover and Active states for service cards */


.s-solution-title-text {
    font-size: 1.75rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.s-solution-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.s-solution-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.s-solution.active .s-solution-link {
    color: #dc3545;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .s-solutions {
        flex-direction: column;
        gap: 1.5rem;
    }
    .s-solution {
  
    }
}
/* Backgrounds Container */
.s-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #111; /* Fallback color */
}

/* Individual Background Images */
.media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

/* The ACTIVE Background Image */
.media-wrapper.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Make images cover the whole section */
.media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: Dark overlay so your cards are readable over the images */
.s-backgrounds::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Make sure the container sits above the background */
.s-solutions.container {
    z-index: 3 !important; 
}

/* Service Card Opacity Logic */
.s-solution {
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.5; /* Dimmed state */
}

/* The ACTIVE Service Card */
.s-solution:hover,
.s-solution.active {
    opacity: 1; /* Bright state */
}
.phone_num {
    margin-right: 30px;
    color:#fff;
    font-weight: 600;
    font-size: var(--bs-btn-font-size);
    line-height: var(--bs-btn-line-height);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.phone_num svg {
    
}
#mobile_toggle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 99999
}

#mobile_toggle nav {
    background-color: #000;
    height: 50px;
    position: relative;
    box-shadow: 0 4px 4px rgba(0,0,0,.4)
}

#mobile_toggle #menuToggle input {
    display: flex;
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    left: 0;
    top: 0;
    padding:0 0 0 0;
    margin-top:0;
}

#mobile_toggle #menuToggle span {
    display: flex;
    width: 30px;
    height: 1px;
    margin-bottom: 7px;
    position: relative;
    background: #fff;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform .5s cubic-bezier(.77,.2,.05,1),background .5s cubic-bezier(.77,.2,.05,1),opacity .55s ease
}

#menuToggle span:first-child {
    transform-origin: 0% 0%
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%
}

#menuToggle span {
    display: block;
    background-color: var(--mdb-body-color);
    height: 2px;
    width: 25px;
    margin-bottom: 5px;
    transition: transform .3s,opacity .3s
}

#menuToggle input:checked~label span:first-child {
    transform: rotate(45deg) translate(1px,1px)
}

#menuToggle input:checked~label span:nth-child(2) {
    opacity: 0
}

#menuToggle input:checked~label span:nth-child(3) {
    transform: rotate(-45deg) translate(0,-1px)
}

#mobile_toggle .menu-main-container_outer {
    box-shadow: 4px 0 4px rgba(0,0,0,.4);
    left: 0;
    position: absolute;
    width: 100%;
    height: calc(100vh + 50px);
    padding: 30px;
    background-color: #000;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%,0);
    transition: transform .5s cubic-bezier(.77,.2,.05,1);
    top: 50px
}

#mobile_toggle .menu-main-container_outer strong {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 32px;
    text-align: center;
    font-weight: 800;
    color: #fff
}

#mobile_toggle ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0
}

#mobile_toggle ul li ul {
    display: none
}

#mobile_toggle ul li {
    text-align: left;
    padding: 10px 0;
    transition-delay: 2s;
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
    width: 100%
}

#mobile_toggle ul li a {
    color: #fff;
    padding: 0 0;
    line-height: 1.5
}

#mobile_toggle ul li a:hover {
    background: 0 0!important
}

#mobile_toggle #menuToggle input:checked~div {
    transform: none
}

.ham {
    position: absolute;
    top: 35px;
    transform: translate(-50%,-50%);
    left: 30px;
    z-index: 9999;
    height: 41px;
    margin-bottom:0;
    width:auto;
}

#mobile_toggle a.mobile-toggle-img {
    position: absolute;
    top: calc(50% + 1px);
    left: calc(50%);
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 1;
    display: inline-flex;
        align-items: center;
}
#mobile_toggle a.mobile-toggle-img span {
    color:#000;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1;
}
#mobile_toggle a.mobile-toggle-img img {
    max-height: 30px;
    width:auto;
    margin-right:7.5px;
}
.extra_packages {
    background-color: var(--bg-card);
    border: 1px solid #222;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    position: relative; 
}
.extra_packages ul {
    list-style: none;
    padding-left: 0;
    margin-bottom:0;
    column-count: 2;
     column-gap: 30px;
}
.extra_packages ul>li strong {
    min-width: 250px;
    display: inline-block;
}
.mod_block h2 {
font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.mod_block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;   
}
.mod_block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    column-count: 2;
     column-gap:2;
    
}
.mod_block a {
    margin-top: 1rem;
}
.page-child .mod_block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    column-count: 1;
     column-gap:0;
    margin-bottom: 1rem;
}
.mod_block li {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
.page-child .mod_block li {
    margin-bottom: 0.5rem;

}
.our-services {
    
}
.our-services h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}
.our-services h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
}
ul#menu-main>li {
    position: relative;
}
ul#menu-main>li>ul.sub-menu li {
    text-align: left;
    margin: 0;
    width: 100%;
}
ul#menu-main>li>ul.sub-menu li>a {
    letter-spacing: 1px;
    color: #fff !important;
        font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
ul#menu-main>li>ul.sub-menu li>a:hover {
    color:var(--primary-red) !important;
}
.check_h2 h2 {
    margin-top: 40px;
    padding-top: 30px;
        border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.check_h2 h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top:none !important;
}
.gform-theme--foundation .gform_fields {
    row-gap: 16px !important;
}
.gform_button.button {
background-color: var(--primary-red) !important;
    color: white !important;
    border: none !important;
    letter-spacing: 1px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    transition: 0.3s ease !important;  
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase !important;
}
.gform_button.button:hover {
    opacity: 0.6 !important;
}
@media only screen and (min-width: 1024px) {
    ul#menu-main>li:hover>ul {
        opacity: 1;
        pointer-events: inherit;
        visibility: visible;
    }
}
@media only screen and (min-width: 1024px) {
    ul#menu-main>li>ul {
        background-color: #000;
        border: 1px solid rgba(0, 0, 0, .1);
        border-radius: 0 0 16px 16px;
        border-top: none;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .2);
        left: -24px;
        margin: 0;
        min-width: 300px;
        opacity: 0;
        padding: 15px 24px 15px;
        pointer-events: none;
        position: absolute;
        top: 100%;
        transition: all .5s ease;
        visibility: hidden;
        z-index: 800;
        display: block;
    }
}
@media (max-width: 1399.98px) {
 body {
     padding-top:50px;
 }
}
@media(max-width:767.98px) {
    .hero-section video {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }
    .accordion-item {
        border-bottom: 1px solid #333 !important;
    }
    footer {
        padding-top:30px;
      
    }
    .pm-top-60 {
        padding-top:60px;
    }
    footer img {
        max-width: 166px;
    }
    footer {
        text-align: center;
    }
    footer .gap-3 {
        justify-content: center;
    }
    .margin-bottom-15 {
        margin-bottom: 15px;
    }
    .margin-bottom-30 {
        margin-bottom: 30px;
    }
    .margin-bottom-60 {
        margin-bottom: 30px;
    }
    .margin-bottom-90 {
        margin-bottom: 60px;
    }
    .margin-bottom-120 {
        margin-bottom: 60px;
    }
    
    .margin-top-15 {
        margin-top: 15px;
    }
    .margin-top-30 {
        margin-top: 30px;
    }
    .margin-top-60 {
        margin-top: 30px;
    }
    .margin-top-90 {
        margin-top: 60px;
    }
    .margin-top-120 {
        margin-top: 60px;
    }
    
    .padding-bottom-15 {
        padding-bottom: 15px;
    }
    .padding-bottom-30 {
        padding-bottom: 30px;
    }
    .padding-bottom-60 {
        padding-bottom: 30px;
    }
    .padding-bottom-90 {
        padding-bottom: 60px;
    }
    .padding-bottom-120 {
        padding-bottom: 60px;
    }
    
    .padding-top-15 {
        padding-top: 15px;
    }
    .padding-top-30 {
        padding-top: 30px;
    }
    .padding-top-60 {
        padding-top: 30px;
    }
    .padding-top-90 {
        padding-top: 60px;
    }
    .padding-top-120 {
        padding-top: 60px;
    }
    .padding-top-240 {
        padding-top: 60px;
    }
}