:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

:root {
    --primary-blue: #2c05f2;
    --secondary-blue: #004aad;
    --light-blue: #2c74b3;
}

:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #001973;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0d42ff;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
}

:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-text-color: #ffffff;
    /* Applied to main navmenu text when they are hovered over or active */
    --nav-hover-color: #0d42ff;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #060606;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0d42ff;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
    --background-color: #faf9fb;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}

html {
    overflow: auto;
    /* Still allows scrolling */
    -ms-overflow-style: none;
    /* IE and Edge Legacy */
    scrollbar-width: none;
    /* Firefox */
}

html::-webkit-scrollbar {
    display: none;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--default-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--nav-hover-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

body {
    line-height: 1.6;
    color: #333;
}

.dot {
    width: 80px;
    aspect-ratio: 1/1;
    background-color: var(--accent-color);
    border-radius: 100%;
}

.small-dot {
    width: 30px;
    aspect-ratio: 1/1;
    background-color: var(--accent-color);
    border-radius: 100%;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    scroll-margin-top: 77px;
    overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--default-color);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--default-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-logo {
    line-height: 1;
    width: 90px;
    height: auto;
}

.header .header-logo img {
    width: 100%;
    height: 100%;
    filter: brightness(1.1) contrast(1.1);
}

/* Home Page Header 
------------------------------*/
.home-page .navmenu a {
    color: var(--nav-hover-text-color);
}

.home-page.scrolled .navmenu a {
    color: var(--nav-color);
}

.home-page.scrolled .navmenu li:hover>a,
.home-page.scrolled .navmenu .active,
.home-page.scrolled .navmenu .active:focus {
    color: var(--nav-hover-text-color);
}

.home-page.scrolled .navmenu .dropdown ul a:hover,
.home-page.scrolled .navmenu .dropdown ul .active:hover,
.home-page.scrolled .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-dropdown-hover-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .navmenu a {
    --nav-color: #060606;
}

/*--------------------------------------------------------------
# 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;
        margin-left: 5px;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 8px 20px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 50px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: darkblue;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 15px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
        margin-left: 0;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        background-color: transparent;
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 105%;
        visibility: visible;
    }

    .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;
        background-color: var(--nav-mobile-background-color);
        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(--nav-dropdown-color);
        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;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        color: black;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        color: black;
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        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: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        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: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}
/*-----------------------------------------------------------
Timeline 
 ------------------------------------------------------------*/
.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
    background: linear-gradient(45deg, transparent, var(--accent-color), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    z-index: 2;
    margin-right: 20px;
    flex-shrink: 0;
    transform: unset;
}

.timeline-content {
    flex: 1;
    margin-left: 60px;
    margin-top: -40px;
    padding-top: 10px;
}

.timeline-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 100%;
}

.timeline-image {
    width: calc(100% - 60px);
    height: 180px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 60px;
    margin-top: 20px;
    flex-shrink: 0;
}

.timeline-image img {
    max-width: 100%;
    max-height: 100%;
}

@media (min-width: 769px) {

    .timeline {
        margin: 60px 0;
    }

    .timeline-line {
        left: 40px;
        transform: translateX(-50%);
    }

    .timeline-item {
        flex-direction: row;
        margin-bottom: 80px;
    }

    .timeline-number {
        margin-right: 40px;
        width: 40px;
        height: 40px;
        transform: translateX(20px);
    }

    .timeline-content {
        margin-left: 0;
        margin-top: 0;
        padding-top: 0;
    }

    .timeline-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .timeline-content p {
        font-size: 16px;
        margin-bottom: 20px;
        max-width: 500px;
    }

    .timeline-image {
        width: 300px;
        height: 200px;
        margin-left: 40px;
        margin-top: 0;
    }

    .timeline-image img {
        max-width: 120px;
        max-height: 120px;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.service-hero {
    height: 50vh;
    position: relative;
}

.service-hero .hero-head,
.hero-desc {
    color: var(--contrast-color);

}

.parallax-hero {
    background: linear-gradient(rgba(26, 69, 103, 0.3)), url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1400') center/cover;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* z-index: 9999; */
    justify-content: center;
    align-items: center;
}

.overlay.active {
    display: flex;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    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;
    bottom: 15px;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* -----------------------------------------------
footer
-------------------------------------------------- */
@font-face {
    font-family: 'Sucrose Bold Two';
    src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/sucrose.woff2') format('woff2');
}

.footer {
    background: linear-gradient(135deg, #0a2647 0%, #144272 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    bottom: 0;

}

.border-blue {
    border-bottom: 3px solid #2c74b3 !important;
    padding-bottom: 0.5rem;
}

.link-hover {
    color: #a5d7e8 !important;
    transition: all 0.3s ease;
}

.link-hover:hover {
    color: #2c74b3 !important;
    transform: translateX(5px);
}

.company-name {
    color: #2c74b3 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.copyright {
    position: relative;
    z-index: 1;
    color: #a5d7e8;
}

.site-credits {
    color: #a5d7e8 !important;
    transition: all 0.3s ease;
}

.site-credits:hover {
    color: #2c74b3 !important;
}

.bi {
    transition: all 0.3s ease;
}

.border-bottom-style {
    border-bottom: 1px dashed #2c74b3;
}

.footer-head {
    /* font-family: 'Sucrose Bold Two'; */
    color: #a5d7e8;
    text-transform: capitalize;
    transform: scale(1.2)translateX(30px);
}

.footer-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 1px;
    background-color: #a5d7e8;
    transition: width 0.3s ease;
}

.footer-head-comp {
    text-align: center;
    transform: scale(1.5)translateX(0px);

}

.footer-head-comp::after {
    width: 50%;
    transform: translateX(48%);
}

@media (max-width:576px) {
    .footer-head {
        transform: scale(1)translateX(0px);
    }

    .footer-head-comp {
        transform: scale(1)translateX(0px);

    }

    .footer-head-comp::after {
        width: 50%;
        transform: translateX(48%);
    }
}

/* Base styles for nav links */
.nav-link {
    position: relative;
    color: #ffffff;
    /* Original text color */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    text-decoration: none;
}

/* Chevron icon styles */
.nav-link i {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-right: 8px;
    font-size: 0.8em;
    color: inherit;
    /* Inherits the link color */
}

/* Hover state - light blue color and show icon */
.nav-link:hover {
    color: #a5d7e8;
    /* Light blue color */
}

.nav-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* 
---------------------------------------------------------------
 */