﻿
: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: "Raleway", sans-serif;
    --nav-font: "Raleway", sans-serif;
}

:root {
    --background-color: #ffffff; 
    --default-color: #f8f8f8; 
    --heading-color: #ffffff; 
    --accent-color: #e59d02; 
    --surface-color: #191919; /* 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; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #f8f8f8; /* The default color of the main navmenu links */
    --nav-hover-color: #e59d02; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #1b1a1a; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #1b1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #f8f8f8; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #e59d02; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #1b1a1a;
    --surface-color: #282828;
}

.dark-background {
    --background-color: #000000;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1b1b1b;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}
html, body {
    max-width: 100% !important;
    
}


a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
    a, a:hover, a:focus, .navmenu a, .navmenu a:hover {
        text-decoration: none !important;
    }


    a:hover {
/*        color: color-mix(in srgb, var(--accent-color), transparent 25%);*/
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*.header {
    position: fixed;
    color: var(--default-color);
    background: rgba(0, 0, 0, 0.4);*/ /* dark blur, adjust for light */
    /*backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 1000;
    height:90px;
}

    .header .logo {
        line-height: 3;
    }
.scrolled .header {
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    #logoimg{
        max-height:90px
    }

        .header .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 26px;
        margin: 0;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    /* optional border */
/*}*/

/*--------------------------------------------------------------
# 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 {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 600;
            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(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            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;
                min-height:300px;
            }

            .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 {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            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: var(--nav-color);
        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;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            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;
            }
}*/
.hero-section {
    margin-top: 90px;
    background: url('/Images//woorank_cleanup.png') no-repeat center center;
    background-size: cover;
    height: 620px;
    width: 100%;
    display: flex;
    align-items:center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-content {
    /*background: rgba(0, 0, 0, 0.5);*/ /* Optional overlay */
    padding: 20px;
/*    border-radius: 10px;*/
}
.exploremore{
    background-color:#1b7dcd;
    padding:15px 20px 15px 20px;
    left:0;
    margin-top:20px;
    border:none;
    cursor:pointer;
    transition:background-color 0.3s ease;
    color:#ffffff;
}
.exploremore:hover{
    background-color:#000000;
}
.footer-area {
    background-color: #0f0d1d;
    color: white;
    padding: 40px 20px;
    height: 100%;
}


.footer-containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-sections {
    flex: 1 1 200px;
    margin: 10px;
}

    .footer-sections h3 {
        margin-bottom: 15px;
/*        font-size: 18px;*/
    }

    .footer-sections ul {
        list-style: none;
        padding: 0px;
    }

        .footer-sections ul li {
            margin-bottom: 10px;
            margin-top:10px;
        }

            .footer-sections ul li a {
                color: white;
                text-decoration: none;
            }

                .footer-sections ul li a:hover {
                    text-decoration: none;
                    color:#79b5c8;
                }

@media (max-width: 768px) {
    .footer-containers {
        flex-direction: column;
        text-align: center;
    }

    .footer-sections {
        margin-bottom: 30px;
    }
}
.footer-sections img{
    animation:floatUpDown 3s ease-in-out infinite;
    border-radius:5px;
}

@keyframes floatUpDown{
    0% {transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}
.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: white;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: background-color 0.3s;
    margin-top:50px;
}

    .social-icons a:hover {
        background-color: #00aced;
        color: white;
    }
@media (max-width: 480px) {
    .footer-sections {
        flex: 1 1 100%;
    }
    .footer-area{
        
    }

        .footer-sections ul li {
            font-size: 14px;
        }

        .footer-sections h3 {
            font-size: 16px;
        }
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
/*    align-items:center;*/
    background-color: #f3f7fb;
    padding:50px;
    gap:10px;
}
.about-image-wrapper{
    position:relative;
}
.aboutimage_circle{
    position:absolute;
    left:320px;
    top:50px;
    z-index:1;
    max-width:100%;
    height:auto;
}
.aboutimage{
    z-index:2;
    position:relative;
    max-width:100%;
    height:auto;
}
@media (max-width: 768px) {
    .aboutimage_circle {
        display: none;
    }
}
.about-text-wrapper {
    flex: 1 1 400px;
    max-width:600px;
    color:#000;
}
.about-service {
    display: flex;
    align-items: center;
    gap: 10px; 
}

    .about-service img {
        width: 50px; 
        height: auto;
    }


.required {
    color: red;
}

.contact-container {
    background: #e6f0ff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 40px;
}

.text-section {
    background-color: #f0f4f8;
    padding: 30px;
    border-radius: 8px;
}

@media (max-width: 767.98px) {
    .text-section {
        margin-top: 30px;
    }
}
.testimonial-box {
    background-color:transparent;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width:400px !important;
}

.star-rating i {
    color: #007bff; /* Blue stars */
    font-size: 1.2rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
}
.card-hover-effect {
    position: relative; /* Ensure relative positioning for ::before */
    overflow: hidden; /* Clip the gradient inside the card */
    z-index: 0;
}

    .card-hover-effect::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        height: 100%;
        width: 100%;
        background: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
        transition: left 0.4s ease-in-out;
        z-index: 0;
    }

    .card-hover-effect:hover::before {
        left: 0;
    }

    .card-hover-effect .card-body {
        position: relative;
        z-index: 1;
    }

.imageme {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1; /* Keep image above the blue gradient */
}

.card-hover-effect:hover .imageme {
    background-color: #ffffff;
}
.card {
    background-image: url("../Images/service-item-shape.webp");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 200px auto;
    
}
.process-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 4px solid #eaeaea;
    transition: transform 0.3s ease;
}

.process-image:hover {
        transform: scale(1.1);
    }

.arrow-icon {
    width: 40px;
    height: auto;
}
.side-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    width: 100px;
    height: auto;
    opacity: 0.2; 
}

.left-image {
    left: 0;
}

.right-image {
    right: 0;
}
@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.arrow-icon {
    animation: upDown 1.5s ease-in-out infinite;
}
.image-slider {
    display: flex;
    gap: 20px;
    animation: slideImages 20s linear infinite;
    width: max-content;
}

.slide {
    flex: 0 0 auto;
    width: 400px; 
}

@keyframes slideImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 992px) {
    .slide {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .slide {
        width: 100%;
    }
}
/* Container scroll behavior */
.scroll-container {
    overflow-x: auto; /* Allow horizontal scroll */
    overflow-y: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

    .scroll-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

/* Scroll animation wrapper */
.scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll-cards 30s linear infinite;
}

.case-card {
    min-width: 250px;
    width: 80vw;
    max-width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    filter: brightness(50%);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 1rem;
}

    /* Hover effect */
    .case-card:hover {
        transform: scale(1.05);
    }

    /* Overlay style */
    .case-card .overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: #00ffff;
        font-weight: bold;
        text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .case-card {
        height: 220px;
    }

        .case-card .overlay h5 {
            font-size: 1rem;
        }

        .case-card .overlay p {
            font-size: 0.875rem;
        }

        .case-card .overlay {
            text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
        }
}

