html {
    scroll-behavior: smooth;

    overflow-x: hidden !important;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000 !important;

}

* {
    color: #fff !important;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    height: 650px;
    background-size: 100%;
    background-position: center bottom;
    position: relative;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 5;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
}

.navbar-nav {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.9px);
    -webkit-backdrop-filter: blur(9.9px);
    border: 1px solid var(--primary);
    padding: 10px 30px;
}

/* Sticky header */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    /* above content */
    transition: all 0.3s ease;
}

/* Optional: add shadow on scroll */
#mainHeader.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    /* makes it more visible */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}



.slick-dots {
    list-style: none;
    bottom: 70px;
}

.slick-dots li {
    position: relative;
    width: 10px;
    transition: all 300ms ease-in;
}

.slick-dots li::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--primary);
    border-radius: 10px;
}

.slick-dots li.slick-active {
    width: 30px;
}


.step-list {
    list-style: none;
    padding-left: 30px;
    position: relative;
}

.step-list li {
    position: relative;
    margin-bottom: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.step-list li:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -33px;
    top: -40px;
    width: 2px;
    height: 30px;
    background: #ff000061;
    z-index: 1;
}

.step-list li:not(:first-child)::after {
    content: '';
    position: absolute;
    left: -33px;
    top: -40px;
    width: 2px;
    height: 0%;
    background: var(--primary);
    z-index: 2;
    transition: all 300ms ease-in-out;
}

.step-list li.active::after {
    height: 30px
}


.step-list li .number {
    width: 35px;
    height: 35px;
    background: rgb(26 26 26 / 0.8);
    border: 2px solid var(--primary);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    color: var(--primary);
    position: absolute;
    left: -50px;
    top: -8px;
}

.step-list li.active .number,
.step-list li:hover .number {
    background: var(--primary);
    color: white;
}

.step-list li.active {
    font-weight: bold;
}

.carousel img {
    height: 391px;
    object-fit: cover;
    object-position: right;
}

.active-slider {
    display: block !important;
}

.carousel {
    width: 80%;
    margin: auto;
}

.carousel.slick-initialized {
    display: block;
}

.image-box img {
    height: 370px;
    object-fit: cover;
    object-position: right;
    padding-right: 60px;
}

.progress-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#dc3545 0deg, #f3f3f3 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    font-weight: bold;
    font-size: 22px;
    color: #333;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 50%;
}

.progress-value {
    position: relative;
    z-index: 10;
    font-size: 40px;
    font-weight: 600;
    color: #000;
}

.about-us .feature-card {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    padding: 30px 20px 20px;
    border-radius: 20px;
    background-color: rgb(26 26 26 / 0.8);
    height: 270px;
    border-bottom: 10px solid var(--primary);
}

.card-features .col-md-4 {
    padding: 50px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;

}

.bg-light {
    background-color: rgb(26 26 26 / 0.8) !important;
}

.card-features .col-md-4:nth-child(n+4) {
    border-bottom: none;
}

.card-features .col-md-4:nth-child(3n) {
    border-right: none;
}


.about-img img {
    object-fit: cover;
    border-radius: 20px;
    height: 500px;
    display: block;
    margin-left: auto;
}

.client-card {
    text-align: center;
    padding: 20px;
}

.client-card .card {
    border: none;
    background: #db2527;
    border-radius: 15px;
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
    padding: 15px;
}

.client-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 15px auto;
    object-fit: cover;
}

.client-card h5 {
    font-weight: 600;
    margin-top: 10px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #999;
}

.slick-dots li.slick-active button:before {
    color: #000;
}

.client-card .card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(43deg);
    width: 30px;
    height: 30px;
    background-color: #db2527;
    border-radius: 2px;
}

.client-slider .slick-active:not(.slick-current) {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.client-slider .slick-current .client-card .card {
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.client-slider .slick-dots {
    list-style: none;
    bottom: -50px;
}


.subscription-box {
    max-width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    overflow: hidden;
    padding: 3px;
}

.subscribe-input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
    box-shadow: none;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-input:focus {
    outline: none;
    box-shadow: none;
}

.subscribe-btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

.social-links .social-icon {
    color: #bbb;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.social-links .social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-links li {
    display: inline-block;
}

.social-links {
    padding: 0;
}

.step-container {
    overflow-y: auto;
    max-height: 500px;
    padding-left: 20px;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

#mainHeader .navbar-brand img {
    transition: all 0.3s ease;
}

#mainHeader.scrolled .navbar-brand img {
    width: 70px;
}

#mainHeader.scrolled .container.py-3 {
    padding: 0 !important;
}

#mainHeader.scrolled .navbar {
    padding: 0px;
}


