body {
    background-image: url('../images/body-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.text-border-shadow {
    text-shadow: #000 0px 0px 2px, #0000008f 0px 5px 10px, #000 0px 0px 2px, #000 0px 0px 2px, #000 0px 0px 2px, #000 0px 0px 2px;
}

.text-white-shadow {
    text-shadow: #fff 0px 0px 2px, #ffffff8f 0px 0px 2px, #fff 0px 0px 2px, #fff 0px 0px 2px, #fff 0px 0px 2px, #fff 0px 0px 2px;
}

.custom-text-shadow {
    text-shadow: 0px 4px 4px #00000040;
}


/* Custom Background & Textures */

.nav-bg {
    /* background: linear-gradient(90deg, #111b31 0%, #2b3a55 50%, #1e293b 100%); */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}


/* Abstract Line Pattern (SVG approach) */

.nav-lines {
    position: absolute;
    left: -10%;
    top: 0;
    height: 100%;
    width: 40%;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='100' viewBox='0 0 400 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 100 90 200 10 T 400 90' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    opacity: 0.6;
    pointer-events: none;
}


/* Dot Pattern on right */

.nav-dots {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 150px;
    background-image: radial-gradient(rgba(59, 130, 246, 0.4) 1px, transparent 1px);
    background-size: 8px 8px;
    pointer-events: none;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00194C;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.scrolled {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    background: rgb(15, 23, 42) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scrolled .nav-link:hover {
    color: #00D1FF;
}

.scrolled .nav-link:hover:after {
    background: #00D1FF;
}

@media (max-width:1023px){
    .scrolled{
        backdrop-filter: none;
    }
}


/* Mobile Menu Toggle Animation */

.mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* The Organic Blue Blob Shape */

.hero-blob {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: drop-shadow(0 20px 50px rgba(59, 130, 246, 0.3));
}


/* Floating Animation for subtle movement */

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}


/* Grid Dots Texture */

.dots-pattern {
    background-image: radial-gradient(#4f46e5 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}


/* Organic Blob Shape */

.blob-container {
    clip-path: url(#blob-clip);
    background: linear-gradient(135deg, #007cf0 0%, #00dfd8 100%);
}


/* Custom Slick Dots Positioning */

.slick-dots {
    bottom: auto !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
}

.slick-dots li button:before {
    color: white !important;
    font-size: 12px !important;
}

.slick-dots li.slick-active button:before {
    color: #3b82f6 !important;
}

.hero-slider ul.slick-dots {
    position: absolute;
    border: 1px solid #FFFFFF1A;
    background: #FFFFFF0D;
    padding: 34px 14px;
    border-radius: 200px;
}

.hero-slider ul.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #D9D9D9;
}

.hero-slider ul.slick-dots li {
    line-height: 0;
    margin-bottom: 20px;
}

.hero-slider ul.slick-dots li:last-child {
    margin-bottom: 0;
}

.hero-slider ul.slick-dots li.slick-active button {
    background: linear-gradient(270deg, #00D1FF 4.67%, #0055FF 94.31%);
    box-shadow: 0px 0px 0px 3px #5285ff8f;
}

.image-mask {
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.line-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.3;
    pointer-events: none;
}

.text-navy {
    color: #0a1d37;
}

.feature-card {
    transition: ease 0.2s !important;
    box-shadow: none;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(270deg, #00D1FF 4.67%, #0055FF 94.31%);
}

.feature-card:hover {
    box-shadow: 0px 20px 30px 10px #C8D0D640;
    border-radius: 26px;
    background: #fff;
}

.pill-badge {
    background: #fff;
    color: #0055FF;
    padding: 8px 18px;
    border-radius: 100px;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    border-bottom: 2px solid #B8D4FF;
    box-shadow: 0px 20px 30px 10px #C8D0D640;
}

.hero-slider {
    background-image: url('../images/banner-bg-image.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width:991px){
    .feature-card:hover{
        box-shadow: none;
    }
}

@media (max-width:767px){
    .hero-slider ul.slick-dots {
        top: auto !important;
        bottom: auto !important;
        right: 0px !important;
        left: 0;
        transform: translateY(-50%) rotate(270deg) !important;
        width: 42px !important;
        margin: auto;
    }
}


/* ABOUT GiT section css start */

.profile-card2 {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-left: 4px solid #CADBFE;
    box-shadow: 0px 30px 100px 0px #A4B8C340;
}

.image-stack img {
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.image-stack img:hover {
    filter: grayscale(0%);
    /* transform: scale(1.03); */
    z-index: 20;
}

.experience-badge {
    background: linear-gradient(270deg, #00D1FF 4.67%, #0055FF 94.31%);
    border-radius: 0 15px 0px 15px;
}

.bg-pattern {
    background-image: radial-gradient(#3b82f6 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}


/* FOR UTILITES section css start */

.util-section {
    background-image: url('../images/for-utilites-bg-image.svg');
    background-size: cover;
    background-position: top center;
    position: relative;
    background-repeat: no-repeat;
}

.util-card {
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
}

.util-card:hover {
    transform: translateY(-15px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px #C8D0D640;
}


/* Gradient Overlay on Hover */


/* .util-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.util-card:hover::before {
    opacity: 1;
} */

.btn-glass {
    background: linear-gradient(270deg, #00D1FF 4.67%, #0055FF 94.31%);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-glass:hover {
    background: linear-gradient(270deg, #fff 4.67%, #fff 94.31%);
    color: #0055FF;
    transform: scale(1.05);
}

.icon-circle {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}


/* THE DOCUMENTATION GAP section css start */

.stat-card {
    background: linear-gradient(135deg, #007cf0 0%, #00dfd8 100%);
    transition: transform 0.3s ease;
}

.dial-container {
    background: #0a0b1e;
    overflow: hidden;
    position: relative;
}

.accordion-content {
    display: none;
    transition: all 0.3s ease;
}

.accordion-header {
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header.active {
    color: #0055FF;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


/* The Documentation Gap - Stats section css start */

.gap-stats-section {
    background-image: url('../images/pseudo.svg');
    background-size: cover;
    background-position: center right;
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
}

.progress-container {
    background: #FFFFFF0F;
    border: 1px solid #FFFFFF33;
    border-radius: 100px;
    height: 18px;
    width: 100%;
    padding: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(270deg, #00D1FF 4.67%, #0055FF 94.31%);
    width: 0%;
    /* Initialized for animation */
    transition: width 2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}


/* .glass-stat-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-stat-wrapper:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
} */


/* HOW IT WORKS section css start */

.how-it-section {
    background-color: #ffffff;
    /* background-image: url('how-it-vector-img.svg'); */
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 40%;
}


/* Connecting Path Line */

.process-path {
    position: absolute;
    top: -32%;
    left: 0%;
    width: 85%;
    height: 2px;
    background: transparent;
    z-index: 0;
    display: none;
    transform: rotate(-1deg);
}

@media (min-width: 1024px) {
    .process-path {
        display: block;
    }
    .path-svg {
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        height: 344px;
        fill: none;
        /* stroke: #3b82f6;
        stroke-width: 2; */
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        transition: stroke-dashoffset 3s ease-in-out;
    }
    .path-active .path-svg {
        stroke-dashoffset: 0;
    }
}

.step-number-bg {
    color: #E6EEFF;
    position: absolute;
    bottom: 60px;
    right: 30px;
    z-index: -1;
    font-weight: 700;
    font-size: 178px;
    line-height: 26px;
    letter-spacing: 0%;
}

.step-block {
    background: linear-gradient(270deg, #00D1FF 4.67%, #0055FF 94.31%);
}

.step-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}


/* GO GiT PAID section css start */

.card-shadow {
    box-shadow: 0px 20px 30px 10px #C8D0D640;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-shadow:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px -12px rgba(59, 130, 246, 0.15);
}

.text-gradient {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Grid Impact Sudy section css start */

.study-section {
    background-color: #011a61;
    background-image: url('../images/grid-impact-sudy-bg-image.svg');
    background-size: cover;
    background-position: center;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.profile-card:hover {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.check-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px;
    border-radius: 50%;
}

.pulse-animation {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}
@media (max-width:1279px){
    .study-section{
        background-position: 0px 20px;
        background-repeat: repeat-x;
    }
}

/* Ready to Make Your DSM Capacity Count? section css start */


/* .cta-gradient {
    background: radial-gradient(circle at center, #f0f7ff 0%, #ffffff 100%);
} */

.custom-button {
    background: linear-gradient(270deg, #00D1FF 4.67%, #0055FF 94.31%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 82, 255, 0.4);
}

.custom-button:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 82, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.headline-underline {
    position: relative;
    display: inline-block;
}

.headline-underline::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0px;
    width: 100%;
    height: 12px;
    background: #0F8CFF75;
    z-index: -1;
    transform: skewX(-15deg);
}

.inner-box {
    background: white;
    box-shadow: 0px 3.63px 27.23px 18.15px #252A430D;
}

@media (max-width:767px){
    .headline-underline::after{
        display: none;
    }
}


/* Footer section css start */

.footer-bg {
    background-color: #0E104B;
    border-top: 1px solid #272A68;
    /* Deep Navy from image */
}

.icon-circle {
    border: 1px dashed #3b82f6;
    transition: all 0.5s ease;
}

.icon-circle:hover {
    border-style: solid;
    /* background: rgba(59, 130, 246, 0.1); */
    transform: rotate(15deg);
}

.util-card:hover .icon-circle {
    transform: rotate(-15deg);
}

.input-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.input-pill:focus-within {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.btn-subscribe {
    background: linear-gradient(90deg, #0062ff 0%, #00c3ff 100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-subscribe:hover {
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.5);
}

.footer-inner-wrapper {
    background-color: #0b113b;
    background-image: url('../images/footer-inner-bg.svg');
    background-repeat: no-repeat;
    background-position: center !important;
    background-size: cover;
    position: relative;
}

.footer-link {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #00D1FF;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #00D1FF;
    padding-left: 5px;
}

.social-icon {
    background: #FFFFFF1A;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-5px) rotate(8deg);
}