/* Custom Bootstrap Overrides and Animations */

:root {
    --primary-color: #e9511d;
    --secondary-color: #111111;
    --accent-color: #EEC151;
    --text-color: #ffffff;
    --transition-speed: 0.3s;
    --transition-type: ease-in-out;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-10px);
}

body {
    padding-top: 76px;
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    overflow-x: hidden;
    background-color: white;
    color: white;
}


/* Section Animations - Enhanced for Verityv */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Animations for Verityv */
.rotate-in {
    opacity: 0;
    transform: rotateY(90deg);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons - Verityv Style */
.btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 7px;
    padding: 12px 28px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
}

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

/* Navbar */
.navbar {
    background-image: url(https://res.cloudinary.com/dbyioi2qq/q_auto/v1713617766/static/bitmap-77svg_1713617763_87958.svg);
    background-size: cover;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar-brand {
    font-family: Roboto;
    font-size: 35px;
    font-weight: 700;
    color: #e9511d;
    padding: 0px 0px 0px 0px;
    line-height: 40px;
    opacity: 100%;
    z-index: 1;
    width: fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.navbar-brand:hover {
    color: #e9511d;
}

.extra-padding {
    padding-left: 7rem; /* Increase as needed */
    padding-right: 7rem; /* Increase as needed */
}

.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: black !important;
    opacity: 0.9;
}

.nav-link.active {
    position: relative;
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 30px;
    height: 2px;
    background-color: #FF9900;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 500;
    padding: 8px 24px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #0098e5;
}

/* Hero Section */
.hero-section {
    background-image: url(https://res.cloudinary.com/dbyioi2qq/q_auto/v1713617766/static/bitmap-77svg_1713617763_87958.svg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn-light {
    background-color: #fff;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
    margin-left: auto;
    max-width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/*product section*/
.tagline-section {

    margin-bottom: 11rem;

}

.product-section {
    margin-bottom: 11rem;
}

.custom-card {
    padding: 70px;
    margin-top: 30px;
}

/* Remove or override any gradient you had on the section */
.about-section {
    min-height: 80vh;
    padding: 0;
    background: none;
}

/* Custom class for the left column background */
.bg-image-col {
    background: url('https://res.cloudinary.com/dbyioi2qq/q_auto/v1713617766/static/bitmap-77svg_1713617763_87958.svg') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}

/* Make sure the image is responsive within the column */
.about-image {
    max-width: 80%;
    height: auto;
    padding: 2rem;
}

/* Content wrapper for the right column */
.content-wrapper {
    max-width: 90%;
    margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .bg-image-col {
        min-height: 300px;
    }

    .content-wrapper {
        max-width: 100%;
        padding: 1rem;
    }

    .about-section h2 {
        font-size: 2.5rem;
    }
}

/* Small devices adjustments */
@media (max-width: 767.98px) {
    .bg-image-col {
        min-height: 250px;
    }

    .about-image {
        max-width: 90%;
        padding: 1rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }
}

.home-elem-164 {
    font-family: Epilogue, sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: black;
    line-height: 60px;
    text-align: center;
    width: fit-content;
    height: auto;
    display: block;
    max-width: 640px; /* You can limit the line length if desired */
    margin: 0 auto; /* This centers the block horizontally if needed */
}


/* Methodology Section Styles */
.product-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Common Card Styles */
.stat-card, .feature-card {
    padding: 30px;
    text-align: center;
    background-color: #fff;
    height: 100%;
}

/* Stat Cards with specific borders */
.stat-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0 5px;
}

/* Feature Cards with correct border pattern */
.feature-card {
    position: relative;
    padding: 40px 20px;
}

/* Remove grid gutters to align borders perfectly */
.row.g-0 .col-md-6, .row.g-0 .col-lg-4 {
    padding-right: 0;
    padding-left: 0;
}

/* Top row feature cards */
.top-left {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.top-middle {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.top-right {
    border-bottom: 1px solid #e0e0e0;
}

/* Bottom row feature cards */
.bottom-left {
    border-right: 1px solid #e0e0e0;
}

.bottom-middle {
    border-right: 1px solid #e0e0e0;
}

.bottom-right {
    /* No borders needed */
}

/* Stat Values and Labels */
.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #212529;
}

.stat-label {
    text-transform: uppercase;
    font-size: 1rem;
    color: #6c757d;
}

/* Feature Card Content */
.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    margin-bottom: 25px;
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 530;
    margin-bottom: 15px;
    color: #212529;
}

.feature-text {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .stat-value {
        font-size: 2.5rem;
    }

    /* Adjust borders for tablet view */
    .feature-card {
        padding: 30px 15px;
    }
}

@media (max-width: 767.98px) {
    /* For mobile, reset border pattern */
    .feature-card {
        border: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 25px 15px;
    }

    .row.g-0 .col-md-6:last-child .feature-card {
        border-bottom: none;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .stat-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .product-section {
        padding: 40px 0;
    }

    .stat-value {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }
}

/* Hero section margins for large screens */
@media (min-width: 992px) {
    .welcome-tag {
        margin-left: 220px;
        margin-right: 220px;
        margin-bottom: 100px;
    }
}

/* Adjust margins for medium and small devices */
@media (max-width: 991.98px) {
    .welcome-tag {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 50px;
    }
}

/*........................*/
/* Outer demo section fills the viewport height */
.demo-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Background container with black gradient overlay and background image */
.demo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* The gradient overlay is combined with the background image */
    background-image: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 21%, rgba(0, 0, 0, 0) 100%),
    url('https://res.cloudinary.com/dbyioi2qq/q_auto/v1660652857/static/denys-nevozhai-d8izplx-2fs-unsplashjpg_1660652853_32720.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Content container styles – ensures text sits above the background */
.demo-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 100px 16px; /* Adjust padding as needed */
}

/* Heading styles */
.demo-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #FFF;
    line-height: 70px;
    max-width: 640px;
    margin-bottom: 1rem;
}

/* Introductory paragraph styles */
.demo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 24px;
    max-width: 530px;
    margin-bottom: 24px;
}

/* Bullet list styles */
.demo-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each bullet point container */
.demo-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    max-width: 400px;
}