/* contact form section css */
.contact-us h2 span {
    color: var(--bs-danger);
}

.contact-list i {
    width: 35px;
    text-align: center;
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 2rem;
    }
}


/* shop section's css */
.gallery-section .divider {
    width: 60px;
    height: 3px;
    background-color: var(--bs-danger);
}

.gallery-section .nav .nav-link {
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 30px;
    padding: 6px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-section .nav .nav-link.active,
.gallery-section .nav .nav-link:hover {
    background: var(--bs-danger);
    color: #fff;
    border-color: var(--bs-danger);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-card img {
    transition: transform 0.6s ease;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover h5,
.gallery-hover small {
    text-align: center;
}

.gallery-hover .badge {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .gallery-section h2 {
        font-size: 1.6rem;
    }
}


/* pricing section*/
.pricing .card-body ul li i {
    font-size: 1.2rem;
}


/* portfolio section */
.circles {
    position: absolute;
    left: 0;
    top: 0;
}

.circle {
    position: absolute;
    background: linear-gradient(138.97deg, #DC0028 22.19%, #9F0000 100.81%);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    z-index: -1;
}

.mockupImage {
    width: 100%;
    height: 100%;
    max-width: 599px;
    /* margin-bottom: 10px; */
}

.project-slider-main {
    overflow: hidden;
    position: relative;
    padding: 95px 0 0 0;
}

.circle-top {
    top: 250px;
    right: 0;
    opacity: 0.2;
    /* transform: translateX(-50%); */
}

.subImages .mockup-out {
    cursor: pointer;
    border-radius: 4px;
    border: 3px solid #d30027;
    transition: transform 0.3s ease;
}

.subImages .mockup-out:hover {
    transform: translateY(-5px);
}

.subImages .mockup-out img {
    object-fit: contain;
}

.subImages .mockup-out .circles {
    opacity: .2;

}

.subImages {
    margin-top: 20px;
}

.mainImages {
    display: flex;
    align-items: center;
}

.p-slider button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.p-slider .slide-arrow {
    position: absolute;
    top: 50%;
    margin-top: -15px;
}

.p-slider .prev-arrow {
    left: -40px;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 15px solid #d30027;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.p-slider .next-arrow {
    right: -40px;
    width: 0;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 15px solid #d30027;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}


/* feature card animation */
.feature-card {
    perspective: 1000px;
    height: 250px;
    cursor: pointer;
    position: relative;
}

/* Inner wrapper for 3D flip */
.feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.feature-card:hover .feature-card-inner {
    transform: rotateY(180deg);
}

/* Front & back sides */
.feature-card-front,
.feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.4s ease;
}

/* Front side */
.feature-card-front {
    color: #333;
}

/* Back side (flipped) */
.feature-card-back {
    background: linear-gradient(to bottom, #DC3545, #000000);
    color: #fff;
    transform: rotateY(180deg);
}

/* Icon color transition */
.feature-card .icon-box i {
    transition: color 0.4s ease;
}

/* .feature-card:hover .icon-box i {
  color: #fff !important;
} */
.rounded-xl {
    border-radius: 15px !important;
}

.feature-card:hover {
    transition: transform 0.3s ease;
}

footer .form-control:focus {
    /* color: #555; */
    background-color: transparent !important;

}

.p-slider .slick-dots {
    list-style: none;
    bottom: -15px !important;
}

/* Modern Pricing Section */
.pricing-card {
    background: rgb(26 26 26 / 0.8);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 575px;
}

.pricing-card:hover {
    border-color: #dc3545;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #dc3545;
    border-width: 3px;
}

.popular-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    padding: 30px 30px 20px;
    background: rgb(30 30 30);
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 0;
    padding: 15px;
}

.plan-subtitle {
    color: #6c757d;
    font-size: 15px;
    margin: 0;
}

.pricing-body {
    padding: 25px;
}

.price-tag {
    text-align: center;
    margin-bottom: 30px;
}

.price-tag .currency {
    font-size: 24px;
    color: #dc3545;
    font-weight: 600;
    vertical-align: top;
}

.price-tag .amount {
    font-size: 56px;
    color: #dc3545;
    font-weight: 700;
    line-height: 1;
}

.price-tag .period {
    font-size: 16px;
    color: #6c757d;
    margin-left: 4px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li i {
    color: #dc3545;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pricing-card.featured .btn-danger {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

@media (max-width: 992px) {
    .price-tag .amount {
        font-size: 48px;
    }

    .plan-name {
        font-size: 24px;
    }
}


/* FAQ Section Styling */
.accordion-item {
    background-color: #fff;
    border: none !important;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    transition: all 0.3s ease;
}



.accordion-button {
    color: #333 !important;
    background-color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button::before {
    content: "?";
    position: absolute;
    left: 25px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.accordion-button {
    padding-left: 60px !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.3);
}

.accordion-button:focus {
    z-index: 3;
    border: none !important;
    outline: 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.accordion-button:not(.collapsed)::before {
    content: "✓";
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px 30px 25px 60px;
    background-color: #f8f9fa;
    font-size: 15px;
    line-height: 1.7;
    color: #555 !important;
    border-top: 2px solid #dc354520;
}

.accordion-collapse {
    transition: all 0.4s ease-in-out;
}


.bg-black {
    background-color: #000 !important;
}

.steps img {
    height: 150px;
    object-fit: contain;
    object-position: center;
    width: 150px;
    display: block;
    margin: 0 auto;
}

.steps .steps-arrow img {
    transform: rotate(90deg);
    height: 100px;
    object-fit: contain;
    object-position: center;
    width: 100px;
}

.feature-card img {
    height: 100px;
    object-fit: contain;
    object-position: center;
    width: 100px;
}

/* Horizontal Recruitment Timeline */
.recruitment-timeline {
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    padding: 40px 0 80px;
}

/* Horizontal connecting line */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545 0%, #dc3545 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-item {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 0 15px;
}

/* Alternating positions */
.timeline-item:nth-child(odd) .timeline-content {
    margin-bottom: 80px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-top: 80px;
}

/* Year dot/badge on the line */
.timeline-dot {
    width: 200px;
    height: 80px;
    background: #dc3545;
    border: 5px solid #fff;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
}



.timeline-dot span {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

/* Content card */
.timeline-content {
    background: rgb(26 26 26);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 280px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
}

.timeline-content h5 {
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.timeline-content ul {
    text-align: left;
    padding-left: 0;
    list-style: none;
}

.timeline-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.timeline-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive design */
@media (max-width: 992px) {
    .timeline-items {
        flex-direction: column;
        gap: 60px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        margin-top: 20px;
    }

    .timeline-dot {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .timeline-content {
        min-height: auto;
    }

    .timeline-content h5 {
        font-size: 16px;
    }

    .timeline-content ul li {
        font-size: 13px;
    }
}

/* Beyond Highlight Reels Section */
.beyond-highlights {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: rgb(26 26 26 / 0.8);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 80px;
}

.comparison-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.comparison-item.wrong {
    border-left: 4px solid #dc3545;
}

.comparison-item.right {
    border-left: 4px solid #28a745;
}

.comparison-item i {
    flex-shrink: 0;
}

.comparison-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comparison-item {
        padding: 15px;
        min-height: 60px;
    }

    .comparison-item p {
        font-size: 14px;
    }
}

/* Feature Highlights Section */
/* .feature-highlights {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
} */



.feature-tabs-nav .nav-link {
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background: rgb(26 26 26);
    width: 100%;
    justify-content: center;
}

.feature-tabs-nav .nav-link i {
    font-size: 18px;
}

.feature-tabs-nav .nav-link:hover {
    background: #f8f9fa;
    border-color: #dc3545;
    color: #dc3545 !important;
}

.feature-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white !important;
    border-color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.feature-tabs-nav .nav-link.active i {
    color: white;
}

/* Slick Slider Styles for Feature Tabs */
.feature-tabs-slider {
    position: relative;
    padding: 0 50px;
}

.feature-tabs-slider .slick-slide {
    padding: 0 10px;
    outline: none;
}

.feature-tabs-slider .slick-slide>div {
    outline: none;
}

.feature-tab-item {
    outline: none;
}

/* Custom Arrows */
.feature-tabs-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dc3545;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.feature-tabs-slider .slick-arrow:hover {
    background: #c82333;
    transform: translateY(-50%) scale(1.1);
}

.feature-tabs-slider .slick-arrow:before {
    content: '';
    display: block;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 4px;
}

.feature-tabs-slider .slick-prev {
    left: 0;
}

.feature-tabs-slider .slick-prev:before {
    transform: rotate(135deg);
    margin-left: 3px;
}

.feature-tabs-slider .slick-next {
    right: 0;
}

.feature-tabs-slider .slick-next:before {
    transform: rotate(-45deg);
    margin-right: 3px;
}


.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.feature-image-wrapper img {
    transition: transform 0.4s ease;
    height: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 20px !important;
}


.feature-content h3 {
    color: #dc3545;
    font-weight: bold;
    font-size: 28px;
}

.feature-content .lead {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-content .custom-list {
    list-style: none;
    padding-left: 0;
}

.feature-content .custom-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-content .custom-list li i {
    font-size: 20px;
    flex-shrink: 0;
}

.tab-content {
    padding: 40px 0;
}

.tab-pane {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 992px) {
    .feature-tabs-nav .nav-pills {
        flex-direction: column;
        border-radius: 15px;
    }

    .feature-tabs-nav .nav-link {
        justify-content: center;
    }

    .feature-tabs-slider {
        padding: 0 40px;
    }

    .feature-content h3 {
        font-size: 24px;
    }

    .about-img img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .steps {
        gap: 20px;
    }

    .hero-content a.btn {
        padding: 10px 15px !important;
        font-size: 14px;
    }

    .feature-tabs-nav .nav-link {
        padding: 10px 20px;
        font-size: 13px;
    }

    .feature-tabs-slider {
        padding: 0 30px;
    }

    .feature-tabs-slider .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .feature-tabs-slider .slick-arrow:before {
        border-width: 0 2px 2px 0;
        padding: 3px;
    }


    .feature-content .lead {
        font-size: 15px;
    }

    .feature-content .custom-list li {
        font-size: 14px;
    }

    .steps .steps-arrow img {
        transform: rotate(180deg);
    }

    .step-list li h4 {
        font-size: 14px;
    }

    .feature-image-wrapper img {
        height: 370px;
    }

    .timeline-items .timeline-item:nth-child(odd) {

        display: flex;
        flex-direction: column-reverse;
    }

    .social-links {
        justify-content: center;
    }

    .hero-content {
        position: absolute;
        top: 56%;
    }

    .hero-content h5 {
        font-size: 10px !important;
        line-height: 15px;
        padding: 0 40px;
    }

    #mainHeader:not(.scrolled) #navbarNav {
        background-color: #000;
    }

    .hero-content h1.display-5 {
        font-size: 20px !important;
    }

    .hero-slide {
        height: 570px;
        background-size: cover;
    }

    .navbar-nav {
        background: transparent !important;
        border-radius: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        padding: 10px 30px;
        gap: 10px !important;
    }

    div#navbarNav {
        background: transparent;
        padding: 20px 0px;
    }

    #navbarNav a.btn {
        margin-left: 20px;
    }
}

/* Premium Navbar Redesign */
.navbar-nav {
    background: rgba(10, 10, 10, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 100px !important;
    padding: 8px 30px !important;
    transition: all 0.4s ease;
}

#mainHeader.scrolled .navbar-nav {
    background: rgba(10, 10, 10, 0.8) !important;
    border-color: rgba(220, 53, 69, 0.2) !important;
}

.nav-link {
    font-weight: 500 !important;
    letter-spacing: 0.3px;
    padding: 10px 13px !important;
    position: relative;
    font-size: 15px;
    transition: color 0.3s ease !important;
}

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

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

/* Redesigned Mega Menu Styles */
.nav-item.dropdown.has-mega-menu {
    position: static !important;
}

.nav-item.dropdown.has-mega-menu .dropdown-menu {
    width: 600px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(20px) !important;
    top: calc(100% + 15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    background: rgba(15, 15, 15, 0.98) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-item.dropdown.has-mega-menu:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
}

.mega-menu-content {
    width: 100%;
}

.mega-menu-item {
    padding: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.mega-menu-item:not(.disabled):hover {
    background: rgba(220, 53, 69, 0.05);
}

.mega-menu-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff !important;
    flex-shrink: 0;
}

.mega-menu-icon.sports {
    background: linear-gradient(135deg, #dc3545 0%, #8b1a24 100%);
}

.mega-menu-icon.health {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.mega-menu-icon.app {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.mega-menu-icon.media {
    background: linear-gradient(135deg, #ffc107 0%, #d39e00 100%);
}

.mega-menu-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.5px;
}

.mega-menu-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1.5;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.mega-menu-item.disabled {
    opacity: 0.5;
    cursor: default;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        background: transparent !important;
        border: none !important;
        padding: 20px !important;
        border-radius: 0 !important;
    }

    .nav-item.dropdown.has-mega-menu .dropdown-menu {
        width: 100% !important;
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
        box-shadow: none;
        border: none !important;
        margin-top: 15px;
        border-radius: 15px !important;
        display: none !important;
        /* Managed by JS/Collapse */
    }

    .nav-item.dropdown.has-mega-menu.show .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-item {
        padding: 20px;
    }

    .col-md-6 {
        border: none !important;
    }
}

#mainHeader.scrolled .navbar-nav {
    background: transparent !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 30px transparent !important;
    backdrop-filter: blur(9.9px) !important;
    -webkit-backdrop-filter: blur(9.9px) !important;
    border: 1px solid transparent !important;
    padding: 10px 30px !important;
}