/* Header Styles */
#mainHeader {
    background-color: transparent ; /* Transparent background at the start */
    color: #fff; /* White text */
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
}



.dark-header {
    background-color: rgba(0, 0, 0) !important; /* Black background when scrolling */
    color: #fff !important; /* Ensure text stays white */
}

/* Container with custom padding */
.container-wide {
    max-width: 95%; /* Extends container but keeps margin */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; /* Adds padding for offset */
}

.navbar-brand,
.nav-link {
    color: #fff !important; /* Ensures text is white */
}

.nav-link:hover {
    color: #ddd !important; /* Lighter color on hover */
}

.dark-header .nav-link {
    color: #fff !important; /* Ensure text is white when header becomes dark */
}

.dark-header .nav-link:hover {
    color: #ddd !important; /* Lighter color on hover */
}

/* Logo Styling */
.logo {
    /*max-width: 150px;*/
    height: auto;
}

/* Cover Section */
.cover-section {
    background: url('/img/cover-photo-haxoris.webp') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    padding: 0 5vw;
}

.overlay {
    padding: 20px;
    margin-bottom: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.overlay h1 {
    font-size: calc(2rem + 2vw);
}

.hero-content {
    width: 100%;
    justify-self: center;
}

.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.hero-btn.btn-light {
    color: #0a0a0a;
}

.hero-btn-contact {
    background-color: #F01428;
    border-color: #F01428;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-btn-contact:hover,
.hero-btn-contact:focus {
    background-color: #ff2f45;
    border-color: #ff2f45;
    color: #fff;
}

@media (max-width: 576px) {
    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 991.98px) {
    .cover-section {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .hero-content {
        justify-self: center;
    }
}

/* Content Section */
.content-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}


/* Extra small (xs) */
.ms-8 {
    margin-left: 4rem; /* 64px */
  }
  .me-8 {
    margin-right: 4rem; /* 64px */
  }
  
  /* Small (sm) */
  @media (min-width: 576px) {
    .ms-8 {
      margin-left: 5rem; /* 80px */
    }
    .me-8 {
      margin-right: 5rem; /* 80px */
    }
  }
  
  /* Medium (md) */
  @media (min-width: 768px) {
    .ms-8 {
      margin-left: 6rem; /* 96px */
    }
    .me-8 {
      margin-right: 6rem; /* 96px */
    }
  }
  
  /* Large (lg) */
  @media (min-width: 992px) {
    .ms-8 {
      margin-left: 7rem; /* 112px */
    }
    .me-8 {
      margin-right: 7rem; /* 112px */
    }
  }
  
  /* Extra large (xl) */
  @media (min-width: 1200px) {
    .ms-8 {
      margin-left: 8rem; /* 128px */
    }
    .me-8 {
      margin-right: 8rem; /* 128px */
    }
  }
  
  /* XXL (xxl) */
  @media (min-width: 1400px) {
    .ms-8 {
      margin-left: 9rem; /* 144px */
    }
    .me-8 {
      margin-right: 9rem; /* 144px */
    }
  }
  

  @media (max-width: 576px) {
    header .container {
      padding-left: 1rem; 
      padding-right: 1rem; 
    }
  }

.dropdown-menu {
    font-size: 13px;
    background-color: #000000c2;
    border: 1px solid white;
    color: white;
    width: auto;
    min-width: 0; /* Ensure no minimum width is set */
    padding: 0px;
}

#languageDropdown + .dropdown-menu {
  min-width: 60px; 
}


.dropdown-menu .dropdown-item {
    color: white;
    background-color: #00000000;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}


body {
  background-color: #000;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.bold {
  font-weight: bold;
}

.services-section {
    padding: 50px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.services-section h5 {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.services-section h3 {
    color: #F01428; /* Purple color */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    
}

.services-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.services-section p {
    font-size: 1rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .services-section .col-md-6 {
        border-right: none;
        border-bottom: 1px solid #ffffff;
    }
    .services-section .col-md-6:last-child {
        border-bottom: none;
    }
}




.dark-header {
  background-color: rgba(0, 0, 0) !important; /* Black background when scrolling */
  color: #fff !important; /* Ensure text stays white */
}

.service-tile {
    padding: 20px;
    border-bottom: 1px solid #4b4b4b;
}

.service-tile:nth-child(2n) {
    border-right: none;
}

.service-tile:nth-child(2n+1) {
    border-right: 1px solid #4b4b4b;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.service-title {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.service-description {
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer h5, .footer h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

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

.footer-menu {
    font-size: 14px;
}

.footer ul li {
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid grey;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    padding: 20px 0;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.footer-bottom p {
    margin: 1px 0;
}

.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  color: grey; /* Grey color on hover */
}


.social-icons a {
    color: #fff;
    margin-left: 10px;
    font-size: 20px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ddd;
}


/* Key Figures Section */
.key-figures-section {
    background-color: black;
    color: white;
    padding: 50px 0;
}

.key-figures-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.key-figures-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.key-figures-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.figures {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.figure {
    border-bottom: 1px solid grey;
    padding-bottom: 1rem;
}

.figure:last-child {
    border-bottom: none;
}

.figure h3 {
    font-size: 3rem;
    margin: 0;
}

.figure p {
    font-size: 1rem;
    margin: 0;
    margin-right: 1rem;
    text-align: right;
}

.logo-container {
  perspective: 1000px;
}

.logo_2 {
  transition: transform 0.1s ease-out;
}

.testimonials-section {
    background-color: black;
    color: white;
    padding: 50px 0;
}

.testimonials-section .figure {
    padding-bottom: 1rem;
}

.testimonials-section h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonials-section h3 {
    font-size: 1.5rem;
    margin: 0;
}

.testimonials-section p {
    font-size: 1rem;
    margin: 0;
    margin-right: 1rem;
    text-align: left;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    display: none !important;
}

/* Testimonials: add spacing above indicators */
.testimonials-section .carousel-indicators {
    position: static;      /* place indicators in normal flow */
    /*margin-top: 24px;      /* increase gap from text */
}

/* Make testimonial carousel indicator buttons bigger for better tap targets */
.testimonials-section .carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.7;
    margin: 0 8px;
}
.testimonials-section .carousel-indicators .active {
    opacity: 1;
}
@media (max-width: 768px) {
    .testimonials-section .carousel-indicators [data-bs-target] {
        width: 16px;
        height: 16px;
        margin: 0 10px;
    }
}

/* Ensure only the active carousel item is visible in testimonials */
.testimonials-section .carousel-inner .carousel-item { display: none; }
.testimonials-section .carousel-inner .carousel-item.active,
.testimonials-section .carousel-inner .carousel-item.carousel-item-start,
.testimonials-section .carousel-inner .carousel-item.carousel-item-end,
.testimonials-section .carousel-inner .carousel-item.carousel-item-next,
.testimonials-section .carousel-inner .carousel-item.carousel-item-prev { display: block; }

/* Testimonials: fixed slide size and vertical centering */
.testimonials-section #testimonialsCarousel .carousel-inner {
    min-height: 260px; /* baseline height on desktop */
    height: auto;      /* expand to fit taller testimonials */
    overflow: visible; /* avoid clipping heading/text */
}
@media (max-width: 768px) {
    .testimonials-section #testimonialsCarousel .carousel-inner {
        min-height: 340px; /* more room on small screens */
        height: auto;
    }
}
.testimonials-section #testimonialsCarousel .carousel-item {
    height: auto;      /* allow item to grow with content */
    align-items: center;     /* vertical center within slide (with display:flex from active state) */
    justify-content: center; /* horizontal center of the .figure block */
}
.testimonials-section #testimonialsCarousel .figure {
    height: auto;      /* keep full content visible */
    display: flex;
    flex-direction: column;
    justify-content: center; /* center heading + text */
}

/* Keep only the transitioning/active item visible, but use flex for centering */
.testimonials-section #testimonialsCarousel .carousel-item.active,
.testimonials-section #testimonialsCarousel .carousel-item.carousel-item-start,
.testimonials-section #testimonialsCarousel .carousel-item.carousel-item-end,
.testimonials-section #testimonialsCarousel .carousel-item.carousel-item-next,
.testimonials-section #testimonialsCarousel .carousel-item.carousel-item-prev {
    display: flex;
}

