html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a {
    color: white;
    text-decoration: none;
  }
  a:hover {
    color: white;
  }

/* Parallax Effect for Background */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/Space_Grotesk/static/SpaceGrotesk-Light.ttf') format('truetype');
    font-weight: 300; /* Light weight */
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/Space_Grotesk/static/SpaceGrotesk-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular weight */
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/Space_Grotesk/static/SpaceGrotesk-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium weight */
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/Space_Grotesk/static/SpaceGrotesk-SemiBold.ttf') format('truetype');
    font-weight: 600; /* Semi-bold weight */
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/Space_Grotesk/static/SpaceGrotesk-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold weight */
    font-style: normal;
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; /* Bold */
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; /* Semi-bold */
}

h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500; /* Medium */
}

h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400; /* Regular */
}

h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300; /* Light */
}

h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300; /* Light */
}


/* Ensure Hero Section Doesn't Interfere */
/* Initial styles for the Hero Section */
/* Hero Section */
/* Hero Section */
/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background:transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.unified-background {
    background-image: url('images/bg-2.jpg');
    background-size: cover;
    background-attachment: fixed;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(255, 255, 255);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
}
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease-in-out;
    color: white; /* Ensures visibility */
}

.navbar-nav .nav-link.active {
    font-weight: bold;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background-color: #ffffff; /* Change color if needed */
    transition: width 0.3s ease-in-out;
}

/* Hide the Navbar Logo Initially */
.navbar-logo {
    display: none;
    height: 40px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Hero Logo */
.hero-logo {
    height: 500px;
    width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 1.5s ease-in-out, opacity 1s ease-in-out;
}

/* Move Hero Logo Up */
.hero-logo.fly-up {
    transform: translate(-50%, -200%) scale(0.5);
    opacity: 0;
}

/* Make the entire section centered */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full screen height */
    text-align: center;
}

/* Centering the Logos & Changing Text */
.logo-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px; /* Adjust spacing between images & text */
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out;
    width: 1000px;
}

/* Ensure logos are properly sized */
.static-logo-1{
    width: 800px; /* Adjust size as needed */
    height: 300px;
}
.static-logo-2{
    width: 100px; /* Adjust size as needed */
    height: 150px;
}

/* Changing text container */
.changing-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Adjust as needed */
    width: 250px;
}

.changing-svg {
width: 300px;
    color: white;
    opacity: 0;
    transform: translateY(100px); /* Start at normal position */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
/* Apply white filter to specific SVGs */
.white-filter {
    filter: brightness(0) invert(1);
}


/* Animation for appearing text */
.changing-svg.active {
    opacity: 1;
    transform: translateY(0px); /* Starts at the same spot */
}

/* Animation for disappearing text */
.changing-svg.fade-out {
    opacity: 0;
    transform: translateY(-100px); /* Move up while fading */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}


/* ✅ Responsive Fixes */
@media (max-width: 768px) {
    .hero-logo {
        width: 500px;
        max-width: 500px; /* Smaller on mobile */
    }

    .logo-text-wrapper {
        max-width: 600px;
    }

    .static-logo-1 {
        width: 200px;
        max-width: 200px;
        height: 100px;
    }
    .static-logo-2 {
        width: 200px;
        max-width: 200px;
        height: 100px;
    }

    .changing-text {
        font-size: 30px;
    }
    .changing-text-container{
        width:200px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 70vw;
        max-width: 200px;
    }
    .static-logo-1 {
        width: 200px;
        max-width: 200px;
    }
    .static-logo-2 {
        width: 100px;
        max-width: 100px;
    }
    .changing-text {
        font-size: 25px;
    }
    .logo-text-wrapper {
        max-width: 250px;
    }
    .changing-text-container{
        width:100px;
    }
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #00ffbf; /* Match the color in your image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 255, 191, 0.5);
    animation: bounce 2s infinite;
}

.scroll-down .arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid black;
    border-bottom: 3px solid black;
    transform: rotate(45deg);
    animation: fadeInArrow 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes fadeInArrow {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

.scroll-down:hover {
    background-color: #00e6a0;
    box-shadow: 0 0 15px rgba(0, 255, 191, 0.8);
}

.why-choose-us {

    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100vw;
    background:transparent;
}
.why-choose-us h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.why-choose-us h3{
    font-size: 2rem;
}
.highlight {
    color: #00ffcc;
}
.feature-box {
    display: flex;
    flex-direction: column;
    background: rgba(95, 95, 95, 0.664);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
    min-height: 250px;
    justify-content: center;
    align-items: center;
}
.feature-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}
.feature-icon {
    width: 100px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .feature-box {
        padding: 15px;
    }
}
/* Global Styles */
/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Full-Width and Full-Screen Layout */
.digital-consulting {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-template-rows: auto;
    gap: 10px;
    width: 100vw; /* Full width */
    height: 100vh; /* Full screen */
    padding-bottom: 100px;
    background:transparent;
}

.services-section h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.services-section {
    padding-top: 80px;
    background:transparent;
}

/* Section Styling */
.section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-size 0.3s ease-in-out;
}