/* Optional: pause on hover */
.scroll-wrapper:hover {
    animation-play-state: paused;
}

/* Auto-scroll keyframes */
@keyframes scroll-cards {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}



.company-scroll-section:hover .company-scroll-wrapper {
    animation-play-state: paused;
}


.about-section {
    margin-top: 100px; /* adjust based on header height */
}
.about-image h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-image p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.about-image {
    position: relative;
    margin-top:90px;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1;

}

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("/Images/images (1).jpg");
        background-size: cover;
        background-position: center;
        filter: blur(2px);
        z-index: -1;
    }
.aboutimage_circle2{
    left:500px;

}
.aboutimage_circle2 {
    position: absolute; /* or relative, depending on your layout */
    animation: moveUpDown 3s ease-in-out infinite;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(-20px); /* move up by 20px */
    }
}
.team-scroll-section {
    background-color: #f3f7fb;
    padding: 50px 0;
    overflow-x: hidden;
    position: relative;
}

.team-scroll-wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollTeam 30s linear infinite;
}

@keyframes scrollTeam {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.team-card {
    flex: 0 0 auto;
    width: 250px;
    height: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

    .team-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}
.team-scroll-wrapper:hover {
    animation-play-state: paused;
}
.company-scroll-section {
    width: 100%;
    background-color: #007bff; /* Blue background */
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.company-scroll-wrapper {
    display: flex;
/*    width: max-content;*/
    animation: scrollCompany 10s linear infinite;
}

@keyframes scrollCompany {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.company-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw; /* Full screen width */
    height: 30vh; /* Full screen height */
    padding: 0 5%;
    box-sizing: border-box;
}

.company-content {
    flex: 1;
    text-align: center;
    color: white;
}



.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}
.company-logo {
    width: 120px;
    height: auto;
    animation: zoomInOut 3s ease-in-out infinite;
    transition: transform 0.3s ease-in-out;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}



    

.services-image {
    background-image: url('/Images/images (1).jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    padding: 60px 0;
    background-repeat: no-repeat;
    margin-top: 90px;
    overflow: hidden;
}

/* Animate right side image left to right */
.moving-image {
    animation: moveLeftRight 3s ease-in-out infinite alternate;
    max-height: 400px;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-30px);
    }
}
.service-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.7); /* Blue shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapperr img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: transform 0.5s ease-in-out;
}

    /* Animation on hover */
    .image-wrapperr img:hover {
        transform: scale(1.05) rotate(1deg);
    }


    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 102, 255, 0.9); /* Slightly deeper on hover */
    }