/* Tick icon styles */
.demo-bullets li img {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: cover;
}

/* Bullet text styles */
.demo-bullets li p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    line-height: 24px;
    margin: 0;
}

/* Media query for responsiveness */
@media (max-width: 767.98px) {
    .demo-heading {
        font-size: 40px;
        line-height: 48px;
    }

    .demo-text {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Base styles for service blocks */
.service-block {
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Style for check icons */
.check-icon {
    display: inline-block;
    color: #17a2b8;
    font-weight: bold;
    font-style: normal;
}

/* Make image responsive but maintain quality */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Custom media queries for better mobile experience */
@media (max-width: 991px) {
    .service-block {
        text-align: center !important;
        margin-bottom: 30px;
    }

    .service-block h5 {
        margin-bottom: 15px;
    }
}

@media (max-width: 2000px) {
    .service-block {

        padding-bottom: 18px;
    }

    .right-service-block {
        padding-bottom: 44px;
    }

    .service-block h5 {
        margin-bottom: 15px;
    }

    .right-service-block h5 {
        margin-bottom: 15px;
    }
}

@media (max-width: 1400px) {
    .service-block {
        padding-bottom: 2px;
    }

    .right-service-block {
        padding-bottom: 3px;
    }

    .service-block h5 {
        margin-bottom: 15px;
    }

    .right-service-block h5 {
        margin-bottom: 15px;
    }
}

@media (max-width: 1200px) {

    .service-block {
        text-align: center !important;
        margin-bottom: 30px;
    }

    .service-block h5 {
        margin-bottom: 15px;
    }

    .right-service-block {
        text-align: center !important;
        margin-bottom: 30px;
    }

    .corporate-block {
        text-align: center !important;

    }
    .verityv-impacta-container img{
        height: 400px;
        width: 600px;
         padding-bottom: 50px;
    }
}

/* Fine-tune spacing for small screens */
@media (max-width: 767px) {
    .service-block {
        padding: 5px 15px;
    }
       .verityv-impacta-container img{
        height: 250px;
        width: 380px;
           padding-bottom: 50px;
    }
}


.verity-impacta-section {
    min-height: 80vh;
    margin-top: 200px;
}

/* Add consistent spacing between sections */
.mb-5 {
    margin-bottom: 3rem !important;
}

/* Ensure list items have consistent spacing */
.list-unstyled li {
    margin-bottom: 8px;
    line-height: 1.5;
}


/* Card Animations - Verityv Style */
.card {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.team-section {
    margin-bottom: 100px;
    margin-top: 100px;
}


/*******************************************************/
  /* Section styling */
    .team-section {
      background: #fff;
      padding: 3rem 0;
    }
    .team-section h2 {
      color: #E2761B; /* your orange */
      font-weight: 700;
    }

    /* Flex-wrapper: equal gap between every card */
    .team-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 3rem; /* fixed 3rem between cards (both row & column) */
    }

    /* XL+ : fix each card to 250px wide */
    @media (min-width: 1200px) {
      .team-card {
        flex: 0 0 160px;
      }
    }

    /* MD–XL : two cards per row (with half the gap on either side baked in) */
    @media (min-width: 768px) and (max-width: 1199.98px) {
      .team-card {
        flex: 0 1 calc(50% - 1.5rem);
      }
    }

    /* <MD : full-width cards */
    @media (max-width: 767.98px) {
      .team-card {
        flex: 0 1 40%;
          gap: 3rem;
      }
    }
/*******************************************************/
/* Footer Styling - Verityv Style */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 90px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 81, 29, 0.05), transparent 70%);
    pointer-events: none;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer h5:hover:after {
    width: 70px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(8px);
    text-decoration: none;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 8px;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Float Animation - Verityv Style */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 6s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

/* Pulse Animation - Verityv Style */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 81, 29, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(233, 81, 29, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(233, 81, 29, 0);
    }
}

.pulse-animation {
    animation: pulse 2.5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.pulsing {
    animation: pulse 2.5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}


/* Form Controls - Verityv Style */
.form-control {
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 16px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(233, 81, 29, 0.2);
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
    opacity: 0.9;
    font-size: 16px;
}

/* Form floating styles - Verityv Style */
.form-floating > .form-control {
    padding: 20px 18px 10px;
    height: calc(3.5rem + 2px);
}

.form-floating > label {
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.6);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.8;
    transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
}

.form-floating > .form-control:focus {
    padding-top: 25px;
    padding-bottom: 5px;
}

/* Loading Animation - Verityv Style */
.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Back to Top Button - Verityv Style */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(238, 193, 81, 0.3);
}

