/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    background: linear-gradient(135deg, #0a0e0a 0%, #001a0a 50%, #000000 100%);
    background-attachment: fixed;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: "Inter", sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #00d4ff;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00a8cc;
}

/* Utilities */
.text-cyan {
    color: #32B7BA !important;
}

.btn-cyan {
    background-color: #00a6a6;
    color: #fff;
    font-weight: 400;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cyan:hover {
    background-color: #00a8cc;
    transform: scale(1.05);
    color: #000000;
}

/* Header */
#header {
    /* background: #000; */
    /* padding: 15px 0; */
    padding: 0px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

#header.scrolled {
    background: rgba(0, 26, 10, 0.95);
    backdrop-filter: blur(10px);
    /* box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2); */
    border-bottom:1px solid #103536;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff !important;
}

.navbar-toggler {
    border-color: #00d4ff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 212, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff !important;
}

/* Mega Menu */
.mega-dropdown {
    width: 800px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    box-shadow: rgba(0, 212, 255, 0.25) 0px 0px 0px;
    /*box-shadow: rgba(0, 212, 255, 0.25) 0px 2px 8px, rgba(0, 212, 255, 0.12) 0px -12px 30px, rgba(0, 212, 255, 0.12) 0px 4px 6px, rgba(0, 212, 255, 0.17) 0px 12px 13px, rgba(0, 212, 255, 0.09) 0px -3px 5px;*/
    /*box-shadow: rgba(0, 212, 255, 0.25) 0px 2px 8px, rgba(0, 212, 255, 0.12) 0px -12px 30px, rgba(0, 212, 255, 0.12) 0px 4px 6px, rgba(0, 212, 255, 0.17) 0px 12px 13px, rgba(0, 212, 255, 0.09) 0px -3px 5px;*/
}

.mega-dropdown .dropdown-item {
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #103536;
    margin-bottom: 10px;
}

.mega-dropdown .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #399699;
}

.mega-dropdown h6 {
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* Video Slider */
.video-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-video {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    /* top: 0; */
    top: 25px;
    left: 0;
    width: 100%;
    height: 100%;
   
    /* background: linear-gradient(to bottom, rgba(0,0,0,5), rgba(0,0,0,0.6)); */
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3)); */
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(2, 39, 36, 0.9), rgba(0,0,0,0.8)); 
   
    /* background: radial-gradient(circle, rgba(0,0,0,0.9), rgba(3,38,16,0.9), rgba(0,0,0,0.9)); */
    /* background: radial-gradient(circle, rgba(13,46,26,0.9) 80%, #0D2E1A 10%, #05190D 40%, #05190D 100%); */
    box-shadow: inset 80px 0 100px rgba(1,15,14,0.9), inset -280px 0 100px rgba(1,15,14,0.9);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.slide-content h1 {
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-weight: 500;
}

.slide-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 212, 255, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00d4ff;
    width: 30px;
    border-radius: 6px;
}

/* Service Cards */
.service-card {
    background: #000000;
    border: 0px solid #00d4ff;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    min-height: 200px;
    background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%)
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1px 2px rgba(0, 212, 255, 0.5);
}

/* Sticky Services */
.sticky-services {
    position: relative;
}

.services-wrapper {
    position: relative;
}

.sticky-service-item {
    margin-bottom: 100px;
}

.service-card-large {
    background: rgba(0, 0, 0);
    border: 0px solid #00d4ff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #e0e0e0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
}

/* Blog Section */
.blog-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.blog-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.blog-card {
    flex: 0 0 326px;
    background: #000000;
    border: 0px solid rgba(0, 212, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 2px 2px rgba(0, 212, 255, 0.3);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00d4ff;
    color: #000000;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.blog-nav-btn:hover {
    background: #00a8cc;
    transform: translateY(-50%) scale(1.1);
}

.blog-nav-btn.prev {
    left: 0;
}

.blog-nav-btn.next {
    right: 0;
}

/* Client Slider */
.client-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.client-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.client-card {
    flex: 0 0 calc(16.666% - 20px);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #103536;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
}

.client-card:hover {
    border-color: #103536;
    transform: scale(1.05);
}

.client-card img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-card:hover img {
    filter: grayscale(0%);
}

.client-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00d4ff;
    color: #000000;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.client-nav-btn:hover {
    background: #00a8cc;
    transform: translateY(-50%) scale(1.1);
}

.client-nav-btn.prev {
    left: 0;
}

.client-nav-btn.next {
    right: 0;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #103536;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.social-links a {
    color: #e0e0e0;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d4ff;
}

/* Page Content */
.page-content {
    padding-top: 120px;
    min-height: 100vh;
}

/* Form Styles */
.form-control,
.form-select {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.5);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: #00d4ff;
    color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Content Box */
.content-box {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #103536;
    border-radius: 12px;
    padding: 40px;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .video-slider {
        margin-top: 60px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .service-img {
        height: 250px;
    }
    
    .blog-card {
        flex: 0 0 324px;
    }
    
    .client-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .mega-dropdown {
        width: 100%;
    }
}



.sticky-card {
  position: sticky;
  top: 0;
  /* background: white; */
  padding: 0rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.sticky-card:nth-child(1) {
  top: 1rem;
  /* rotate: 1deg; */
}

.sticky-card:nth-child(2) {
  top: 2rem;
  /* rotate: 2deg; */
}

.sticky-card:nth-child(3) {
  top: 3rem;
  /* rotate: 3deg; */
}

.sticky-card:nth-child(4) {
  top: 4rem;
  /* rotate: 4deg; */
}

.sticky-card:nth-child(5) {
  top: 5rem;
  /* rotate: 5deg; */
}

.sticky-card:nth-child(6) {
  top: 6rem;
  /* rotate: 6deg; */
}

.sticky-card:nth-child(7) {
  top: 7rem;
  /* rotate: 6deg; */
}

.sticky-card:nth-child(8) {
  top: 8rem;
  /* rotate: 6deg; */
}

.sticky-card:nth-child(9) {
  top: 9rem;
  /* rotate: 6deg; */
}

.sticky-card:nth-child(10) {
  top: 10rem;
  /* rotate: 6deg; */
}

.client-slider {
    display: flex;
    gap: 20px; /* Adjust gap between cards as needed */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.client-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.client-card {
    flex: 0 0 auto; /* Prevent cards from shrinking */
}

.client-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.client-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.client-nav-btn.prev {
    left: 10px;
}

.client-nav-btn.next {
    right: 10px;
}

.client-slider-wrapper {
    position: relative;
}
.text-muted{
    color: #6E7273 !important;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 90%;
        /* max-width: 100%; */
    }
}
.fw-bold {
  font-weight: 400 !important;
  font-family: "DM Sans", Sans-serif;
  font-size: 35px;
  line-height: 55px;
}
.text-light{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    letter-spacing: 0.5px;
    color: #B0B0B0 !important;
}
.dm-sans-font {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.menu-subtitle{
    font-size: 15px !important;
    text-wrap: wrap !important;
    letter-spacing: 1px;
    color: #9FABAB !important;
}
.lg-font{
    font-size: 40px;
    letter-spacing: 1.5px;
}
.md-font{
    font-size: 25px;
    letter-spacing: 1.5px;
}
.sm-font{
    font-size: 17px;
}