.contact-container-details{
    background-color:#007bff;
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 31.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
}

    .map-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }















/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: black;*/
/*    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
    /*background-color:white;
    padding: 15px 0;
    transition: all 0.5s ease-in-out;
    z-index: 1000;
    height: 90px;
}

    .header .logo {
        line-height: 3;
        display: flex;
        align-items: center;
    }

        .header .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

#logoimg {
    max-height: 90px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .btn-getstarted {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

    .header .btn-getstarted:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 15%);
    }

.scrolled .header {
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .scrolled .header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: -1;
        pointer-events: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
#navmenu a {
    color: black;
}
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
        display: flex;
        align-items: center;
    }

        .navmenu ul {
            display: flex;
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 16px;
            font-weight: 600;
            font-family: var(--nav-font);
            display: flex;
            align-items: center;
            transition: 0.3s;
        }

            .navmenu a:hover,
            .navmenu .active {
                color: var(--nav-hover-color);
            }

        .navmenu .dropdown ul {
            position: absolute;
            top: 130%;
            left: 0;
            background: var(--nav-dropdown-background-color);
            padding: 10px 0;
            border-radius: 4px;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            visibility: visible;
            top: 100%;
        }

        .navmenu .dropdown ul li {
            min-width: 200px;
        }

        .navmenu .dropdown ul a {
            padding: 10px 20px;
            color: var(--nav-dropdown-color);
            display: block;
        }

            .navmenu .dropdown ul a:hover {
                color: var(--nav-dropdown-hover-color);
            }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -100%;
            visibility: hidden;
            opacity: 0;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            visibility: visible;
        }
}
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        cursor: pointer;
        z-index: 10001;
        position: relative;
    }

    .navmenu {
        position: fixed;
        inset: 0;
        background: rgba(33, 37, 41, 0.95);
        padding: 60px 20px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        transform: translateX(0);
    }

    .navmenu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a {
        color: var(--nav-dropdown-color);
        padding: 15px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .navmenu a i {
            font-size: 12px;
            margin-left: 5px;
            transition: 0.3s;
        }

    .navmenu .dropdown ul 

{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    flex-direction: column;
    padding-left: 0 0;
    background: rgba(255, 255, 255, 0.05);
}*/

/*    .navmenu .dropdown > .dropdown-active {
        display: flex;
        flex-direction: column;
        max-height:500px;
    }*/

    /*.mobile-nav-active .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        color: #fff;
        font-size: 32px;
    }
    .navmenu .dropdown ul.dropdown-active {
        max-height: 1000px;
        padding: 10px 0;
    }
}*/
.erp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
}


.erp-card {
    min-height: 300px; /* or use height: 350px; for fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 20px;
    position:relative;
}
.erp-card {
    height: 300px;
    position: relative;
    right:0;

}

.bottom-left-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    font-weight: 600;
    text-shadow: 0 0 20px #00f, 0 0 40px #00c6ff
}


.nbfc-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.5);
}

.nbfc-services .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.nbfc-services .card-text {
    font-size: 0.95rem;
}
.nbfc-card{
    height:300px;
}

.hover-scale {
    transition: transform 0.3s ease;
}

    .hover-scale:hover {
        transform: scale(1.05);
    }

.sms-hero h1, .sms-hero p {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}


.animated-gradient {
    background: linear-gradient(-45deg, #1c92d2, #f2fcfe, #4facfe, #00f2fe);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sms-card {
    background-color: #007bff;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .sms-card:hover {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
    }

.email-card {
    background-color: #28a745;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .email-card:hover {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
    }

.features-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.cta-gradient {
    background: linear-gradient(to right, #007bff, #00c6ff);
}

.glass-bg {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    transition: transform 0.3s ease;
}

    .glass-bg:hover {
        transform: translateY(-10px);
    }

.hero-gradient {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.service-icon {
    font-size: 40px;
    color: #00ffd5;
    margin-bottom: 15px;
}

.section-dark {
/*    background:#e1dbaf;*/
    color: black;
    padding: 60px 0;
}