#booking-form {
    background-color: #f8f9fa;
    padding: 50px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#booking-form .form-label {
    font-weight: bold;
    color: #ffffff;
}

#booking-form .form-control {
    border-radius: 0;
    border: 1px solid #ced4da;
}

#booking-form .btn-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: rgb(0, 0, 0);
    margin-top: 10px;
}

#booking-form .btn-primary:hover {
    background-color: #939295;
    border-color: #ffffff;
}

/* Custom checkbox styling */
.form-check-input:checked {
    background-color: #F01428;
    border-color: #F01428;
}


.team-member {
  border-bottom: 1px solid grey;
  padding-bottom: 1rem;
}

.carousel-inner .carousel-item {
    display: flex;
    justify-content: space-between;
}

.carousel-item img {
    flex: 1;
    max-width: 16.66%; /* 100% / 6 items */
    height: auto;
}

.contact-section {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-section h3, .contact-section h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
}

.contact-section .form-label {
    font-weight: bold;
    color: #cdcbcb;
}

.contact-section .form-control {
    border-radius: 0;
    border: 1px solid #ced4da;
}

.contact-section .btn-primary {
    background-color: #b21f1f;
    border-color: #000;
    color: #fff;
}

.contact-section .btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.contact-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #d4d4d4;
}




