/* body, html{
    background-image: repeating-linear-gradient(
            90deg,
            hsla(196, 0%, 79%, 0.06) 0px,
            hsla(196, 0%, 79%, 0.06) 1px,
            transparent 1px,
            transparent 96px
        ),
        repeating-linear-gradient(
            0deg,
            hsla(196, 0%, 79%, 0.06) 0px,
            hsla(196, 0%, 79%, 0.06) 1px,
            transparent 1px,
            transparent 96px
        ),
        repeating-linear-gradient(
            0deg,
            hsla(196, 0%, 79%, 0.09) 0px,
            hsla(196, 0%, 79%, 0.09) 1px,
            transparent 1px,
            transparent 12px
        ),
        repeating-linear-gradient(
            90deg,
            hsla(196, 0%, 79%, 0.09) 0px,
            hsla(196, 0%, 79%, 0.09) 1px,
            transparent 1px,
            transparent 12px
        ),
        linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255)) !important;
} */
.border-radius-1-rem{
    border-radius: 1rem;
}

/* Hero Banner Background */
.bg-hero-banner {
    position: relative !important;
    background-color: #131317 !important; /* Fallback color */
    overflow: hidden;
    min-height: 100vh !important; /* Ensure minimum height */
}

/* Background image with blur effect */
.bg-hero-banner::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -20px;
    background-image: url('../img/landing/crud-dark-background.png');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(3px);
    z-index: 1;
}

/* Dark overlay */
.bg-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0606114b;
    z-index: 2;
}

/* Ensure content stays above overlay */
.bg-hero-banner > * {
    position: relative;
    z-index: 10;
}

.white-gradient-bg{
    position: relative !important;
    min-height: 100vh !important;
    background-color: #EDF0F6;
    overflow: hidden;
    z-index: 1;
}