.section-light {
    background: #f3f4f6;
    padding: 60px 0;
}

.cta-glow {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 138, 0, 0.3);
}











/* Header Base */
.header {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    z-index: 999;
    
}

/* Logo */
.logo h1.sitename {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
    margin-left: 10px;
}

/* Navmenu Styles */

/* Base Styles */
.navmenu ul {
    display: flex;
    gap: 50px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight:bold;
}

.navmenu a.nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    transition: color 0.3s ease;
}

    .navmenu a.nav-link:hover {
        color: #00bcd4;
    }
.nav-link.active {
    color: #00bcd4 !important;
}


.mobile-nav-toggle {
    font-size: 28px;
    color: #000;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    
}
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button */
/*.whatsapp-float {
    margin-left: 20px;
    display: flex;
    align-items: center;
}*/

/* Mobile Navigation Styles */
/*@media (max-width: 1199px) {
    .navmenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 15px 20px;
        z-index: 1000;
        display: none;
        flex-direction: column;
        border-bottom: 1px solid #ccc;
        transition: all 0.3s ease;
    }

    body.mobile-nav-active .navmenu {
        display: flex;
    }

    .navmenu ul {
        flex-direction: column;
        gap: 15px;
    }

    .navmenu a.nav-link {
        font-size: 18px;
        color: #000;
        padding: 10px 0;
    }
}*/
/* Mobile Navigation Styles */
@media (max-width: 1199px) {
    .navmenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 15px 20px;
        z-index: 1000;
        display: none;
        flex-direction: column;
        border-bottom: 1px solid #ccc;
        transition: all 0.3s ease;
    }

    body.mobile-nav-active .navmenu {
        display: flex;
    }

    .navmenu ul {
        flex-direction: column;
        gap: 15px;
    }

    .navmenu a.nav-link {
        font-size: 18px;
        color: #000;
        padding: 10px 0;
    }
    .header.scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}
@media(max-width:480px) {
    #getStartedBtn {
        display: none;
    }
    .services-wrapper{
        display:none !important;
    }
}


.outsourcing-list {
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4); /* Bootstrap blue with transparency */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .outsourcing-list:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6);
    }
.aboutimage{
    border-radius:20px;
}
.aboutimage_circle {
    position: absolute; /* or relative, depending on your layout */
    animation: moveUpDown 2s ease-in-out infinite;
}




.job-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

.job-icon {
    font-size: 1.8rem;
    background-color: #e7f0ff;
    padding: 10px;
    border-radius: 50%;
    color: #0d6efd;
}

.job-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.badge-custom {
    background: linear-gradient(to right, #0d6efd, #3b8aff);
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.9rem;
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70% 70%;
}

.card-img-top {
/*    object-fit: cover;*/
    height: 220px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    animation: floatUpDown 3s ease-in-out infinite;
}

.scroll-section2 {
    padding: 50px 20px;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.scroll-title2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.scroll-wrapper2 {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-card2 {
    min-width: 260px;
    height: 160px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.9);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .scroll-card2 {
        min-width: 200px;
        height: 140px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-card2 {
        min-width: 160px;
        height: 120px;
        font-size: 0.9rem;
    }
}

.zoom-carousel2 {
    width: 100%;
    height: 400px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel-card2 {
    position: absolute;
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    animation: slideZoom 5s ease-in-out forwards;
    width: 350px;
    height:350px/* or adjust as per your layout */
}

@keyframes slideZoom {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }

    20% {
        opacity: 1;
        transform: translateX(0%) scale(1.1);
    }

    80% {
        opacity: 1;
        transform: translateX(0%) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.8);
    }
}

/* ========== Carousel Container ========== */
.zoom-carousel2 {
    width: 100%;
    height: 400px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* ========== Carousel Card Animation ========== */
.carousel-card2 {
    position: absolute;
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    animation: slideZoom 5s ease-in-out forwards;
    width: 350px;
    height: 350px;
}

/* Slide and Zoom Keyframes */
@keyframes slideZoom {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }

    20% {
        opacity: 1;
        transform: translateX(0%) scale(1.1);
    }

    80% {
        opacity: 1;
        transform: translateX(0%) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.8);
    }
}

/* ========== Bootstrap Carousel Controls (if used) ========== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
}

/* ========== Card Hover Gradient Effect ========== */
.card-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

    .card-hover-effect::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        height: 100%;
        width: 100%;
        background: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
        transition: left 0.4s ease-in-out;
        z-index: 0;
    }

    .card-hover-effect:hover::before {
        left: 0;
    }

    .card-hover-effect .card-body {
        position: relative;
        z-index: 1;
    }

