/*---------------------------------------
  Base & Global Styles
----------------------------------------*/

body {
    background-color: #111;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/*---------------------------------------
  Top Bar
----------------------------------------*/

.top-bar {
    background-color: #0E0F11;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.social-icons a {
    color: #fff;
    background: #333;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*---------------------------------------
  Main Header & Navbar
----------------------------------------*/

.main-header {
    background-color: #000;
    padding: 10px 0;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: #fff;
    margin-right: 20px;
    font-size: 14px;
    padding-right: 2px;
    padding-left: 2px;
}

.nav-link.active,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ff6a00 !important;
}

.circle-stat {
    border-radius: 50%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #555;
    background-color: transparent;
    position: relative;
    margin: -14px;
    transition: transform 0.3s ease;
}

.circle-stat:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    text-transform: uppercase;
}

.small-circle {
    width: 200px;
    height: 200px;
}

.large-circle {
    width: 260px;
    height: 260px;
}

/* Overlap previous left circle */
.overlap-left {
    margin-left: -15px;
}

/* Move up slightly */
.move-up {
    margin-top: -160px;
}

.text-orange {
    color: #ff6a00;
}

.rating-circle {
    width: 64px;
    height: 64px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: transparent;
}

.text-orange {
    color: #ff6a00;
}

.bg-orange1 {
    background-color: #ff6a00;
}