/* Dark Overlay for Better Readability */
.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    z-index: 1;
}

/* Ensure Text and Logos Appear Above Overlay */
.section img, .section p {
    position: relative;
    z-index: 2;
}

/* Style Logos */
.section img {
    max-width: 100%; /* Scale down logo */
    max-height: 100%; /* Keep aspect ratio */
    object-fit: contain; /* Ensure the image fully fits inside */
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.section:hover {
    transform: scale(1.05); /* Slight enlargement */
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3); /* Subtle glow */
}

/* Background Image Zoom on Hover */
.section:hover::before {
    background-size: 110%; /* Slight zoom */
}

/* Image Slight Pop on Hover */
.section:hover img {
    transform: scale(1.1);
}

/* CRM Full Left */
.crm {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background:#fff;
}

/* POS Top Right */
.pos {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background:#00f0b5;
    padding-bottom: 100px;
    padding-top: 100px;
}

/* ERP & LMS Side by Side Under POS */
.erp-lms {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal sections */
    gap: 10px;
}

/* ERP Bottom Left of Right Column */
.erp {
    background:#4e148c;
}

/* LMS Bottom Right of Right Column */
.lms {
    background:#000;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .digital-consulting {
        display: flex;
        flex-direction: column;
        height: auto; /* Remove fixed height */
        padding-bottom: 50px;
    }

    .crm, .pos, .erp, .lms {
        width: 100%;
        height: 250px; /* Adjust height as needed */
        grid-column: auto;
        grid-row: auto;
    }

    .erp-lms {
        display: flex;
        flex-direction: column;
        gap: 10px;
        grid-column: auto;
        grid-row: auto;
    }
}

/* Mobile Layout */
@media (max-width: 600px) {
    .services-section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .section {
        height: 250px; /* Smaller height for mobile */
    }

    .section img {
        max-height: 80%;
        max-width: 90%;
    }
}

.digital-consulting p {
    font-size: 20px; /* Increase text size */
    font-weight: 500; /* Optional: Make it slightly bolder */
    line-height: 1.6; /* Improve readability */
}

@media (max-width: 768px) {
    .digital-consulting p {
        font-size: 1.1rem; /* Adjust size for smaller screens */
    }
}
.clients-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #f8f8f8; /* Adjust background as needed */
    position: relative;
}

.clients-section h2 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000;
}

/* Grid layout for logos */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto); /* 2 rows */
    gap: 100px; /* Spacing between logos */
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-grid img {
    width: 250px; /* Adjust size as needed */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
    justify-self: center;
}

.logo-grid img:hover {
    transform: scale(1.1);
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 column on very small screens */
        grid-template-rows: repeat(6, auto);
    }
}