/* SVG Background positioned at bottom */
.white-gradient-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 600px;
    background-image: url('../img/svg/gradient-element.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above SVG background */
.white-gradient-bg > * {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for white-gradient-bg section */
@media (max-width: 1199.98px) {
    .white-gradient-bg::before {
        bottom: 0;
        height: 500px;
    }
}

@media (max-width: 991.98px) {
    .white-gradient-bg::before {
        bottom: 0;
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .white-gradient-bg {
        min-height: auto !important;
        height: auto !important;
        padding: 3rem 0 2rem !important;
    }
    
    .white-gradient-bg::before {
        bottom: 0;
        height: 300px;
    }
    
    .white-gradient-bg .container {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .white-gradient-bg .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .white-gradient-bg h1 {
        padding: 0.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .white-gradient-bg {
        padding: 2rem 0 1.5rem !important;
    }
    
    .white-gradient-bg::before {
        bottom: 0;
        height: 250px;
    }
    
    .white-gradient-bg .container {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .white-gradient-bg .btn-lg {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.95rem !important;
        white-space: nowrap;
    }
    
    .white-gradient-bg h1 {
        padding: 0.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .white-gradient-bg .h2-subheader {
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 400px) {
    .white-gradient-bg {
        padding: 1.5rem 0 1rem !important;
    }
    
    .white-gradient-bg::before {
        bottom: 0;
        height: 200px;
    }
    
    .white-gradient-bg .btn-lg {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .white-gradient-bg h1 br {
        display: none;
    }
}

/* Section Image Background */
.section-image-bg {
    position: relative !important;
    background-color: #131317 !important;
    overflow: hidden;
    min-height: 100vh !important;
}

/* Background image with blur effect */
.section-image-bg::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: url('../img/landing/textured-background.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* filter: blur(5px); */
    z-index: 1;
}

/* Dark overlay */
.section-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0606114b;
    z-index: 2;
}

/* Ensure content stays above overlay */
.section-image-bg > * {
    position: relative;
    z-index: 10;
}

.shine-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.3) 25%,
    #ffffff 50%,
    rgba(255, 255, 255, 0.3) 120%,
    #ffffff 100%
  );
  background-size: 500% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
  animation-timing-function: ease-in-out;
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* Optional subtle variant for the subheader */
.shine-sub {
  background: linear-gradient(
    120deg,
    #d0d0d0 0%,
    rgba(255, 255, 255, 0.4) 25%,
    #d0d0d0 50%,
    rgba(255, 255, 255, 0.4) 75%,
    #d0d0d0 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

/* Mobile responsiveness - disable fixed attachment on mobile devices */
@media (max-width: 768px) {
    .bg-hero-banner,
    .bg-hero-banner::before {
        background-attachment: scroll;
    }
    
    /* Reduce blur on mobile for better performance */
    .bg-hero-banner::before {
        filter: blur(4px);
    }
}

/* Tablet optimization */
@media (max-width: 1024px) and (min-width: 769px) {
    .bg-hero-banner::before {
        filter: blur(6px);
    }
}

body{
    /* background-color: #ffffff; */
    background-color: #EDF0F6;
    font-family: "Montserrat", sans-serif !important;
}

.section-py {
    padding: 6.25rem 0;
}
@media (max-width: 1199.98px) {
    .section-py {
        padding: 5rem 0;
    }
}
@media (max-width: 767.98px) {
    .section-py {
        padding: 3rem 0;
    }
}

.landing-hero {
    border-radius: 0 0 3.5rem 3.5rem;
    padding-top: 10.2rem;
}
.landing-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
@media (min-width: 992px) {
    .landing-hero .hero-text-box {
        max-width: 34.375rem;
        margin: 0 auto;
    }
}
.landing-hero .hero-title {
    background: linear-gradient(
        to right,
        #28c76f 0%,
        #5a4aff 47.92%,
        #ff3739 100%
    );
    background-size: 200% auto;
    color: #566a7f;
    background-clip: text;
    line-height: 1.2;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s ease-in-out infinite alternate;
}
.landing-hero .hero-sub-title {
    line-height: 28px;
}
.landing-hero .landing-hero-btn .hero-btn-item {
    inset-inline-start: -102%;
    top: 50%;
}
.landing-hero .hero-animation-img {
    margin-bottom: -32rem;
}
@media (max-width: 1199.98px) {
    .landing-hero .hero-animation-img {
        margin-bottom: -20rem;
    }
}
@media (max-width: 575.98px) {
    .landing-hero .hero-animation-img {
        margin-bottom: -10rem;
    }
}
.landing-hero .hero-animation-img .hero-dashboard-img {
    width: 80%;
    margin: 0 auto;
    will-change: transform;
    transform-style: preserve-3d;
    transition: all 0.1s;
}
.landing-hero .hero-animation-img .hero-dashboard-img img {
    width: 100%;
}

.landing-hero-blank {
    padding-top: 26rem;
}
@media (max-width: 1199.98px) {
    .landing-hero-blank {
        padding-top: 15rem;
    }
}
@media (max-width: 575.98px) {
    .landing-hero-blank {
        padding-top: 7rem;
    }
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    80% {
        background-position: 50% 90%;
    }
    100% {
        background-position: 91% 100%;
    }
}
.landing-features
    .features-icon-wrapper
    .features-icon-box
    .features-icon-description {
    max-width: 19.25rem;
    margin: 0 auto;
}

.landing-reviews {
    border-top-left-radius: 3.75rem;
    border-top-right-radius: 3.75rem;
}
.landing-reviews .landing-reviews-btns .reviews-btn {
    padding: 0.45rem;
}
.landing-reviews .swiper-reviews-carousel .swiper-button-prev,
.landing-reviews .swiper-reviews-carousel .swiper-button-next {
    display: none;
}
.landing-reviews .swiper-reviews-carousel .swiper-slide {
    height: auto;
}
.landing-reviews .swiper-reviews-carousel .client-logo {
    height: 1.375rem;
    object-fit: contain;
}
.landing-reviews .swiper-logo-carousel .swiper {
    max-width: 45rem;
}
.landing-reviews .swiper-logo-carousel .swiper .swiper-slide {
    display: flex;
    justify-content: center;
}
.landing-reviews .swiper-logo-carousel .swiper .client-logo {
    max-height: 2.5rem;
    max-width: 95%;
    object-fit: contain;
}

.landing-team .card,
.landing-team .card .team-image-box {
    border-top-left-radius: 5.625rem;
    border-top-right-radius: 1.25rem;
}
.landing-team .card .card-body {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
.landing-team .team-image-box {
    height: 11.5625rem;
}
.landing-team .team-image-box .card-img-position {
    height: 15rem;
    transform: translateX(-50%);
}
@media (max-width: 991.98px) {
    .landing-team .team-image-box .card-img-position {
        height: 13rem;
    }
}
@media (max-width: 575.98px) {
    .landing-team .team-image-box {
        height: 11rem;
    }
}
.landing-team .card .team-media-icons i {
    transition: all 0.2s ease-in-out;
}

.landing-pricing {
    border-radius: 3.75rem;
}
.landing-pricing .pricing-plans-item {
    inset-inline-end: -60%;
    bottom: 0;
}
@media (max-width: 767.98px) {
    .landing-pricing .pricing-plans-item {
        inset-inline-end: 0;
        bottom: 1rem;
    }
}
.landing-pricing .price-yearly-toggle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.landing-pricing .card .card-header,
.landing-pricing .card .card-body {
    padding: 2rem;
}

.landing-faq {
    border-top-left-radius: 3.75rem;
    border-top-right-radius: 3.75rem;
}
.landing-faq .faq-image {
    max-width: 20rem;
    width: 80%;
}

.landing-contact .text-heading {
    overflow-wrap: anywhere;
}
.landing-contact .contact-img-box,
.landing-contact .contact-img-box .contact-img {
    border-radius: 3.75rem 0.375rem 0.375rem 0.375rem;
}
.landing-contact .contact-img-box .contact-border-img {
    inset-block-start: -2.5rem;
    inset-inline-start: -2.8125rem;
}

.light-style .landing-hero {
    background: linear-gradient(138.18deg, #eae8fd 0%, #fce5e6 94.44%);
}
.light-style .landing-hero::after {
    background-color: #fff;
}

.dark-style .landing-hero {
    background: #1e2130;
}
.dark-style .landing-hero::after {
    background-color: #2b2c40;
}

[dir="rtl"] .landing-team .team-image-box .card-img-position {
    transform: translateX(50%) !important;
}
[dir="rtl"] .landing-reviews .landing-reviews-btns {
    flex-direction: row-reverse;
    justify-content: start;
}
[dir="rtl"] .landing-reviews .landing-reviews-btns .reviews-btn {
    padding: 0.45rem;
}
[dir="rtl"] .landing-pricing .switch .switch-label {
    padding-right: 0;
}
[dir="rtl"] .landing-pricing .switch .switch-label:first-child {
    padding-left: 0.5rem;
}
[dir="rtl"] .landing-pricing .switch .switch-input ~ .switch-label {
    padding-right: 3rem;
}
[dir="rtl"] .landing-contact .contact-img-box {
    border-radius: 0.375rem 3.75rem 0.375rem 0.375rem;
}
[dir="rtl"] .landing-contact .contact-img-box::before {
    inset-block-start: -1.875rem;
    inset-inline-start: -3.125rem;
    transform: rotate(90deg);
}

/* Video Background with sound */
.home-bg {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* makes sure it fills the screen */
    z-index: 0;
}

/* Dark overlay */
.home-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

/* Foreground content */
.home-bg .content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* 🔊 Sound Toggle Button */
.sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.sound-toggle:hover {
    background: rgba(0,0,0,0.8);
}

/* 📱 Mobile optimization: hide video, use fallback image */
/* @media (max-width: 768px) {
    .home-bg video {
        display: none;
    }
    .home-bg {
        background: url("/assets/img/landing/textured-background.jpg") no-repeat center center;
        background-size: cover;
    }
    .sound-toggle {
        display: none;
    }
} */


/* home headers */
.home-bg h1,
h3,
button, a {
    position: relative;
    z-index: 2;
    color: #fff !important;
    text-align: center;
    padding-top: 20px;
}

.vh-100{
  height: 100vh;
}

.max-textwidth {
    max-width: 40%;
}

@media (max-width: 1024px) {
    .max-textwidth {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .max-textwidth {
        max-width: 80%;
    }
    .vh-100{
        height: 100% !important;
    }
}

.text-justify {
    text-align: justify !important;
}

.btn-green2 {
    background-color: #53d46d;
}

.btn-green2:hover {
    background-color: #48b85f;
}


.btn-black{
    background-color: #333333;
    color: #fff;
}

.btn-black:hover{
    background-color: #1c1c1c;
}

.bg-white {
    background-color: #fff !important;
}

.card-img-top {
    width: 100%; /* Makes the image span the full width of the card */
    height: auto; /* Maintains aspect ratio */
    max-height: 160px !important; /* Adjust this value as needed */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.text-transform-none{
  text-transform: none !important;
}


/* WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
  height: 8px; /* Height of the scrollbar for horizontal scroll */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.5); /* Color of the scrollbar thumb */
  border-radius: 4px; /* Rounds the edges of the scrollbar */
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 100, 100, 0.7); /* Darker color on hover */
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1); /* Light background for scrollbar track */
  border-radius: 4px; /* Matches thumb border-radius for consistency */
}

/* Firefox */
* {
  scrollbar-width: thin; /* Sets the scrollbar width to thin */
  scrollbar-color: rgba(100, 100, 100, 0.5) rgba(0, 0, 0, 0.1); /* Thumb color and track color */
}


.image-column img {
  height: 100%; /* Make image fill its column height */
  object-fit: cover; /* Cover the column while keeping proportions */
}

.nav-link {
    margin-right: 20px;
    font-size: 1rem;
}

/* Glassmorphism Breathing Button */
.btn-dark-bg-breathing {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 15px;
    color: #ffffff !important;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    
    /* Glassmorphism base */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px 0 rgba(254, 254, 255, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Breathing animation */
    animation: breathing 4s ease-in-out infinite;
}

.btn-dark-bg-breathing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.btn-dark-bg-breathing:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px 0 rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-dark-bg-breathing:hover::before {
    opacity: 1;
    animation: shimmer 0.8s ease-out;
}

.btn-dark-bg-breathing:active {
    transform: translateY(0);
    box-shadow: 
        0 5px 15px 0 rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 32px 0 rgba(255, 255, 255, 0.37),
            0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 12px 40px 0 rgba(255, 255, 255, 0.5),
            0 0 20px 5px rgba(255, 255, 255, 0.15);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-80%) rotate(45deg);
    }
    100% {
        transform: translateX(80%) rotate(45deg);
    }
}

/* Enhanced glow effect on breathing peak */
.btn-dark-bg-breathing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    opacity: 0;
    animation: breathingGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes breathingGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .btn-dark-bg-breathing {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Footer Responsive Styles */
.footer-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007bff !important;
    text-decoration: underline;
}

/* Custom width classes for responsive images */
.w-px-150 {
    width: 150px;
}

.w-px-200 {
    width: 200px;
}

@media (min-width: 768px) {
    .w-md-px-200 {
        width: 200px !important;
    }
}

@media (min-width: 992px) {
    .w-lg-75 {
        width: 75% !important;
    }
}

/* Footer mobile optimizations */
@media (max-width: 767.98px) {
    .content-footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .content-footer h5 {
        margin-bottom: 1rem;
    }
    
    .content-footer .btn {
        margin-top: 1rem;
    }
}

/* Footer tablet optimizations */
@media (min-width: 768px) and (max-width: 991.98px) {
    .content-footer .row {
        align-items: center;
    }
}

/* Footer link spacing */
.content-footer ul li {
    margin-bottom: 0.5rem;
}

.content-footer ul li:last-child {
    margin-bottom: 0;
}

/* Icon spacing */
.content-footer .bi {
    margin-right: 0.5rem;
}

.nav-link {
    margin-right: 20px;
    font-size: 1rem;
}