:root {
    --color-primary: #0154c4;
    --color-secondary: #69b4f8;

    /* Add other colors */
    --color-accent: #ff5722;
    --color-para: #202020;
    --color-dark: black;
    --color-light: white;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,
html {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

/* some common classes */

.techH1 {
    font-size: 4rem;
    color: var(--color-primary);
}

.techH2 {
    font-size: 2.5rem;
    color: var(--color-secondary);
}
.techH3 {
    font-size: 1.5rem;
    color: var(--color-dark);
}

.techpara {
    font-size: 1rem;
    color: var(--color-para);
    text-align: justify;
}

.primaryBtn {
    background-color: var(--color-primary);
    color: var(--color-light);
    border-radius: 100px;
    padding: 0.8rem 1.8rem;
    display: flex;
    align-items: center;
}
.primaryBtn:hover {
    background-color: var(--color-secondary);
}

section {
    padding-left: 15px;
    padding-right: 15px;
}

/* some common classes */

a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.custom-shape-divider-bottom-1752818871 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-bottom: -1px; /* removes thin border line if rendered */
}

.custom-shape-divider-bottom-1752818871 svg {
    position: relative;
    display: block;
    width: 100%; /* changed from calc(106% + 1.3px) */
    height: 101px;
}

.custom-shape-divider-bottom-1752818871 .shape-fill {
    fill: #ffffff;
}

/* swiper js button css here */
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: unset;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    padding: 1rem !important;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    background-color: rgb(194, 193, 193);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    padding: 1rem !important;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    background-color: rgb(194, 193, 193);
}

/* faq bg animation */

.aurora {
    background: radial-gradient(
            ellipse at 30% 30%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 70% 60%,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 70%
        ),
        linear-gradient(135deg, #000000 0%, #000000 100%);
    background-blend-mode: overlay, lighten;
    animation: aurora-drift 25s infinite alternate ease-in-out;
}

.grid-overlay::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 40px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 60px
        );
    animation: grid-shift 20s linear infinite;
}

.vignette::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    animation: aurora-pulse 8s infinite alternate;
}

@keyframes aurora-drift {
    0% {
        background-position: 0% 0%, 0% 0%;
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        background-position: -10% -5%, 5% 10%;
        filter: hue-rotate(15deg) brightness(1.1);
    }
    100% {
        background-position: 5% 10%, -10% -5%;
        filter: hue-rotate(30deg) brightness(1);
    }
}

@keyframes grid-shift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

@keyframes aurora-pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* .header {
    background-color: white;
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
} */

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 32px;
    margin-right: 8px;
}

.header .logo i {
    font-size: 24px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--color-primary);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--color-primary);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
        background-color: rgb(234, 234, 234);
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: black;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--color-primary);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: white;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: white;
        color: var(--color-primary);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--color-primary);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: grey;
        color: white;
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: lightgray;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: black;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: white;
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
#footer {
    background-color: var(--color-dark);
}
#footer a {
    font-size: 0.8rem;
    color: lightgray;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* home page hero section starts */
.circle-wrapper {
    position: relative;
    display: inline-block;
}

.circle {
    position: absolute;
    border: 4px dotted;
    border-radius: 50%;
    z-index: 1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Circle Sizes */
.circle-1 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: move1;
    animation-duration: 3s;
    border-color: #dc3545;
}

.circle-2 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: move2;
    animation-duration: 5s;
    border-color: #ffc107; /* Bootstrap warning */
}

.circle-3 {
    width: 440px;
    height: 440px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: move3;
    animation-duration: 7s;
    border-color: #0dcaf0; /* Bootstrap info */
}

/* Keyframe Animations */
@keyframes move1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-48%, -52%) rotate(5deg);
    }
}

@keyframes move2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-52%, -48%) rotate(-5deg);
    }
}

@keyframes move3 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-49%, -51%) rotate(6deg);
    }
}

/* Type Writter */

/* home page hero section ends */



/* About Us Page */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}