.testimonials {
    background: linear-gradient(120deg, #4e148c 0%, #000000 68%);
    background-size: cover;
    padding: 100px 0 100px;
    color: #ffffff;
    position: relative;
    text-align: center;
    isolation: isolate;
}

.testimonials:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.carousel-inner {
    background: rgba(255, 255, 255, 0.1); /* Light translucent background */
    backdrop-filter: blur(10px); /* Glass blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for depth */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    position: relative; /* Needed for sheen */
    overflow: hidden; /* Prevents shine overflow */
}

/* Add a subtle sheen effect */
.carousel-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: sheen 3s infinite linear;
}

/*@keyframes sheen {
    0% { left: -100%; }
    100% { left: 100%; }
}*/

.testimonials .heading h2 {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
}

/* .testimonials .heading h2 span {
    color: #4e148c;
} */

.testimonials .carousel-inner {
    position: relative;
    z-index: 2;
}

.testimonials .carousel-item {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.testimonials .carousel-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00f0b5;
    padding: 5px;
    margin-bottom: 15px;
    background-color: #fff;
}

.testimonials h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0;
}

.testimonials h4 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.testimonials p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    margin: 20px auto;
    max-width: 800px;
}

/* Navigation Arrows */
.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    border-radius: 50%;
    padding: 10px;
}
.carousel-control-prev {
    left: 150px; /* Adjust this value to move further from the container */
}

.carousel-control-next {
    right: 150px; /* Adjust this value to move further from the container */
}

/* Indicators */
.testimonials .carousel-indicators {
    bottom: -30px;
}

.testimonials .carousel-indicators button {
    background-color: #b8b7b7;
    border-radius: 30px;
    height: 4px;
    width: 40px;
    transition: background-color 0.3s;
}

.testimonials .carousel-indicators .active {
    background-color: #00f0b5;
}

.contact-section {
    color: #fff;
    padding: 60px 0;
    background-image: url('images/bg-3.jpg');
}

.contact-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
}
.contact-info h5{
    font-size: 30px;
}

.contact-info a {
    text-decoration: none;
    color: white !important;
    font-weight: light;
    font-size: 25px;
}

.contact-info a:hover {
    text-decoration: none;
}

.social-icons a {
    color: #00e6c3;
    font-size: 24px;
    margin-right: 15px;
}

.social-icons a:hover {
    color: #00ffcc;
}

/* Form Styling */
.contact-form input, .contact-form textarea {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #00e6c3;
    outline: none;
}
/* Footer Bar Styles */
/* Footer Bar Styles */
.footer-bar {
    background-color: #121212; /* Dark background */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

/* Social Icons */
.socials {
    display: flex;
    margin-top: 20px;
    margin-left: -10px;
    align-items: center;
    margin-bottom: 10px;
}

.social-icon {
    margin: 0 10px;
    display: inline-block;
    color: #00f0b5;
}

.social-img {
    width: 24px; /* Adjust size of the icon */
    height: 24px; /* Adjust size of the icon */
    transition: transform 0.3s ease; /* Add a smooth hover effect */
    filter: brightness(0) saturate(100%) invert(48%) sepia(97%) saturate(2144%) hue-rotate(193deg) brightness(104%) contrast(99%);
}

/* Hover color for the icons */
.social-icon:hover .social-img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(97%) saturate(2144%) hue-rotate(193deg) brightness(104%) contrast(99%);
}


.footer-links p {
    margin: 0;
    display: inline-block; /* Keeps copyright and links in the same line */
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
}

.footer-links a:hover {
    color: white; /* Hover color for links */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        margin-bottom: 15px;
    }

    .footer-links p {
        margin-bottom: 10px;
    }
}
.contact-form button {
    background: white;
    color: #4e148c;
    padding: 12px 24px;
    font-size: 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-form button:hover {
    background: #4e148c;
    color: white;
    transform: scale(1.05);
}