/* ========== Image Container Style ========== */
.imageme {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.card-hover-effect:hover .imageme {
    background-color: #ffffff;
}

/* ========== Card Background Shape ========== */
.card {
    background-image: url("../Images/service-item-shape.webp");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 200px auto;
}
.services-wrapper {
    margin: 0;
    height: 700px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
    margin-bottom:20px;
/*background-color:black;*/
    
}


.gallery {
/*    background-color:aquamarine;*/
    --size: 100px; /* you can adjust this */
    display: grid;
    grid-template-columns: repeat(6, var(--size));
    grid-auto-rows: var(--size);
    margin-bottom: var(--size);
    place-items:start left;
    gap: 5px;
    width: 100%;
    width: 1400px;
    margin-inline: auto;
}

    .gallery:hover img:not(:hover),
    .gallery:focus-within img:not(:focus) {
        filter: brightness(0.5) contrast(0.5);
    }

    .gallery img {
        object-fit: cover;
        width: calc(var(--size) * 2);
        height: calc(var(--size) * 2);
        clip-path: path("M90,10 C100,0 100,0 110,10 190,90 190,90 190,90 200,100 200,100 190,110 190,110 110,190 110,190 100,200 100,200 90,190 90,190 10,110 10,110 0,100 0,100 10,90Z");
        transition: clip-path 0.25s, filter 0.75s;
        grid-column: auto / span 2;
        border-radius: 5px;
    }

        .gallery img:nth-child(5n -1) {
            grid-column: 2 / span 2;
        }

        .gallery img:hover,
        .gallery img:focus {
            clip-path: path("M0,0 C0,0 200,0 200,0 200,0 200,100 200,100 200,100 200,200 200,200 200,200 100,200 100,200 100,200 100,200 0,200 0,200 0,100 0,100 0,100 0,100 0,100Z");
            z-index: 1;
            transition: clip-path 0.25s, filter 0.25s;
        }

        .gallery img:focus {
            outline: 1px dashed black;
            outline-offset: -5px;
        }
        .privacy-heading{
            color:lightblue;
        }



@media (min-width: 768px) {
    .case-card {
        min-width: 300px;
        height: 240px;
    }
}

@media (min-width: 992px) {
    .case-card {
        min-width: 320px;
        height: 260px;
    }
}
@media(max-width:480px) {
    

    .services-wrapper {
        display: none !important;
    }
    .logo h1.sitename {
        font-size: 1.5rem;
        font-weight: bold;
        color: #003366;
        margin-left: 5px;
    }
}

/*index prjectsection*/

.projects-section {
    padding: 60px 20px;
    background-color: #f7faff;
    text-align: center;
    color: #003366;
    font-family: 'Segoe UI', sans-serif;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #002855;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.project-box {
    background-color: #ffffff;
    border: 1px solid #d9e6f2;
    border-radius: 10px;
    padding: 30px 20px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .project-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

.project-count {
    display: inline-block;
    background-color: #003366;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 15px;
}

.project-box p {
    font-size: 1rem;
    color: #333;
}



/* index competitor section */
.analysis-section {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5faff;
}

.title h2 {
    font-size: 2.5rem;
    color: #003366;
}

.subtitle p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #444;
}

.circle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}

.circle-box {
    width: 140px;
    text-align: center;
}

/* ✅ SVG and Circle Styling */
.progress-ring {
    width: 220px;
    height: 220px;
    transform: rotate(0deg); /* so progress starts from top */
}

/* Background circle */
circle.bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 10;
}

/* Foreground animated circle */
circle.progress {
    fill: none;
    stroke: url(#gradStroke); /* gradient via SVG <defs> */
    stroke-width: 10;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1.5s ease;
    transform: rotate(0deg);
    transform-origin: 60px 60px;
}

/* Centered text inside circle */
.circle-text {
    fill: #003366;
    font-size: 20px;
    text-anchor: middle;
    dominant-baseline: middle;
}

/* ✅ Optional Spin Animation */
@keyframes spinOnScroll {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

[data-aos="spin"] {
    animation: spinOnScroll 1s ease-out forwards;
}
@media(max-width:480px){
    .progress-ring{
        margin-left:-40px;
    }
}