.back-to-top i {
    font-size: 20px;
}

/* Hero Shape - Verityv Style */
.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
    transform-origin: bottom;
    transition: all 0.5s ease;
}

.hero-shape svg {
    display: block;
    width: 100%;
    height: auto;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-shape:hover svg {
    transform: translateY(-15px);
}

/* Carousel Controls - Verityv Style */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Image Hover Zoom - Verityv Style */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.img-hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.img-hover-zoom:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.img-hover-zoom:hover img {
    transform: scale(1.15);
}

/* Text Gradient - Verityv Style */
.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* Badge - Verityv Style */
.badge {
    padding: 8px 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Lazy Load Image Animation */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Responsive Video Container */
.responsive-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.responsive-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Dark Mode Enhanced Elements */
.bg-dark {
    background-color: var(--secondary-color) !important;
}

.bg-dark-subtle {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Accordion - Verityv Style */
.accordion {
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-weight: 600;
    padding: 18px 24px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(233, 81, 29, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(233, 81, 29, 0.2);
}

.accordion-body {
    padding: 20px 24px;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonial Card - Verityv Style */
.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 120px;
    font-family: 'Georgia', serif;
    line-height: 1;
    color: rgba(233, 81, 29, 0.1);
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
}

.testimonial-card .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-card .author-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-card .author-role {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Stats Box - Verityv Style */
.stats-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
}

.stats-box:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
}

.stats-box .stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stats-box .stats-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced navbar toggler animation */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 25px;
    position: relative;
    margin-right: 15px;
    margin-left: auto;
    cursor: pointer;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 0px;
}

.navbar-toggler span:nth-child(2),
.navbar-toggler span:nth-child(3) {
    top: 10px;
}

.navbar-toggler span:nth-child(4) {
    top: 20px;
}

.navbar-toggler.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.navbar-toggler.active span:nth-child(2) {
    transform: rotate(45deg);
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.navbar-toggler.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/* Media Queries - Verityv Responsive Design */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .section {
        padding: 90px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .card {
        margin-bottom: 20px;
    }

    .highlight-feature {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .btn {
        padding: 10px 22px;
        font-size: 15px;
    }

    .navbar-brand {
        font-size: 22px;
    }
}



