.testimonial-card {
    background: linear-gradient(135deg, #1c1c1c 0%, #1c1c1c 60%, rgba(0, 98, 255, 0.2) 100%);
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.progress {
    background-color: #444;
    height: 4px;
}

.progress-bar {
    transition: width 0.4s ease;
}

.list-group-item {
    padding: 1rem 1.2rem;
}

.form-control,
.form-control:focus {
    background-color: #111;
    color: #fff;
    border: 1px solid #333;
}

.form-label {
    color: #ccc;
}

.contact-section {
    background-color: #000;
}

iframe {
    border: 0;
    border-radius: 12px;
}

.dropdown-menu .dropdown-menu {
  position: absolute;
  top: 0;           /* Aligns with parent item top */
  left: 100%;       /* Open to right side */
  margin-top: 0;    /* Remove extra margin if any */
  display: none;
  min-width: 12rem;
  z-index: 2000;
}

.dropdown-submenu>a::after {
    content: "▶";
    float: right;
    margin-left: 5px;
    font-size: 0.6em;
}

/* Dropdown menu on hover for large screens */
@media (min-width: 992px) {


    .card-image-fixed {
        height: 400px;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

.dropdown-submenu {
  position: relative; /* Important for correct top reference */
}

/* Optional: add caret for submenu */
.dropdown-submenu > a::after {
  content: "▶";
  float: right;
  margin-left: 5px;
  font-size: 0.6em;
}

.navbar .dropdown-toggle::after {
    display: none;
}

/*---------------------------------------
  Search Bar
----------------------------------------*/

.search-bar {
    background-color: #1c1c1c;
    border-radius: 25px;
    border: none;
    color: white;
    padding-right: 40px;
    width: 100%;
    max-width: 340px;
    margin-left: 165px;
}

.search-bar::placeholder {
    color: #ccc;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

/*---------------------------------------
  Hero Section
----------------------------------------*/

.hero {
    background-color: #0E0F11;
    padding: 50px 0px;
    text-align: right;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 500;
}

.hero h1 span {
    color: #ff6a00;
    font-weight: 700;
}

.hero .btn-orange {
    background-color: #ff6a00;
    color: white;
    font-weight: 600;
    border: none;
}

.orange-color {
    color: #ff6a00;
}

.hero .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.hero .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/*---------------------------------------
  Buttons
----------------------------------------*/

.btn-orange {
    background-color: #ff6a00;
    color: white;
    font-weight: 500;
    border: none;
    text-transform: uppercase;
}

.btn-tab {
    background: transparent;
    color: white;
    border: none;
    padding: 6px 18px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-tab:hover,
.btn-tab:focus {
    background-color: #ffffff10;
    color: #ff6a00;
    outline: none;
}

.custom-outline-black {
    border: 1px solid #fff;
    color: #fff;
    width: 100px;
    background-color: transparent;
}

.custom-outline-black:hover {
    background-color: #ff6600;
    border-color: #ff6600;
    color: rgb(48, 47, 47);
}

/*---------------------------------------
  Image Backgrounds & Cards
----------------------------------------*/

.bg-image {
    background-image: url(/Assets/images/bg-container.jpg);
    width: 100%;
    height: 400px;
    border-radius: 30px;
}

.bg-content {
    padding: 120px 20px;
}

.industry-card {
    border-radius: 15px;
    overflow: hidden;
    background-color: #111;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-image {
    height: 300px;
    width: 100%;
}

.card-feature-image {
    height: 240px;
}

.card-footer {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

/*---------------------------------------
  Sections
----------------------------------------*/

.sector-bg {
    background-color: #000;
    padding: 50px 20px;
}

.sector-content {
    color: #fff;
}

.blog {
    background-color: #0E0F11;
    padding: 50px 0;
}

/*---------------------------------------
  Misc
----------------------------------------*/
.icon-color {
    color: #ff6a00
}

.viewMore {
    color: #FC8E41;
    font-family: 'Lora', serif;
}

.underline {
    width: 55px;
    height: 4px;
    background-color: #FF6229;
}

.gradient-bg {
    background: linear-gradient(to right, #ff6a00, #ee0979);
    color: white;
}

.arrow {
    font-size: 1.2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    border: none;
}

.carousel-indicators .active {
    background-color: #ff6600;
}

.bg-teal {
    background-color: #00bfa5;
}

.bg-purple {
    background-color: #6a1b9a;
}

.bg-orange {
    background-color: #ff6a00;
}

.top-right-arrow {
    top: 15px;
    right: 15px;
}

.accordion-button::after {
    color: white;
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed) {
    background-color: #ff6a00;
    box-shadow: none;
}

.btn:hover {
    background-color: #ff6a00 !important;
    color: white !important;
    border: #ff6600 !important;
}

/*---------------------------------------
  Subscribe
----------------------------------------*/

.custom-subscribe-btn {
    background-color: #ff6a00;
    border: none;
    border-radius: 0 0.375rem 0.375rem 0;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
}

#carouselTrack {
    scroll-behavior: smooth;
}

.input-group .form-control {
    border-radius: 0.375rem 0 0 0.375rem;
}

.btn-orange:hover {
    background-color: darkorange;
}

.product-header {
    background-image: url('/Assets/images/product-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 300px;
    position: relative;
}

/* Optional overlay via child, so the border-radius is preserved */
.product-header .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
}

.image-container {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 8% 8% 0 8%;
    /* top padding pushes content down */
    /* margin-top: 10%; */
}

.content-container {
    flex: 0 0 45%;
}

.overlap-box {
    margin-left: -40%;
    min-width: 300px;
    z-index: 2;
    position: relative;
}

.about-header {
    background-image: url('/Assets/images/about-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 300px;
    position: relative;
}

.about-header .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
}





/* Breadcrumb font style */
.breadcrumb-text {
    font-size: 1.1rem;
    margin-top: 10px;
}

.breadcrumb-text {
    font-size: 1.1rem;
    margin-top: 10px;
}

.card-wrapper {
    background-color: transparent;
    border-radius: 1rem;
    overflow: hidden;
}

.dark-card {
    background-color: #1a1a1a;
    height: 100%;
}





@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .card-item {
        width: 25% !important;
    }
}

/*---------------------------------------
  Responsive Design
----------------------------------------*/

@media (max-width: 768px) {
    .search-bar {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 36px;
        margin-left: 0;
    }

    .top-bar a {
        display: inline-block;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .top-bar .social-icons {
        justify-content: center;
        width: 100%;
    }

    .social-icons a {
        border-radius: 50%;
        width: 20px;
        height: 20px;

    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 2.5rem;


    }

    .product-header {
        height: 50vh;
    }

    .product-header h1 {
        font-size: 2rem;
    }

    .breadcrumb-text {
        font-size: 0.95rem;
    }

    .content-container {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .image-container {
        flex: 0 0 100%;
        max-width: 100%;
        top: 0;
        /* reset for mobile */
        padding: 5% 5% 0 5%;
    }

    .overlap-box {
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .main-header {
        padding: 15px 0;
    }

    .search-bar {
        margin-top: 10px;
    }

    .navbar-collapse {
        background-color: #000;
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .navbar-nav .nav-link {
        margin: 8px 0;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .form-control,
    .custom-subscribe-btn {
        width: 100%;
        border-radius: 0.375rem;
        margin-top: 10px;
    }

    .circle-stat {
        width: 160px;
        height: 160px;
        padding: 30px 15px;
    }

    .circle-stat h2.stat-number {
        font-size: 1.8rem;
    }

    .circle-stat p.stat-label {
        font-size: 0.75rem;
    }

    .small-circle {
        width: 160px;
        height: 160px;
    }

    .large-circle {
        width: 220px;
        height: 220px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .overlap-left {
        margin-left: -60px;
    }

    .move-up {
        margin-top: -40px;
    }

    .dropdown-menu .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin-left: 0;
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .product-header {
        height: 40vh;
    }

    .product-header h1 {
        font-size: 1.6rem;
    }

    .breadcrumb-text {
        font-size: 0.85rem;
    }

    .small-circle {
        width: 130px;
        height: 130px;
    }

    .large-circle {
        width: 180px;
        height: 180px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .overlap-left {
        margin-left: -40px;
    }

    .move-up {
        margin-top: -30px;
    }

    .rating-circle {
        width: 50px;
        height: 50px;
    }

    .rating-circle span {
        font-size: 1.1rem;
    }

    .text-start .fs-5 {
        font-size: 1rem !important;
    }
}