.cve-link {
  color: inherit;
  text-decoration: none;
}
.cve-link:hover {
  color: grey;
}






.social-engineering-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.social-engineering-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.attack-type {
    padding: 20px;
    border-right: 1px solid grey;
}


.attack-type h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.attack-type p {
    color: #ffffff;
    line-height: 1.6;
}

.campaign-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.campaign-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.campaign-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}


.employee-trainings-section {
  padding: 50px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
}

.employee-trainings-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.employee-trainings-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.training-item {
  text-align: center;
  padding: 20px;
}

.training-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.training-item p {
  font-size: 1rem;
  color: #ffffff;
}



/* Styles for the accordion section in other_services.html */
.additional-services-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    text-align: start;
    margin-bottom: 20px;
}

.accordion-item {
    background-color: transparent;
    border: none;
}

.accordion-button {
    background-color: transparent;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 1rem 0;
    box-shadow: none;
    border-bottom: 1px solid #b0b0b0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #fff;
    box-shadow: none;
}

.accordion-button::after {
    display: none;
}

.accordion-button .toggle-icon {
    margin-left: auto;
    color: #fff;
    font-size: 1.5rem;
}

.accordion-body {
    padding: 1rem 0;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.red-teaming-packages {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.red-teaming-packages h2 {
    font-size: 2rem;
    color: #F01428;
}

.red-teaming-packages h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.red-teaming-packages p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.red-teaming-packages ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.red-teaming-packages ul li {
    margin-bottom: 0.5rem;
}

.red-teaming-packages .row {
    display: flex;
    align-items: stretch;
}

.red-teaming-packages .col-md-4 {
    display: flex;
    flex-direction: column;
}

.red-teaming-packages .btn {
    background-color: #F01428;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto; /* Push the button to the bottom */
}

.red-teaming-packages .btn:hover {
    background-color: #810A14;
}



.tested-assets-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  text-align: start;
  margin-bottom: 30px;
}

.card {
  background-color: transparent;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.card-title {
    margin: 0; /* Ensure no extra margin */
    color: #fff;
}

.toggle-icon {
  float: right;
  font-size: 1.5rem;
  color: #fff;
}

.card-divider {
    border: none;
    border-top: 1px solid rgb(192, 192, 192);
    margin: 0;
}

.card-content {
    padding: 1rem;
    color: #fff;
}

.service-link {
    color: #F01428; /* Red color */
    /*text-decoration: none;  Remove underline */
    transition: color 0.3s ease; /* Smooth transition */
}

.service-link:hover {
    color: gray; /* Gray color on hover */
}

.pdf-link {
    color: white; /* Set link color to white */
    transition: color 0.3s ease; /* Smooth transition */
}

.pdf-link:hover {
    color: gray; /* Change color on hover if needed */
}

#toast {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #da0c0c; /* Green background */
    color: #fff;
    padding: 20px; /* Increased padding for larger size */
    border-radius: 0px; /* Slightly larger border radius */
    font-size: 1.2rem; /* Larger font size */
    z-index: 1000;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-collapse {
    background-color: transparent; /* Default for wider screens */
}

@media (max-width: 990px) {
    .navbar-collapse {
        background-color: #000000f0; /* Black background for small screens */
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav .language-settings {
        order: 1; /* Ensure language settings come first */
    }

    .navbar-nav .book-now {
        order: 2; /* Place the Book Now button below */
        margin-top: 10px; /* Add some spacing */
    }
}
/* Mobile header tweaks without affecting desktop */
@media (max-width: 576px) {
    /* Smaller, crisper logo size on phones */
    .navbar-brand .logo {
        width: 160px;
        height: auto;
    }
    /* Bigger tap target for burger */
    .navbar-toggler {
        padding: 6px 10px;
        border: 1px solid rgba(255,255,255,0.25);
    }
    .navbar-toggler-icon {
        width: 1.75em;
        height: 1.75em;
    }
}
@media (max-width: 990px) {
    /* Comfortable spacing for menu items */
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 1.05rem;
    }
    /* Mobile dropdown stays inline and clean */
    .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        padding: 0.25rem 0 0.5rem 0;
    }
    .dropdown-menu .dropdown-item {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
    /* Make CTA full-width when inside mobile menu */
    .navbar-collapse .btn {
        width: 100%;
    }
}

/* Offcanvas mobile menu styling */
@media (max-width: 990px) {
    .haxoris-mobile-menu.offcanvas {
        /* Override Bootstrap offcanvas defaults */
        --bs-offcanvas-bg: rgba(0,0,0,0.97);
        --bs-offcanvas-color: #fff;
        --bs-offcanvas-width: min(360px, 80vw); /* keep drawer compact on phones/tablets */
        background-color: rgba(0,0,0,0.97) !important;
        color: #fff;
        width: min(360px, 80vw);
        border-left: 1px solid rgba(255,255,255,0.08);
    }
    .haxoris-mobile-menu .offcanvas-header {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .haxoris-mobile-menu .nav-link,
    .haxoris-mobile-menu .dropdown-item {
        color: #fff;
        padding: 0.6rem 0; /* reduce vertical gaps */
    }
    .haxoris-mobile-menu .dropdown-menu {
        position: static !important; /* stack within flow */
        inset: auto !important;
        transform: none !important;
        background: rgba(0,0,0,0.9);
        border: 1px solid rgba(255,255,255,0.1);
        padding: 0.25rem 0;
        margin: 0.25rem 0 0.5rem 0;
    }
    .haxoris-mobile-menu .dropdown-item {
        padding: 0.5rem 0 0.5rem 1rem; /* indent submenu */
    }
    .haxoris-mobile-menu .dropdown-item:hover {
        background-color: rgba(255,255,255,0.06);
    }
    .haxoris-mobile-menu .offcanvas-body {
        padding: 1rem 1.25rem; /* tighter side padding */
    }
    .haxoris-mobile-menu .btn {
        width: 100%;
    }
    .haxoris-mobile-menu .btn-close {
        filter: invert(1); /* make close icon visible on dark bg */
    }
}
@media (max-width: 990px) {
    .dropdown-menu {
        border: none; /* Remove borders on smaller screens */
        background-color: #00000000;
    }
    .dropdown-item:hover {
        background-color: inherit; /* No special color on hover */
    }
}

.navbar-nav .nav-link {
    color: #fff; /* White text for readability */
}

@media (max-width: 990px) {
    .about-us-section .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-us-section .col-md-6 {
        margin-bottom: 20px;
    }

    .about-us-section img {
        max-width: 80%;
        height: auto;
    }
}

@media (max-width: 766px) {
    .services-section .col-md-6 {
        border-right: none;
        border-bottom: none; /* Remove bottom border */
    }
}

@media (max-width: 766px) {
    .red-teaming-packages .col-md-4 {
        margin-top: 30px;
    }
}

@media (max-width: 766px) {
    .attack-type {
        border-right: none; /* Remove all borders */
    }
}

@media (max-width: 418px) {
    .key-figures-section h3 {
        font-size: 1.8rem; /* Adjust the font size as needed */
    }
}

/* Improve Key Figures layout on mobile and small screens */
.key-figures-section .figure {
    display: grid !important; /* override any inline flex */
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
    text-align: left !important;
}
.key-figures-section .figure h3 {
    line-height: 1;
    white-space: nowrap; /* keep e.g. 400+ on one line */
    margin-right: 10px;
}
.key-figures-section .figure p {
    text-align: left; /* avoid right alignment on mobile */
    margin-right: 0;
}
@media (max-width: 768px) {
    .key-figures-section .figure h3 {
        font-size: 2rem; /* scale down numbers on tablets/phones */
    }
}
@media (max-width: 576px) {
    .key-figures-section .figure h3 {
        font-size: 1.8rem; /* further scale for small phones */
    }
}

@media (max-width: 766px) {
    .text-to-phishing {
        margin-top: 60px; /* Remove all borders */
    }
}

@media (max-width: 766px) {
    .stats {
        flex-direction: column;
        align-items: flex-start;
    }
}



@media (max-width: 768px) {
    .tit {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .tit2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-member .pic {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .team-member img {
        max-width: 80%;
        height: auto;
        margin-bottom: 20px;
    }

    .team-member h4, 
    .team-member p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .report-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .report-form input[type="email"]{
        width: 100%;
        margin-bottom: 20px; /* Add spacing between elements */
    }
    .report-form button {
        width: 75%;
        margin-bottom: 20px; /* Add spacing between elements */
    }
}

.news-section {
    padding: 50px 0;
    margin-top: 100px;
 
}

.news-section .card {
    margin-bottom: 30px;
    margin-top: 30px;
    align-items: left;
}

.news-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-section .card-text {
    color: #a0a0a0;
    text-align: justify;
}

.news-section .card-date {
    font-size: 0.9rem;
    color: #cc1212;
    margin-bottom: 10px;
}




.references-section {
    padding: 50px 0;
    margin-top: 20px;
 
}

.references-section .card {
    margin-bottom: 30px;
    margin-top: 30px;
    align-items: left;
}

.references-section .card-img-top {
    height: 220px;
    object-fit: cover;
}

.references-section .card-text {
    color: #a0a0a0;
    text-align: justify;

}

.references-section .card-date {
    font-size: 0.9rem;
    color: #cc1212;
    margin-bottom: 10px;
}

/* Stack partner logos vertically on mobile */
@media (max-width: 768px) {
    .references-section .d-flex {
        flex-direction: column !important;
    }
    .references-section .d-flex > .p-3 {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}


.blog-post-section {
    padding: 50px 0;    
    margin-top: 100px;
}

.blog-post-section .blog-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.blog-post-section .blog-date {
    font-size: 1rem;
    color: #cc1212;
    margin-bottom: 10px;
}

.blog-author {
    display: flex;
    flex-direction: row;
    border-top: 1px solid grey;
    margin-top: 30px;
}

.blog-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 10px;
}

.blog-author p {
    font-size: 1rem;
    color: #cc1212;
    margin-bottom: 10px;
}

.blog-author .author-title {
    font-size: 1rem;
    color: #acacac;
    margin-top: 10px;
}

.blog-author .author-name {
    font-size: 1rem;
    color: #cc1212;
    margin-bottom: 10px;
}

.blog-author a {
    text-decoration: none;
    margin-top: 10px;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-width: 1400px; /* Adjust this value as needed */
}

.responsive-iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio */
    max-width: 100%; /* Ensures it doesn't exceed the container's width */
}

.active-faq {
    color: rgb(233, 21, 21) !important;
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #F01428; /* Red color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #808080; /* Gray color on hover */
}

.breadcrumb-item.active {
    color: #ffffff; /* White color for active item */
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff; /* White color for the separator */
}

.taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.taglist span {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #4b4b4b;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: #111111;
}

.note {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background-color: #111111;
    border-left: 4px solid #F01428;
}

.cta-box {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-box strong {
    display: block;
    margin-bottom: 0.5rem;
}

.cta-box a {
    color: #F01428;
    text-decoration: underline;
}

.cta-box a:hover {
    color: #ff4a5f;
}

/* 404 Page Styles */
.error-page-content {
    padding: 40px 0;
}

.error-page-content h1 {
    color: #F01428;
    font-size: 8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.error-page-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.error-page-content p {
    font-size: 1.1rem;
    color: #d6d6d6;
    margin-bottom: 2rem;
}

.error-page-content .btn-primary {
    background-color: #F01428;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.error-page-content .btn-primary:hover {
    background-color: #810A14;
}

.error-page-content .btn-outline-primary {
    border: 2px solid #F01428;
    color: #F01428;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-page-content .btn-outline-primary:hover {
    background-color: #F01428;
    color: #ffffff;
}

.error-page-content .card {
    background-color: transparent;
    border: 1px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.error-page-content .card:hover {
    transform: translateY(-5px);
    border-color: #F01428;
}

.error-page-content .card-body {
    padding: 1.5rem;
}

.error-page-content .card-body i {
    color: #F01428;
    margin-bottom: 1rem;
}

.error-page-content .card-body h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
}

.error-page-content .suggested-links h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}



.service2-card-link {
    text-decoration: none;
    color: inherit;
  }
  .service2-card {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #333333); /* Dark gradient for a sleek look */
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}

.service2-card:hover {
    transform: translateY(-8px) scale(1.05); /* Slight lift on hover */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); /* Enhanced shadow on hover */
}

.service2-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f60d0dcc, #f73c3cbb); /* Updated overlay for a modern look */
    opacity: 0.8; /* Slightly more opaque for better text contrast */
    z-index: 1;
    transition: opacity 0.3s;
}

.service2-card:hover .service2-card-overlay {
    opacity: 0.9; /* Slightly more opaque on hover */
}

.service2-card-content {
    position: relative;
    z-index: 2;
    color: #fff; /* Ensure text is white for readability */
    padding: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif; /* Consistent font */
}

.service2-card-content h3 {
    font-size: 1.2rem; /* Slightly larger font for headings */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service2-card-content p {
    font-size: 1rem; /* Consistent font size for paragraphs */
    margin-bottom: 0;
}

  .divider-or {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.divider-or hr {
    flex-grow: 1;
    border: none;
    border-top: 2px solid #fff;
    margin: 0;
    min-width: 40px;
}
.divider-or span {
    margin: 0 1rem;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* 1px delimiter between custom training accordion items */
#customTrainingAccordion .accordion-item + .accordion-item {
    border-top: 1px solid #b0b0b0;
  }
