@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Funnel+Display:wght@300..800&family=Orbitron:wght@400..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Hanken Grotesk", system-ui;
}

:root {
    --bg-color: black;
    --second-bg-color: #101010;
    --text-color:white;
    --main-color: #ea580c;
    --underline-color: rgb(245, 245, 91);
    --border-color: #e6e6e6;

    --bg-color2: #080808;
    --second-bg-color: #101010;
    --main-color: #ea580c;
    
    
    --title-color: #0B0C0C;
    --text-color: #475467;
    --white-color: #ffffff;

    --primary: #04aa5c;
    --primary-hover: #00cc70;
    --secondary: #06ce71;
    --secondary-hover: #04aa5c;
    --primary-color2: #00a359;

    --primary-color1: #00a359;

    --font-inter: "Inter", sans-serif;
    --font-hankenGrotesk: "Hanken Grotesk", sans-serif;
    --bot-font-family: "DMS";

    --sec-font-family: "Funnel Display", serif;
    --sec-font-family2: "Atkinson Hyperlegible Next", serif;

    --black: #030303;
    --dark-grey: #969696;
    --turquoise: #00e5d1;
    --white: white;
    --royal-blue: #2577f9;
}



/* Smooth scrolling */
html {
    scroll-behavior: auto !important;
    overflow-x: hidden; /* Hide horizontal scroll */
    overflow-y: scroll; /* Enable vertical scrolling */
    overflow: visible !important;
    height: 100%; 
}

/* Hide the scrollbar in Webkit browsers (Chrome, Safari, etc.) */
html::-webkit-scrollbar {
    display: none;
}


/* Apply background to both html and body */
html, body {
    height: 90%; 
    margin: 0; 
    padding: 0; 
    background-color: var(--bg-color);
    background-size: 100% 200%; 
    scroll-behavior: smooth;
    font-family: "Hanken Grotesk", system-ui;

    background-position: center;
    overflow-x: hidden; 
}

html, body {
    background-size: cover;
    background-repeat: no-repeat;
    color: #000000;
    margin: 0; 
}

/* Preload styling */
/* When preloader is active, make the scrollbar blend with the background */
html.preload-active ::-webkit-scrollbar-thumb {
    background: black !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: Arial, sans-serif;
    z-index: 10001;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}


.preloader-content {
    text-align: center;
    cursor: pointer;

    max-height: 100vh;
    overflow: hidden;
}

.preloader-content h1 {
    font-family: "Orbitron", serif;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(to right, #00b3ff 5%, #32cd32 5%, #ffffff 95%); /* 95% white with a touch of blue and green */
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
}


.loading-bar {
    width: 300px;
    margin-left: 0.3rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    opacity: 0.9;

}

.loading-bar:hover {
    opacity: 0.5;
}


.loading-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #fffaf4, #2ee5c6);
}

/* Countdown */
#countdown {
    font-size: 0.5rem;
    color: white;
    font-weight: 500;
    text-align: center;
    margin-top: 7px;
}

/* Hide Content Initially */
.home {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Fade Animations */
.fade-out {
    opacity: 0;
    pointer-events: none;
}

.fade-in {
    opacity: 1;
}


/* Sections styling */
section {
    margin: 0;
    padding: 0;
}


/* Header Navigation menu */
.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: calc(100% - 3rem); 
    box-sizing: border-box; 
    max-width: 100%; 

    padding: 0.5rem 0.5rem; 
    z-index: 1000; 
    margin: 0rem auto; 
    margin-top: 0.8rem;
    margin-bottom: 1rem;

    height: 2.5rem;

    background-color: transparent;
}

/* General link styling */
.nav_links .link {
    position: relative; /* Needed for positioning the ::after */
    display: inline-block;
    text-decoration: none;
    color: var(--white-color);
    padding: 0rem 0; /* Add padding for spacing */
    letter-spacing: 0.4px;
    font-family: var(--font-inter);
    font-weight: 500;
    transition: color 0.8s ease; /* Smooth color change */
}

.navbar {
    margin-left: 5.5rem;
}

.nav_links .link {
    margin-left: 1rem;
}

/* Active link styling */
.nav_links .link.active {
    color: var(--primary); /* Color for active link */
}

.nav_links .link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* Position the underline at the bottom */
    width: 100%; /* Full width for active link */
    height: 1px; /* Thickness of the underline */
    background-color: var(--primary-color2); /* Underline color */
}

/* Hover effect */
.nav_links .link:hover {
    color: black; /* Change text color on hover */
}

.nav_links .link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* Position the underline at the bottom */
    width: 0; /* Initially set width to 0 */
    height: 1px; /* Thickness of the underline */
    background-color: black; /* Underline color */
    transition: width 0.4s ease; /* Smooth expand effect */
}

.nav_links .link:hover::after {
    width: 100%; /* Expand underline to full width on hover */
}

/* Navbar styling */
.navbar {
    flex: 3; /* Navbar takes up available space in the middle */
    display: flex;
    justify-content: center; /* Center navbar items */
    align-items: center; /* Center navbar items vertically */

}

/* Navbar links styling */
.nav_links {
    display: flex;
    align-items: center;
    justify-content: center; /* Ensure the links are centered in the navbar */
    gap: 2rem; /* Space between links */
    list-style: none;
    padding: 0;
}

.nav_links {
    margin-left: 0rem;
}

/* Navbar link styling */
.nav_links li {
    display: inline-block;
}

.nav_links li a {
    text-decoration: none;
    font-family: "Hanken Grotesk", system-ui;
    font-weight: 500;

    font-size: 1rem;
    transition: all 0.3s ease-in-out;

}

/*  */
/* Ensure the dropdown stays open when hovering over the menu */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

/* Adjust dropdown positioning to prevent hover gaps */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    /* background: rgb(26, 26, 26); */
    background: transparent;
    list-style: none;
    padding: 3px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    top: 100%; /* Ensures dropdown appears directly below */
    left: 0;
    z-index: 1000;

    margin-left: 3rem;
    margin-top: 0rem;
}

/* Add a small padding/margin to avoid losing hover */
.dropdown-menu li {
    padding: 5px 12px;
}

.dropdown-menu li a {
    color: rgb(181, 181, 181);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
}

/* Change background color on hover */
.dropdown-menu li a:hover {
    color: black;
}

/* dropdown Icons */
.dropdown .dropdown-icon {
    font-size: 1.2rem;
    margin-left: 1px;
    transition: transform 0.3s ease;
    display: inline-block;

    position: relative;
    top: 2px;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg); /* Flips the arrow */
}


/* button effect */
.cta {
    flex: 1; /* This pushes the button to the right */
    text-align: right;
}

/* CTA button */
.cta button {
    position: relative;
    padding: 10px 20px;
    background-color: #ffffff; /* Initial background color */
    /* color: rgb(0, 0, 0);  */
    color: var(--white-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    overflow: hidden; /* Hide the effect that happens outside the button */
    transition: 0.5s ease; /* Smooth color transition */
}

.cta button:hover {
    letter-spacing: 0.11em;
    border-radius: 6px;
}

.cta button:before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0B0C0C;
    border-radius: 6px;
    color: var(--white-color);
}

.cta span {
    position: relative;
}

.cta i {
    position: absolute;
    inset: 0;
    display: block;
}

.cta i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background: #27282c;
    transform: translateX(-50%) skew(325def);
    transition: 0.5s;
}

.cta:hover i::before {
    width: 20px;
    left: 10%;
}

.cta i::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 10px;
    height: 4px;
    background: #27282c;
    transform: translateX(-50%) skew(325def);
    transition: 0.5s;
}

.cta:hover i::after {
    width: 20px;
    left: 83%;
}

/* Logo Styling */
.logo {
    flex: 1; /* Makes the logo align to the left */
    display: flex;
    align-items: center; /* Vertically align logo items */
    gap: 0.5rem; /* Optional: space between the image and the text */
    cursor: pointer;
}

/* Image styling */
.logo img {
    width: 50px;
    height: 38px;
}

.logo {
    text-decoration: none;
}

#web_log span {
    font-weight: 400;

    line-height: 1;
    letter-spacing: 0.03rem;
    font-family: "Orbitron", serif;;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(158deg, #00e5d1 3%, #2577f9 99%);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline;

    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
}




/* 
#web_log {
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Poppins";
    font-weight: 800;
    cursor: pointer;
    color: var(--text-color);
    color: #0b7849;
    transition: 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.05);
} */

/* logo effects */
/* .logo span {
    display: inline; 
    margin-left: -5px; 

    background: linear-gradient(270deg, #0b7849 10%, #15ffd8 100%);
    background-clip: text;
    color: transparent;
} */




/* Mobile design */
.icons {
    position: relative;
    display: flex;
    right: 0;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

#check {
    display: none;

}

/* Base styles for the image and icons */
#menu-icon {
    margin-right: 0.2rem;
    margin-top: 0rem;
    font-size: 30px;
    width: 20px;
    height: auto;
    cursor: pointer;
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

#menu-icon:hover {
transform: scale(1.1); /* Slight zoom effect */
}




/* RWD */
@media (max-width: 1200px) {
    /* Header Navigation menu */
    .header {
        width: calc(100% - 2rem); 
        max-width: 100%; 
        padding: 0.5rem 0.5rem; 
    }

    .navbar {
        margin-top: 0.1rem;
    }

    .nav_links {
        gap: 3rem;
    }

    /* General link styling */
    .nav_links .link {
        
        padding: 0rem 0; /* Add padding for spacing */
        margin-left: 0rem;
        letter-spacing: 0.4px;
        font-family: var(--font-inter);
        font-weight: 500;
        transition: color 0.8s ease; /* Smooth color change */
    }
    /* CTA button */
    .cta button {
        position: relative;
        padding: 10px 20px;
        background-color: #ffffff; /* Initial background color */
        /* color: rgb(0, 0, 0);  */
        color: var(--white-color);
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.1em;
        overflow: hidden; /* Hide the effect that happens outside the button */
        transition: 0.5s ease; /* Smooth color transition */
    }
    
}

/* RWD main mobile nav enable */
@media (max-width: 1100px) {
    /* Initially hide the navbar */
    .navbar {
        position: absolute;
        top: 50px;
        width: 100%;
        height: 80vh; 
        max-height: 0;
        overflow: hidden;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0; /* No padding when collapsed */
        z-index: 1000;

        
        flex-direction: column;
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
            
        margin-top: 1rem;
        
        background-color: rgba(110, 107, 107, 0.8);
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(50px);
    
        border-radius: 10px;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    }

    .navbar {
        left: 45%;
        transform: translateX(-50%); /* Centers the navbar */
        width: 95%;

    }
    
    .navbar.active {
        max-height: 27rem; /* Expand when active */
        padding: 1rem 0; /* Add padding back */
    }
    
    /* Stack the navbar links vertically */
    .nav_links {
        display: flex; /* Ensure it's still a flex container */
        flex-direction: column; /* Stack links vertically */
        align-items: center; /* Center align the links */
        padding: 0;
        gap: 1.8rem;

    }

    .nav_links li {
        width: 100%; /* Make the links take full width */
        padding: 0.5rem 0;
        text-align: center;
        
    }

    .nav_links li a {
        display: block;
        font-size: 1rem;
        color: black;
        font-weight: 700;
        text-decoration: none;
        width: 100%;

        filter: none; 
    }
    /* icons */
    .icons {
        display: inline-flex;
        cursor: pointer;
        color: #fff;
        position: absolute;
        right: 2%;
        top: 10px;
    }

    #menu-icon {
        display: block;
    }

    #close-icon {
        display: none;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    #check:checked~.navbar {
        display: flex;
        max-height: 100vh;
    }

    .nav_links .link {
        position: relative; /* Needed for positioning the ::after */
        display: inline-block;
        text-decoration: none;
        color: var(--white-color);
        padding: 0rem 0; /* Add padding for spacing */
        margin-left: 0;
        letter-spacing: 0.4px;
        font-family: var(--font-inter);
        font-weight: 500;
        transition: color 0.8s ease; /* Smooth color change */
        
    }

    .navbar a {
        color: #fff;
        padding: 15px;
        text-align: center;
        width: 100%;
        text-decoration: none;
        font-size: 1.5rem; /* Increase font size for better visibility */
        transform: translateY(-50px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
    }

    .icons #close-icon:hover {
        color: rgb(241, 88, 88);
        transform: scale(1.1);
        transition: color 0.3s ease, transform 0.3s ease;
    }

    /* CTA button */
    .cta button {
        position: relative;
        padding: 10px 20px;
        margin: 0;
        margin-top: 2rem;
        background-color: #ffffff; 
        color: var(--white-color);
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.1em;
        overflow: hidden; /* Hide the effect that happens outside the button */
        transition: 0.5s ease; /* Smooth color transition */
    }

    .heading3 {
        width: 100%; /* Keeps the width but needs centering */
    }

    .contact-btn {
        padding: 10px 20px;
    }
    .contact-subtitle {
        font-size: 1rem;
    } 

    .dropdown-menu li a {
        display: none;
        text-wrap: nowrap;
    }

    .dropdown .dropdown-icon {
        display: none;
    }
    .dropdown-menu:hover {
        display: none;
    }

    .genai-content {
        display: flex;
        align-items: center;
        justify-content: center; 
        flex-direction: column;
    }
    .genai-sec {
        padding-left: 1rem !important;
        justify-content: center;
        align-items: center;
    }

    .g-content {
        width: 100%;
        margin: 1rem !important;
    }

    .text-container span {
        max-width: 100%; /* Use percentage for responsiveness */
        margin-left: 0%;
        margin-top: 6rem;
    }
}

@media (max-width: 700px) {
    /* General link styling */
    .navbar {
        margin-left: 1.5rem;
    }

    .nav_links .link {
        margin-left: 0.6rem;
    }

    .nav_links li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1200px) {
    .navbar {
        margin-top: 0.1rem;
    }

    .nav_links {
        gap: 2rem;
    }
    .nav_links .link {
        
        padding: 0rem 0; /* Add padding for spacing */
        margin-left: 0rem;
    }
}


/* Main Content */
section {
    padding: 0 10%;
    position: relative;
}

.home {
    display: flex;
    align-items: flex-start; /* Align content at the top */
    justify-content: center;
    gap: 0rem;
    padding-top: 4rem; /* Add small top padding if needed */

    height: 100vh;
    background-color: transparent;
    padding-left: 4rem;
    padding-right: 0.5rem;

    position: relative;
    overflow: hidden;
}

/* Background video with 180-degree rotation */
.background-video {
    position: absolute;
    top: -100.5%;
    left: 0;
    width: 100%;
    height: 200%;
    object-fit: cover; 
    opacity: 0.6; 
    transform: rotate(180deg);
    z-index: 1; 
}

/* Content styling */
.home-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100vw;
    color: white;
    position: relative;
    z-index: 1; /* Ensure content stays above the video */
}


/* main title */
.home-content h2 {
    position: relative;
    margin: 0;
    z-index: 1;
    opacity: 1;
    overflow: hidden;

    font-size: 2.7rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-left: 4.3rem;
    line-height: 0.5;
    cursor: pointer;
}

/* SVG styling */
.home-content h2 svg {
    width: 90%; /* Scale SVG to the full width of the h1 */
    height: auto; /* Maintain aspect ratio */
}

.home-content h2 svg path {
    fill: rgb(212, 212, 212) !important; /* Adjust color as needed */
}


/* Main Heading Styling */
.text-container {
    display: inline-block;
    position: relative; /* Ensures text stays in place */
    align-items: center;
    justify-content: center;
}


/* sub heading */
.text-container span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    
    text-align: center;
    max-width: 72%; /* Use percentage for responsiveness */
    word-wrap: break-word; /* Prevents text from overflowing */
    overflow-wrap: break-word; /* More robust line break handling */

    margin: 1rem 0;
    margin-left: 12.5%;
    margin-top: 4.5rem;
}



/* sub button */
.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 1rem;
}

.sb-btn {
    position: relative;
    padding: 6px 20px;
    margin-bottom: 1.2rem;
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    background-image: linear-gradient(158deg, #5272ff5d 3%, #55a7ff 99%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    overflow: hidden;
    margin-right: 3.4rem;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Initially hidden effect */
.sb-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* No visible effect by default */
    transition: background 0.1s ease-out;
    z-index: 0;
}

/* Appear only on hover */
.sb-btn:hover::before {
    background: radial-gradient(circle 50px at var(--x, 50%) var(--y, 50%), rgba(105, 209, 250, 0.961), transparent 95%);
    opacity: 0.35;
}

/* Mirror reflection effect */
.sb-btn::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.4;
    transform: scaleY(-1);
    z-index: -2;
}

.sb-btn:hover {
    color: black;
}


/* margin home */
.home-content {
    margin-bottom: 0rem !important;

}

.home {
    margin-bottom: 0rem !important;
    height: 90vh !important;
}


/******************* second Page *******************/

.lvelup-section {
    background: transparent;

    padding: 0 4%;
    position: relative;
    margin: 0 !important;

    height: 100vh;
}



/* Flexbox Layout */
.lvelup-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;

}

/* Left Content */
.lvelup-content {
    flex: 1;
    color: white;
    max-width: 60%;
    margin-left: 1rem;
    position: relative; /* Ensures child elements are positioned relative to this */
}

.lvelup-content::before {
    content: "";
    position: absolute;
    width: 180px; /* Adjust for a smaller spotlight */
    height: 380px;
    background: radial-gradient(circle, rgba(0, 0, 255, 0.6), rgba(0, 255, 200, 0.6), transparent);
    filter: blur(120px); /* Soft glow effect */
    bottom: -10px; /* Moves it slightly below the container */
    left: -35px; /* Positions it towards the bottom-left */
    pointer-events: none; /* Prevents interaction */
    z-index: -1; /* Keeps it behind the content */
}

.lvelup-content h2 {
    font-size: 2.6rem;
    font-weight: 400;
    margin-top: 6rem;

    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: 0.02rem;
    /* font-family: 'Orbitron', sans-serif; */
    font-family: var(--sec-font-family);
}

.lvelup-content p {
    font-size: 0.9rem;
    color: #e4e4e4;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.03rem;
    font-family: var(--font-inter);
}

.lvelup-content span {
    background: radial-gradient(circle at top left, 
        #ffffff 5%,    /* Soft white start */
        #33cc66 0.5%,  /* 0.5% green */
        #2081e2 80%,   
        #2459f2 100%    
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
}

/* 000000 */
.spline-container {
    width: 600px; /* Fixed width */
    height: 750px; /* Fixed height */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative; /* Keep it positioned properly */
    padding-left: 2rem;
}

/* Ensure the 3D canvas does not resize */
#canvas3d {
    width: 100%;  
    height: 100%;
    object-fit: contain; /* Prevents distortion */
}

/* Apply scaling on smaller screens */
@media (max-width: 1024px) {
    .spline-container {
        transform: scale(0.8); /* Slightly reduce model size */
    }
}

@media (max-width: 768px) {
    .spline-container {
        transform: scale(0.6); /* Zoom out more */
    }
}

@media (max-width: 1200px) {
    
    .lvelup-content h2 {
        font-size: 2rem;
        font-weight: 400;
        margin-top: 6rem;
        margin-bottom: 4rem;
        line-height: 1.2;
    }

    .lvelup-content p {
        font-size: 0.9rem;
        line-height: 1.3;

    }

    .spline-container {
        width: 550px; /* Fixed width */
        height: 750px; /* Fixed height */
    }

}


/* RESPONSIVE DESIGN: Move Model Below on Small Screens */
@media screen and (max-width: 1050px) {

    .lvelup-container {
        flex-direction: column;
        text-align: center;
    }

    .lvelup-content {
        max-width: 100%; /* Allow full width */
        margin-left: 0; /* Remove left margin */
        text-align: center; /* Ensure text is centered */
    }

    .spline-container {
        display: none;
    }

    #canvas3d {
        display: none;
    }
}




/* 00000 */

/* Talk to Us Button */
.talk-to-us-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 28px;
    margin-top: 30px;
    position: relative;
    left: 0;
    color: #fff;
    text-align: center;
    letter-spacing: .03125rem;
    line-height: 1;
    cursor: pointer;
    background-color: #000;
    background-image: linear-gradient(158deg, #002fff 3%, #29ffb1 99%);

    border: 1px solid #80b8fa;
    font-family: var(--font-inter);

    transition: all 0.3s ease-in-out;
}

.talk-to-us-btn:hover {
    background-image: linear-gradient(158deg, #002fff 3%, #29ff89 99%);
    transform: scale(0.99);
}


/******************* services Page *******************/
.services {
    background: #f9f8f8;
    color: black;
    position: relative;

    width: 100%; /* Ensure it takes full width */
    box-sizing: border-box;
}


/* --- */
.heading {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 2rem;
    padding-bottom: 1rem;
    padding-right: 4rem;
    text-transform: uppercase;

    color: rgb(198, 198, 198);
    gap: 8px;
}

.heading::before,
.heading::after {
    content: "";
    width: 10px; 
    height: 10px;
    background-color: rgb(210, 210, 210); 
    border-radius: 50%; 
    display: inline-block;
    margin-top: 0.25rem;
    margin: 0 0.5rem;
}


.heading3 {
    text-align: center; /* Centers the text */
    font-size: 1rem;
    font-weight: 400;
    
    width: 70%; /* Keeps the width but needs centering */
    color: rgb(105, 105, 105);
    margin: 1rem auto; /* Centers the block itself */
    margin-top: 2.4rem;

    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When the class 'show' is added, the element becomes visible */
.heading3.show {
    opacity: 1;
    transform: translateY(0);
}

/* grid containers */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 2rem;
}


/* Grid Animation */
/* Service box base styles */
.service-box {
    opacity: 0;
    transform: translateX(-100px); /* Start from left */
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    cursor: pointer;
    height: 460px;
    border-radius: 1rem;
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease; /* Smooth transition for pop-up */
}

/* Adjust margins on smaller screens */
@media (max-width: 1200px) {
    .service-box {
        margin-top: 0.3rem;
    }

    .services-container {
        gap: 1.3rem;
    }
}

/* Apply animation only when 'visible' class is added */
.service-box.visible {
    animation: box-anime 1s forwards;
}

/* Hover effect */
.service-box:hover {
    transform: translateY(-10px); /* Move up slightly when hovered */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add a shadow effect for the pop-up look */
}

/* Keyframe animation */
@keyframes box-anime {
    from {
        opacity: 0;
        transform: translateX(-100px); /* Start from left */
    }
    to {
        opacity: 1;
        transform: translateX(0); /* End at normal position */
    }
}

@keyframes reverse-box-anime {
    from {
        opacity: 1;
        transform: translateX(0); /* Start from current position */
    }
    to {
        opacity: 0;
        transform: translateX(-100px); /* Move back to the left */
    }
}

/* When not in view, trigger reverse animation */
.service-box:not(.visible) {
    animation: reverse-box-anime 1.5s forwards;
}

/* Customize background color */
#service-box1 {
    background-color: #FFEBEB;
}

#service-box2 {
    background-color: #E4F4F1;
}

#service-box3 {
    background-color: #F0EFE9;
}

/* Box contents */
.service-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.service-info h4 {
    font-size: 2rem;
    margin: 2rem 0;
    font-weight: 500;
    font-family: var(--font-inter);
}

.service-info p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    font-family: var(--font-inter);
}

.service-info i {
    font-size: 2rem;
}

/*  */
.box-title {
    position: relative;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    width: 100%;
    margin-top: 2.4rem;
    white-space: nowrap; /* Prevent text from wrapping */
}

.box-title a {

    font-size: 2.5rem;
    font-weight: 700;
    position: absolute;
    
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#242424 30%, #6e6e6e 84%);
    -webkit-background-clip: text;
    background-clip: text;

    left: 50%;
    transform: translateX(-50%); /* Only adjust horizontally */
    text-decoration: none;
    white-space: nowrap; /* Prevent text from breaking into two lines */

    font-style: var(--font-hankenGrotesk);
}


/* ******************************************* */
/* Section 3 GenAI Section */
.genai-sec {
    padding-left: 3rem !important;
    display: grid; 
    grid-template-columns: 65% 35%;
    align-items: flex-start; /* Align items at the top */
    gap: 2rem; /* Space between content and image */
    min-height: 100vh; /* Ensure it covers the full viewport height */
    width: 100%;

    flex-wrap: wrap;
    background: #f9f8f8;
}

.genai-img {
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Vertically center the image */

    width: 440px;
}

#g-image {
    display: block; /* Treat the image as a block element */
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    max-height: 330px; /* Optional: control the image size */

    margin-top: 35%;
    border-radius: 10px;
}


.genai-content {
    display: flex;
    align-items: flex-start; 
    flex-direction: column;
}

/*  */
.genai-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0;
    margin-top: 4rem;
    max-width: 90%;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#242424 30%, #6e6e6e 84%);
    -webkit-background-clip: text;
    background-clip: text;

    font-style: var(--font-hankenGrotesk);

    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 1.3s ease-out;
}

.genai-title.show {
    opacity: 1;
    transform: translateX(0);
}

.g-content {
    padding-top: 2rem;
    font-size: 1rem;
    font-weight: 500;
    width: 95%;
    color: rgba(56, 56, 56, 0.7); /* 70% opacity */
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease-out, transform 2s ease-out;
    transition-delay: 0.3s; /* Added delay for content to appear after the title */
}

.g-content.show {
    opacity: 1;
    transform: translateX(0);
}

.g-content .highlight {
    font-weight: 500;
    color: black;
    opacity: 0.8;
}


.genai-content {
    grid-column: 1 / 2; /* Content in first column */
}

.sec-p-g-content {
    padding-top: 3rem;
    display: block;
}

.genai-img {
    grid-column: 2 / 3; /* Image in second column */
    display: flex;
    justify-content: center;
    align-items: center;
}

.genai-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Make Icons Span Both Columns */
.social-genai-icons {
    grid-column: 1 / 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers items when they wrap */
    gap: 1.5rem;
    padding-top: 2rem;
    padding-left: 2.2rem;
}

.social-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    flex: 1 1 calc(33.33% - 1.4rem); 
    min-width: 300px;
}


.social-item:nth-child(4) {
    margin-left: 3.5%; /* Centers the fourth item */
    align-self: center;
    gap: 0.2rem !important;
    max-width: 400px;
}


.social-item i {
    font-size: 3rem;
    color: #000000;
    min-width: 60px;
}

.social-text {
    flex: 1;
}

.social-text h4 {
    font-size: 1.3rem;
    align-items: center;
    text-align: center;
    font-weight: 700;
    margin: 0;
    color: #1d1d1d;
    text-wrap: nowrap;
}

.social-text p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    margin-top: 0.5rem;
    color: rgba(56, 56, 56, 0.7); 
    align-items: center;
    text-align: center;
}

.social-text .highlight {
    color: black;
    font-weight: 500;
    font-size: 0.85rem;
}


#genai-svg-efficiency {
    margin-top: 2.8rem;
    cursor: pointer;
}

/* svg team icon */
#genai-svg-team {
    width: 4.5rem;
    height: auto;
    margin-right: 1%;
    cursor: pointer;

    stroke: rgb(1, 1, 1);
    stroke-width: 1;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: fill 1s ease-in-out;

    animation: team-icon-anime 2s linear infinite;
}

@keyframes team-icon-anime {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: -100; /* Instead of 0, make it negative for continuous effect */
    }
}

/* Default styles */
#genai-svg-saving {
    width: 4rem;
    height: auto;
    margin-right: 0%;
    cursor: pointer;
}

#social-saving-heading {
    font-size: 1.2rem;
}

#dollar-outline {
    width: 5rem;
    height: auto;
    margin-right: 5%;
    cursor: pointer;
    stroke: rgb(1, 1, 1); /* default stroke color */
    stroke-width: 1;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke 0.3s, fill 0.3s;
}

#dollar-symbol {
    font-size: 232.16px;
    font-family: 'Myriad Pro', sans-serif;
    transition: fill 0.3s;

    stroke: rgb(0, 0, 0); /* Gold color for the outline */
    fill: rgb(0, 0, 0); 
}

/* Hover effect when hovering over the entire SVG or the individual elements */
/* #genai-svg-saving:hover #dollar-outline, */
#genai-svg-saving:hover #dollar-symbol {
    stroke: rgb(139, 250, 155); /* Gold color for the outline */
    fill: rgb(139, 250, 155); /* Gold color for the text */
}

/* task svg anime */
#genai-svg-task {
    width: 5rem;
    height: auto;
    margin-right: 5%;
    cursor: pointer;
}

/* Initial styles for the task-svg path */
#task-svg {
    fill: rgb(2, 2, 2);
    stroke-width: 1; 
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    transition: all 0.3s ease-in-out;
}

#genai-svg-task:hover #task-svg {
    stroke: var(--primary-hover); /* pr color for the outline */
    fill: var(--primary-hover); /* pr color for the text */
}


.workflow-sec::before {
    content: "";
    display: block;
    width: 50%; /* Adjust as needed */
    margin-top: 3rem !important;
    height: 2px;
    margin: 0 auto 2rem auto; /* Centers it */
    background: linear-gradient(to right, transparent, black, transparent);
    opacity: 0.8;
}

/* Workflow Section */
.workflow-sec {
    display: flex; 
    align-items: flex-start; /* Align items at the top */
    flex-direction: column;
    gap: 1rem; 
    margin-top: 0;

    min-height: 100vh;
    background: #f9f8f8;
}

#heading-workflow {
    text-align: start;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(38, 130, 53);
    margin-top: 2rem;
}

#heading-workflow::before,
#heading-workflow::after {
    content: "";
    width: 10px; 
    height: 10px;
    background-color: rgb(210, 210, 210); 
    border-radius: 50%; 
    display: inline-block;
    margin-top: 0.25rem;
    margin: 0 0.5rem;
}


.workflow-title {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 90%;
    padding-top: 1rem;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#242424 30%, #6e6e6e 84%);
    -webkit-background-clip: text;
    background-clip: text;

    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 1.3s ease-out;
}

.workflow-title.show {
    opacity: 1;
    transform: translateX(0);
}



/* workflow content */
.workflow-container {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 2rem;
}

/* Workflow content and line */
.workflow-first {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    padding-bottom: 20px;
    opacity: 0; /* Initially hide the content */
    transform: translateY(-30px); /* Initially position content above */
    transition: opacity 0.6s ease, transform 1s ease-in-out;
}


/* Line between each workflow step */
.workflow-first::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #292929;
    transform: scaleX(0); /* Initially hidden */
    transform-origin: left;
    opacity: 0; /* Hide the line initially */
}

/* Apply animation only when .show class is added */
.workflow-first.show {
    opacity: 1; /* Make the content visible */
    transform: translateY(0); /* Slide in from top */
}

/* Apply animation only when .show class is added */
.workflow-first.show::after {
    animation: fillLine 5s ease-out forwards, fadeLine 1.5s ease-out forwards; /* Add fadeLine animation */
}

/* Keyframes for filling the line */
@keyframes fillLine {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.4;
    }
}

/* Keyframes for reducing opacity of the line after the fill animation */
@keyframes fadeLine {
    0% {
        opacity: 0.4; /* Start with the line visible */
    }
    100% {
        opacity: 0.1; /* Reduce opacity to 0.1 after animation */
    }
}


/* Delay for each workflow item to stagger the animations */
.workflow-first:nth-child(1)::after {
    animation-delay: 0.3s;
}
.workflow-first:nth-child(2)::after {
    animation-delay: 5s;
}
.workflow-first:nth-child(3)::after {
    animation-delay: 10s;
}
.workflow-first:nth-child(4)::after {
    animation-delay: 15s;
}
.workflow-first:nth-child(5)::after {
    animation-delay: 20s;
}
.workflow-first:nth-child(6)::after {
    animation-delay: 24s;
}
.workflow-first:nth-child(7)::after {
    animation-delay: 28s;
}



/* workflow text */
.workflow-text {
    flex: 1; /* Allow text to take available space */
    text-align: left; /* Ensure text aligns to the left */
}

.workflow-text h4 {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.7;
}

.workflow-text p {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
    margin: 0;
    margin-top: 0.5rem;
    color: rgba(56, 56, 56, 0.7); 
}

.workflow-first i {
    font-size: 24px; /* Adjust icon size */
}

/* icons */
.workflow-svg-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(137, 226, 244, 0.3);
    border-radius: 50%;
    padding: 1rem;
}
#task-list-svg {
    height: auto;
    width: 3rem;
    align-items: center;
}

/* solution design svg */
.workflow-design-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(210, 237, 211, 0.5);
    border-radius: 50%;
    padding: 1rem;
}
#task-design-svg {
    height: auto;
    width: 3rem;
    align-items: center;
}

/* r&d design svg */
.workflow-research-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 235, 235, 0.8);
    border-radius: 50%;
    padding: 1rem;
}
#randd-design-svg {
    height: auto;
    width: 3rem;
    align-items: center;
}

/* model design svg */
.workflow-model-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(228, 244, 241, 0.9);
    border-radius: 50%;
    padding: 1rem;
}
#model-training-svg {
    height: auto;
    width: 3rem;
    align-items: center;
}


/* development svg */
.workflow-development-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(181, 227, 231, 0.6);
    border-radius: 50%;
    padding: 1rem;
}
#development-design-svg {
    height: auto;
    width: 3rem;
    align-items: center;
}

.workflow-development-container img {
    width: 50px;
    height: 50px;
}

/* monitoring svg */
.workflow-monitoring-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 231, 181, 0.2);
    border-radius: 50%;
    padding: 1rem;
}
#monitoring-design-svg {
    height: auto;
    width: 3rem;
    align-items: center;
}

/* *********************************************************** */
/* section 4 - Contact Section */
.contact-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(180deg, #f9f8f8 0%, #000000 98%);
    min-height: 90vh;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;

    margin-top: 0;
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    /* max-width: 600px; */
    padding: 2rem 3.6rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%),
                url('images/contact_bg.avif');
    background-size: cover;
    background-position: center;
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Initially hidden elements */
.hidden-top {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease, transform 2.5s ease-in-out;
}

.hidden-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 2.5s ease-in-out;
}

/* Animation when the section is in view */
.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* contact button */
.contact-btn {
    background-image: linear-gradient(158deg, #002fff 3%, #29ffb1 99%);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 10px; 
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-btn:hover {
    background-color: #16a562;
}

.contact-btn:hover i {
    transform: translateX(5px); 
}

.contact-btn i {
    font-size: 1.2rem;
    margin-top: 0.3rem;
    font-family: var(--font-inter);

    transition: transform 0.3s ease;
}

.contact-action {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}
.contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: var(--font-hankenGrotesk);

    opacity: 0.8;
    font-weight: 500;
    color: rgba(242, 242, 242, 0.7); 
}
.contact-container h2 {
    font-size: 2rem;
    font-weight: 700;
    max-width: 100%;
    color: #fff;

    font-family: var(--font-hankenGrotesk);
    line-height: 1.2;
}


/* ******************************************** */
/* Section 6  */
/* FAQ Section */
.faq-section-contact {
    background-color: transparent;
    padding: 80px 20px;
    text-align: center;
    display: flex;
}

/* Centered FAQ Container */
.faq-container-contact {
    max-width: 800px;  /* Increased width */
    margin: 0 auto;
    display: flex;
    text-align: center;
    flex-direction: column;
}

/* Title & Subtitle */
.faq-section-contact h2 {
    font-size: 3.8rem;
    font-weight: 450;
    line-height: 1;
    letter-spacing: 0.03rem;
    font-family: var(--sec-font-family2);

    padding-bottom: 2rem;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff 30%, #a0a0a0 84%);
    -webkit-background-clip: text;
    background-clip: text;
}

.faq-subtitle {
    color: #d7d7d7;

    font-size: 1rem;
    opacity: 0.6;
    max-width: 700px;
    line-height: 1.5;
    font-family: var(--sec-font-family2);

    margin-bottom: 3rem;
    margin-left: 1.6rem;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FAQ Items */
.faq-item {
    background: transparent;
    border: 1px solid #525252;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    margin-bottom: 20px;
    text-align: left;
    overflow: hidden;
}

/* FAQ Items - Initially hidden below */
.faq-item {
    opacity: 0;
    transform: translateY(30px); /* Move items below */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When FAQ item enters the viewport */
.faq-item.visible {
    opacity: 1;
    transform: translateY(0); /* Moves up smoothly */
}


/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 20px 10px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;

    color: #d7d7d7;

    font-size: 1rem;
    opacity: 0.6;
    line-height: 1;
    font-family: var(--sec-font-family2);
}

.faq-question:hover {
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

/* Expand/Collapse Icon */
.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* FAQ Answer (Fixing Expansion) */
.faq-answer {
    padding: 0px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: transparent;

    color: #f1f1f1;

    font-size: 1rem;
    opacity: 0.8;
    max-width: 700px;
    line-height: 1.5;
    font-family: var(--sec-font-family2);
}

/* Expanded Answer */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust height based on content */
    padding: 15px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container-contact {
        max-width: 95%;
    }
    .faq-section-contact h2 {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}



/* ******************************************************** */
/* Section 7 Footer section */
.footer-sec {
    background-image: url('images/home3-footer-bg.png'), linear-gradient(180deg, #0A0A0A 0%, #0A0A0A 100%);
    background-size: cover;
    background-repeat: no-repeat;
    color: #000000;
    padding: 3rem 5rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 350px;
}


.footer-column:first-child {
    flex: 2;
    min-width: 350px; /* Ensure it has a good width */
}

#company-col {
    padding-left: 4.5rem;
}


.footer-column h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;

    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.9px;
    font-family: var(--font-hankenGrotesk);
    color: var(--white-color);
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 90%; /* Adjust length of the line */
    height: 2px; /* Adjust thickness */
    background: linear-gradient(90deg, #bbb6b5, transparent); /* Gradient colors */
    margin-top: 5px; /* Space between h3 and line */
    border-radius: 2px; /* Smooth edges */
}

.footer-column p {
    margin-top: 2rem;
    font-size: 1rem;
    color: rgb(255, 255, 255, 0.6);
    font-family: var(--font-hankenGrotesk);
    font-weight: 500;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    list-style: none;
}


.footer-column ul li a {
    font-size: 0.9rem;
    color: rgb(255, 255, 255, 0.6);
    font-family: var(--font-hankenGrotesk);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

#newsletter-sec {
    max-width: 340px;
}

/* Style for loading icon */
.loading-icon {
    display: block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
    margin-top: 10px;  /* Add some space between the button and the loading icon */
    margin-left: auto;
    margin-right: auto;
}

/* Animation for loading spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hyphen effect */
.footer-column ul li a::before {
    content: "—"; /* Hyphen */
    color: green; /* Green color */
    position: absolute;
    left: -15px; /* Positioning left */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease, left 0.3s ease;
}

/* Hover effect */
.footer-column ul li a:hover {
    transform: translateX(10px); /* Moves text slightly to the right */
    color: var(--primary); /* Keep primary color */
}

/* Show hyphen on hover */
.footer-column ul li a:hover::before {
    opacity: 1;
    left: -20px; /* Moves the hyphen further left */
}

.footer-column input {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
    outline: none;
    border: none;

    font-family: var(--font-inter);
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}



/* subscribe button */
.subscribe-btn {
    display: block;
    width: 100%; /* Adjust width */
    margin: 10px auto; /* Centers the button horizontally */
    padding: 8px;
    background-image: linear-gradient(158deg, #002fff 3%, #29ffb1 99%);
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 10px;

    transition: all 0.3s ease;
}

/* Subscribe button hover effect */
.subscribe-btn:hover {
    background-image: linear-gradient(158deg, #002fff 3%, #29ff89 99%);
    transform: scale(0.99);
}


/* Social icons */
#social-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;

    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.9px;
    line-height: 1.2;
    margin-top: 2rem;
    font-family: var(--font-hankenGrotesk);
    color: var(--white-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;  /* Space between each social icon */
    justify-content: start;  /* Center the icons */
    align-items: center;
    flex-wrap: wrap;  /* Allow icons to wrap on smaller screens */
}

.social-icons a {
    color: var(--white-color);  /* Icon color */
    text-decoration: none;
    text-align: center;  /* Center the text under the icon */
    font-weight: 500;
    display: flex;
    flex-direction: column;  /* Stack the icon and text vertically */
    align-items: center;  /* Center the content horizontally */
}

.social-icons a span {
    margin-top: 0.2rem;  /* Space between icon and text */
    font-size: 0.8rem;  /* Text size */
}

.social-icons svg {
    width: 1rem;
    height: auto;
    stroke-width: 15; /* Border thickness */
    fill: var(--white-color); /* Default icon color */
    transition: fill 0.3s ease, stroke 0.3s ease; /* Smooth transition */
}

.social-icons .facebook svg {
    width: 1.2rem;
    height: auto;
    stroke-width: 15; /* Border thickness */
    fill: var(--white-color); /* Default icon color */
    transition: fill 0.3s ease, stroke 0.3s ease; /* Smooth transition */
}

.facebook svg {
    padding-top: 0.2rem;
}


/* Change SVG color on hover */
.social-icons a:hover svg {
    fill: var(--primary-hover); /* Change icon color on hover */
    stroke: var(--primary); /* Change outline color if applicable */
}

.social-icons a:hover {
    color: var(--primary-hover);  /* Color change on hover */
}

.social-icons a:hover span {
    color: var(--primary-hover);  /* Text color change on hover */
}

/* footer container 2 */
.footer-container2 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 1px;
    flex-wrap: wrap;

    margin-left: 6.7rem;
}

.contact-item {
    flex: 1 1 30%; /* Three columns on larger screens */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    margin-bottom: 20px;
}

.contact-item svg {
    width: 2rem;  
    height: auto;  
    fill: transparent;  
    stroke: var(--primary);  
    stroke-width: 20;  
    stroke-linecap: round;  
    stroke-linejoin: round; 
}



.contact-item h3 {
    color: var(--primary);
    font-family: var(--font-hankenGrotesk);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 7px;
}


/* Common styles for both <p> and <a> tags */
.contact-item p,
#contact-mail a {
    color: rgb(255, 255, 255, 0.3);
    font-family: var(--font-hankenGrotesk);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.54px;
    text-decoration: none;

    transition: 0.5s;

}

.contact-item .contact-address-subt {
    font-size: 0.9rem;
}

/* Hover effect for both <p> and <a> tags */
/* .contact-item p:hover,
#contact-mail a:hover {
    color: var(--primary-hover);  
} */

#contact-address-blk {
    margin-left: 4rem;
}


/* Line before footer */
footer {
    margin-top: 30px; /* Adds space between the content and the line */
    text-align: center; /* Centers the footer text */
    position: relative;
}

/* Add a line before the footer */
footer::before {
    content: "";
    display: block;
    width: 80%; /* Adjust the width of the line */
    height: 2px; /* Line thickness */
    background-color: #bbb6b5; /* Line color (change as needed) */
    margin: 0 auto 20px auto; /* Center the line and add space below */
}

footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

footer span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}


#contact-mail a:hover {
    color: var(--primary-hover) !important;  /* Hover color */
}


/* footer section */
.footer-sec {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 60%), 
                url('images/home3-footer-bg.png');
    background-size: cover;
    background-position: center bottom;
    color: #000000;
    padding: 3rem 5rem;
}


/* Responsive Design */
@media (max-width: 1100px) {
    .contact-info {
        margin-left: 5rem;
    }
}

@media (max-width: 1000px) {
    .contact-info {
        margin-left: 5rem;
    }

    #contact-mail {
        margin-left: 0rem !important;
    }

    #email-con {
        margin-left: 0rem !important;
        padding-left: 0rem !important;
    }
    
    /* footer container 2 */
    .footer-container2 {
        gap: 0px;
        max-width: 1200px;
    }

    .contact-info {
        padding: 0 0 !important;
    }
}

@media (max-width: 1058px) {
    #company-col {
        padding-left: 0;
    }
    
    .contact-info {    
        margin-left: 0rem;
    }

    #contact-address-blk {
        margin-left: 3rem;
    }

    .footer-sec {
        padding: 3rem 3rem;
        padding-left: 2rem;
    }

    .footer-column {
        margin-top: 1.5rem;
    }

    .footer-container2 {
        gap: 0px;
    }
}


@media (max-width: 808px) {
    .footer-container {
        flex-wrap: wrap;
    }
    .footer-column {
        flex: 1 1 45%; 
    }
    #company-col {
        padding-left: 0;
    }
    .contact-item {
        flex: 1 1 100%; /* Stack into 1 column for smaller screens */
    }
    #contact-address-blk {
        margin-left: 0;
    }
    .header {
        margin-top: 0.8rem;
        height: 1.5rem;
    }

    .contact-info {    
        margin-left: 0rem;
    }

}

@media (max-width: 480px) {
    .footer-column {
        flex: 1 1 100%;
    }
    #company-col {
        padding-left: 0;
    }
    .contact-item {
        flex: 1 1 100%; /* Stack into 1 column for smaller screens */
    }
    #contact-address-blk {
        margin-left: 0;
    }

    .navbar {
        left: 25%;
        transform: translateX(-50%); /* Centers the navbar */
        width: 90%;

    }
}



/* Responsive: Stack items vertically on small screens */
@media (max-width: 1100px) {
    .genai-sec {
        grid-template-columns: 1fr; /* Change to a single column layout */
        text-align: center;
    }

    .genai-content,
    .genai-img,
    .social-genai-icons {
        grid-column: 1 / 2; /* Everything spans full width */
    }

    .social-genai-icons {
        flex-direction: column;
        align-items: center;
    }

    .social-item {
        width: 70%;
    }

    .genai-img {
        margin-top: 0.2rem; /* Add space between content and image */
    }

    #g-image {
        margin-top: 2%;
        border-radius: 10px;
        margin-bottom: 1rem;
        width: 100%;
    }

    .genai-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-left: 5%;
        margin-top: 4rem;
        max-width: 90%;
    }

    .social-text h4 {
        font-size: 1rem;
        font-weight: 650;
    }

    .navbar {
        background-color: black !important; /* 100% black */
        background: black !important; /* Ensures no transparency */
        backdrop-filter: none !important; /* Removes blur effects */
    }
    .nav_links .link:hover {
        color: var(--primary-hover); /* Change text color on hover */
    } 
    .nav_links .link::after {
        background-color: var(--primary-hover); /* Underline color */
        
    }
}



/* Auto Scroll button */
#go-to-top-button {
    position: fixed;
    bottom: 20px;
    right: 120px;
    background: rgb(86, 86, 86, 0.5);
    opacity: 0.5;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000; 
    transition: all 0.3s linear;
}

#go-to-top-button:hover {
    opacity: 1;
}

#go-to-top-button img {
    width: 30px;
    height: 30px;
}

.hidden {
    display: none;
}



/* Chatbot - Bot */
.chat-icon {
    position: fixed;
    bottom: 85px;
    right: 23px;
    background-image: linear-gradient(158deg, #002fff 3%, #29ffb1 99%);
    color: #ffffff;

    padding: 6px;
    padding-top: 8px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50px; 
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease-in-out;

    z-index: 10000;
}

.chat-icon svg {
    width: 40px; 
    height: 40px;
    transform: scaleX(-1);
}

.chat-icon:hover {
    transform: scale(1.05);
}


/* Chat Container */
.chat-container-fluid {
    position: fixed;
    bottom: -50%; /* Initially hidden below */
    right: 20px;
    width: 390px; 
    height: 475px;
    /* background: #131418; */
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(62, 156, 113, 0.3);
    border: 1px solid rgba(250, 250, 250, 0.5);
    transition: bottom 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;

    z-index: 9999;
    overflow-y: hidden;
    scroll-behavior: smooth; /* Smooth scrolling */

}

.chat-container-fluid.open {
    bottom: 30px; /* Moves up smoothly */
    opacity: 1;
}
/* Prevent Body Scrolling When Chat is Open */
body.chat-container-fluid.open {
    overflow: hidden;
}

/* Hide chat icon when chat opens */
#chat-icon {
    opacity: 0.6;
    transition: opacity 0.3s ease-in-out;
}


.chat-box {
    /* background: #131418; */
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-card {
    display: flex;
    flex-direction: column;
    height: 475px;
}

/* Chat Header */
.chat-header {
    background: #000000;
    color: #fff;
    font-family: var(--font-inter);
    padding: 15px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;

    position: relative; /* Ensure the pseudo-element positions correctly */
}

/* Create the gradient border effect at the bottom */
.chat-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Simulates a border */
    background: linear-gradient(to right, transparent, #ddd, transparent);
}


.chat-header-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.chat-avatar {
    display: flex;
    align-items: center;
    gap: 10px; /* Spacing between avatar and text */
}

.avatar-container {
    position: relative;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: var(--primary-hover);
    border-radius: 50%;
    position: absolute;
    bottom: 1px;
    right: 2px;
}

.chat-user-details {
    display: flex;
    flex-direction: column;
}

.chat-user-name {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    font-family: "Orbitron", serif;
    letter-spacing: 0.5px;
}

.chat-user-role {
    margin: 0;
    font-size: 12px;
    color: #f1f1f1;
    white-space: nowrap;
    font-family: var(--font-inter);
    letter-spacing: 0.5px;
    line-height: 0.5;
    padding-top: 5px;
}

.close-chat-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    margin-left: auto;

    transition: all 0.2s ease-in-out;
}

.close-chat-btn:hover {
    color: rgb(254, 67, 67);
}

.chat-user-info {
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
}


/* Chat Body */
.chat-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    /* background: #131418; */
    background: #000000;
    display: flex;
    flex-direction: column;

    cursor: pointer;
}

/* User message - aligned to the right */
.user-message {
    background: rgba(19, 19, 24, 0.6);
    color: white;
    padding: 7px 15px;
    border: 0.5px solid rgb(68, 68, 68);
    border-radius: 15px;
    border-bottom-right-radius: 0px;
    max-width: 80%; 
    width: fit-content; 
    min-width: 60px; 

    margin-bottom: 8px;
    word-wrap: break-word;
    white-space: normal; 
    font-size: 0.9rem;

    display: inline-block; 
    align-self: flex-end;
    text-align: left; 
}

/* Bot message - aligned to the left */
.bot-message {
    background: rgba(19, 19, 24, 0.6);
    color: rgb(255, 255, 255);
    padding: 7px 15px;
    border-radius: 15px;
    border: 0.5px solid #bdffbb;
    border-bottom-left-radius: 0px;
    max-width: 80%; /* Prevents message from overflowing */
    width: fit-content;
    min-width: 60px;

    align-self: flex-start;
    margin-bottom: 8px;
    word-wrap: break-word;
    white-space: normal;
    font-size: 0.9rem;

    display: inline-block; /* Prevents unwanted stretching */
}

/* Ensure messages stay inside container */
.chat-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background: #000000;
    display: flex;
    flex-direction: column;
    max-width: 100%; /* Prevents overflow */
    word-wrap: break-word;
}


/* time container js */
.message-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    margin-bottom: 5px;
}

.user-wrapper {
    align-self: flex-end;
    text-align: right;
}

.bot-wrapper {
    align-self: flex-start;
    text-align: left;
}

.message-container {
    padding: 10px;
}

.message-text {
    font-size: 14px;
    word-wrap: break-word;
}

/* Ensure time is outside the message bubble */
.message-time {
    font-size: 10px;
    color: gray;
    margin-top: 0px;
    margin-left: 2px;
    width: 100%;
}



/* Chat Footer */
.chat-footer {
    padding: 10px;
    padding-bottom: 0px;
    position: relative;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Create the gradient border effect */
.chat-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Simulates a border */
    background: linear-gradient(to right, transparent, #ddd, transparent);
}


.input-wrapper {
    position: relative;
    width: 98%;
}

.chat-input-field {
    width: 100%;
    border: 0px;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #eaeaea;
    background-color: #131418;
    font-family: 500;
    border-radius: 10px;
    padding: 15px 50px 15px 15px; /* Space for button */
    outline: none;
    font-size: 14px;
    padding-right: 80px;
}

.send-chat-btn {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(87, 249, 168, 0.9);
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.send-chat-btn:hover {
    background: rgba(87, 249, 168, 0.6);
}


.input-group {
    position: relative;
    width: 100%;
}

#chat-p {
    color: rgb(167, 167, 167);
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    align-items: center;
    margin-top: 0rem !important;
    margin-left: 25%;
    padding: 2.5px 0;
    font-family: var(--font-inter);
}

/* mic */
.call-btn {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0, 0, 0);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.4s ease-in-out;
}

.call-btn i {
    font-size: 1.2rem;
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
}

.call-btn:hover i {
    transform: rotate(90deg) scale(0.9); /* Only the icon zooms out */
}

.call-btn:hover {
    background: rgb(59, 59, 59);
}

/* Call Pop-up */
.call-popup {
    position: absolute;
    bottom: -100px; /* Start hidden below */
    left: 0%;
    transform: translateX(-50%);
    background-color: #131418;
    color: white;
    padding: 10px;
    margin: 0rem !important;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: all 0.3s ease-in-out;
}

/* When active (shown) */
.call-popup.show {
    bottom: 0px; /* Move up */
    display: flex; /* Make it visible */
    z-index: 1000;
}


/* When active (shown) */
.call-popup.show {
    bottom: 0px; /* Move up */
    opacity: 1;
    z-index: 1000;
    visibility: visible;
}

/* Close Button (X Icon) */
.close-popup {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.close-popup:hover {
    color: rgb(254, 67, 67);
}

.call-popup p {
    font-size: 0.85rem;
    padding-bottom: 0.4rem;
    font-style: var(--font-inter);
}

/* Mic Container */
.mic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding-left: 5px;
}

/* start Button Styling */
#record-btn {
    padding: 7px 22px;
    font-size: 1rem;
    letter-spacing: 0.5;
    border-radius: 20px;
    cursor: pointer;
    background-color: white;
    
    font-style: var(--font-hankenGrotesk);
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

#record-btn:hover {
    background-color: rgb(193, 193, 193);
}

#record-btn:active {
    transform: scale(0.95);
}

.loadervc {
    width: 16px;
    height: 16px;
    border: 3px solid rgb(155, 244, 166);
    border-top: 3px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* wave */
/* Wave Container Styling */
#wave-container {
    position: absolute;
    bottom: 102px; 
    left: 100%;
    transform: translateX(-100%); 
    width: 80%; 
    max-width: 400px; 
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;

    display: none;
}

/* Canvas Styling */
#wave-canvas {
    width: 100%;
    height: 100%;
}



/* RWD mobile */
@media (max-width: 1100px) {
    .genai-img {
        width: 540px;
        padding-left: 25% !important;
    }
}



@media (max-width: 850px) {

    .home-content h2 {
        margin-left: 2rem;
        margin-top: 5rem;
    }

    .contact-container h2 {
        font-size: 1.5rem;
        font-weight: 500;
        max-width: 100%;
        line-height: 1;
    }

    .sec-p-g-content {
        padding-top: 1.5rem;
    }

    .genai-sec {
        padding-left: 0rem !important;
        padding-right: 1rem !important;
    }

    .genai-img {
        display: flex;
        justify-content: center; /* Center the image horizontally */
        align-items: center; /* Vertically center the image */
    
        width: 600px !important;
        
    }
    
    #g-image {
        padding-left: 0rem;
        margin-right: 25%;
    }

    .social-genai-icons {
        padding-left: 1rem;
    }
    
    .workflow-text h4 {
        font-size: 1rem;
        font-weight: 500;
        opacity: 0.7;
    }
    
    .workflow-text p {
        font-size: 0.9rem;
    }
    
    .workflow-first i {
        font-size: 20px; /* Adjust icon size */
    }

    .text-container span {
        font-size: 1rem;
        max-width: 82%; /* Use percentage for responsiveness */
        margin-left: 6%;
        margin-top: 6rem;
    }

    .lvelup-content h2 {
        font-size: 2.3rem;
        font-weight: 400;
        margin-top: 6rem;
    }
    
    .lvelup-content p {
        font-size: 0.9rem;
    }
    
    .box-title {
        width: 90%;
        margin-top: 2rem;
        left: 7.5%;
    }
    
    .box-title a {
        font-size: 2rem;
        font-weight: 700;
        left: 50%;
    }

    .heading3 {
        font-size: 0.9rem;
        font-weight: 400;
        
        width: 80%; /* Keeps the width but needs centering */
        margin: 1rem auto; /* Centers the block itself */
        margin-top: 2.4rem;
    }

    .service-box {
        margin-bottom: 0.5rem;
        margin-top: 1rem;
        height: 340px;
    }
    .service-info h4 {
        font-size: 1.6rem;
        margin: 1.6rem 0;
        font-weight: 800;
    }
    
    .service-info p {
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .g-content {
        padding-top: 2rem;
        font-size: 0.9rem;
        font-weight: 500;
        width: 88%;
        max-width: 90%;  /* Ensures it never exceeds the screen width */
        padding-left: 3.5rem;
        box-sizing: border-box; /* Includes padding in the total width */
    }
    
    .contact-item svg {
        width: 1.6rem;  
    }

    .contact-item h3 {
        font-size: 10px;
    }

    .contact-item p,
    #contact-mail a {
        font-size: 0.9rem;
        line-height: 1;
    }

    .navbar {
        background-color: black !important; /* 100% black */
        background: black !important; /* Ensures no transparency */
        backdrop-filter: none !important; /* Removes blur effects */
    }
    
}



@media (max-width: 650px) {
    .text-container span {
        max-width: 100%; /* Use percentage for responsiveness */
        margin: 1rem 0;
        margin-left: 0%;
        margin-top: 6rem;
        margin-right: 7%;

        font-size: 0.9rem;
        font-weight: 500;
    }

    .text-container {
        width: 100vw !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        padding-right: 1.5rem !important;
    }

    .home-content h2 {
        font-size: 4rem !important;
        font-weight: 700;
        margin-top: 5.7rem;
        margin-left: 0rem;
        margin-right: 3rem !important;
        line-height: 0.8 !important;
    }

    /* SVG styling */
    .home-content h2 svg {
        width: 100% !important; /* Scale SVG to the full width of the h1 */
        height: auto; /* Maintain aspect ratio */
    }

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .lvelup-content h2 {
        font-size: 2rem;
        font-weight: 400;
        margin-top: 6rem;

    }
    
    .lvelup-content p {
        font-size: 0.9rem;
    }

    .box-title {
        width: 90%;
        margin-top: 2rem;
        left: 7.5%;
    }
    
    .box-title a {
        font-size: 1.7rem;
        font-weight: 700;
        left: 50%;
    }

    .service-box {
        margin-bottom: 0.5rem;
        margin-top: 0.8rem;
        height: 290px;
    }
    .service-info h4 {
        font-size: 1.4rem;
        margin: 1.6rem 0;
        font-weight: 800;
    }
    
    .service-info p {
        font-size: 0.85rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .genai-title {
        font-size: 2rem;
        font-weight: 600;
        margin-left: 5%;
        margin-top: 4rem;
        max-width: 90%;
    }
    
    .faq-question {
        padding: 17px 8px;
        font-size: 0.84rem;
        line-height: 1;
    }
     .faq-answer {
        padding: 0px 8px;
        font-size: 0.84rem;
        line-height: 1.2;
    }

    .footer-column p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .footer-column ul li a {
        font-size: 0.8rem;
    } 
    .footer-column h3 {
        font-weight: 600;
        font-size: 1.2rem;
    } 
    
    .loading-icon {
        width: 15px;
        height: 15px;
    }
    
    footer p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }
    
    footer span {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .chat-container-fluid {
        position: fixed;
        bottom: -50%; /* Initially hidden below */
        right: 20px;
        width: 350px; 
        height: 450px;
    }
    
    .chat-card {
        height: 450px;
    }
}

/* rwd */
@media (max-width: 500px) {

    .logo img {
        width: 40px;
        height: 28px;
        
    }
    
    #web_log span {
        font-weight: 500;
        font-size: 1rem;
        margin-top: 2rem;
    }

    .navbar {
        top: 50px;
        width: 90%;
        margin-top: 1rem;

    }

    .navbar {
        left: 50%;
        transform: translateX(-50%); /* Centers the navbar */
        width: 90%;

    }

    .navbar {
        margin-left: 0rem;
    }
    
    .nav_links .link {
        margin-left: 0rem;
    }
    
    
    .lvelup-content h2 {
        font-size: 1.7rem;
        font-weight: 400;
        margin-top: 6rem;
    }
    
    .lvelup-content p {
        font-size: 0.9rem;
        font-weight: 400;
    }

    .box-title a {
        font-size: 1.2rem;
        font-weight: 500;
        left: 48%;
    }

    .heading3 {
        font-size: 0.75rem;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    .service-box {
        margin-bottom: 0.5rem;
        margin-top: 0.8rem;
        height: 250px;
    }
    .service-info h4 {
        font-size: 1.2rem;
        margin: 1.6rem 0;
        font-weight: 800;
    }
    
    .service-info p {
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .genai-title {
        font-size: 1.8rem;
        font-weight: 600;
        margin-left: 5%;
        margin-top: 4rem;
        max-width: 90%;
    }


 
    /* main title */
    .home-content h2 {
        font-size: 3.8rem !important;
        font-weight: 700;
        margin-top: 4.7rem;
        
        margin-left: 0rem;
        margin-right: 3rem !important;
        line-height: 0.8 !important;
    }

    /* SVG styling */
    .home-content h2 svg {
        width: 100% !important; /* Scale SVG to the full width of the h1 */
        height: auto; /* Maintain aspect ratio */
    }

    .text-container {
        display: inline-block;
        position: relative; /* Ensures text stays in place */
        align-items: start;
        justify-content: center;

        width: 100vw !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        padding-right: 1.5rem !important;
    }

}

/* mobile rwd */
@media (max-width: 460px) {
    .genai-sec {
        padding-left: 1rem !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .genai-title {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .genai-img {
        max-width: 100%;
        width: auto;
    }

    #g-image {
        margin-top: 0;
        max-width: 90%;
    }

    .g-content {
        width: 100%;
        font-size: 0.9rem;
        padding: 1rem;
    }

    .social-genai-icons {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }

    .social-item {
        flex: 1 1 100%;
        min-width: auto;
        max-width: 90%;
    }

    .contact-container h2 {
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1;
    } 
    
    .footer-column {
        flex: 1;
        min-width: 300px;
    }
    
    .footer-column:first-child {
        flex: 2;
        min-width: 300px; /* Ensure it has a good width */
    } 
    
    .footer-column input {
        width: 90%;
        padding: 8px;
        margin-top: 10px;
    }
    
    .subscribe-btn {
        display: block;
        width: 90%; /* Adjust width */
        margin: 5px auto;
        margin-left: 0 !important;
        margin-right: 1rem !important;
        padding: 5%;
    }
    
    .chat-container-fluid {
        position: fixed;
        bottom: -50%; /* Initially hidden below */
        right: 20px;
        width: 320px; 
        height: 450px;
    }
    
    .chat-card {
        height: 430px;
    }
    

    .text-container {
        display: inline-block;
        position: relative; /* Ensures text stays in place */
        align-items: start;
        justify-content: center;

        width: 100vw !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .text-container span {
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.5;
        width: 100%;
        margin-top: 6rem;
        margin-bottom: 2rem;
        margin-right: 3rem !important; 
        padding-right: 0.4rem !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .home-content h2 {
        font-size: 4rem !important;
        font-weight: 700;
        margin-top: 5rem;
        margin-right: 2.9rem;
        line-height: 0.8 !important;
    }

    /* SVG styling */
    .home-content h2 svg {
        width: 100% !important; /* Scale SVG to the full width of the h1 */
        height: auto; /* Maintain aspect ratio */
    }

}

@media (max-width: 390px) {
    .text-container {
        display: inline-block;
        position: relative; /* Ensures text stays in place */
        align-items: start;
        justify-content: center;
    }
    
    .text-container span {
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.5;
        width: 350px !important; 
        max-width: 100%;
        margin-top: 6rem;
        margin-bottom: 2rem;
        margin-right: 2.5rem !important; 
        padding-right: 0.6rem !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
}

/* Stack elements in a single column for screens < 400px */
@media screen and (max-width: 460px) {
    .social-genai-icons {
        flex-direction: column;
        align-items: center;
    }

    .social-item {
        flex-direction: column; /* Stack image, heading, and text */
        align-items: center;
        flex: 1 1 100%; /* Full width */
        min-width: auto;
        gap: 1rem;
        text-align: center; /* Center-align text */
    }
    
    .social-item img {
        width: 55px;
        height: 55px;
    }
}



/* ******************* */

/* Scroll bar */
::-webkit-scrollbar {
    width: 10px; /* Same as the thumb width */
}

::-webkit-scrollbar-thumb {
    background: rgb(202, 195, 195);
    border-radius: 10px; /* Ensure smooth edges */
    border: 2px solid transparent; /* Ensures no extra padding */
    background-clip: padding-box; /* Fixes the issue where the track looks wider */
}

::-webkit-scrollbar-track {
    background: transparent; /* Removes any extra visible width */
}

/* Hover Effect */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.section-dark ::-webkit-scrollbar-track {
    background: #222222; /* Match section bg */
}

.section-light ::-webkit-scrollbar-track {
    background: #f5f5f5; /* Match light bg */
}



/* desktop screens */
@media (min-width: 1300px) {
    .home {

        padding-top: 7rem; /* Add small top padding if needed */
        padding-left: 5.5rem;
        height: 110vh;
    }

    .navbar {
        margin-left: 8.5rem;
    }

    .nav_links {
        gap: 1.5rem;
    }


    /* Header Navigation menu */
    .lvelup-section {
        background: transparent;
    
        padding: 0 4%;
        position: relative;
        margin: 0 !important;
        height: 100vh;
    }

    .spline-container {
        width: 600px; /* Fixed width */
        height: 750px; /* Fixed height */
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative; /* Keep it positioned properly */
        padding-left: 2rem;
    }
    
    /* Ensure the 3D canvas does not resize */
    #canvas3d {
        width: 100%;  
        height: 100%;
        object-fit: contain; /* Prevents distortion */
    }
}

@media (min-width: 1400px) {
    /* General link styling */

    .home {
        padding-top: 9rem; /* Add small top padding if needed */
        padding-left: 5.2rem;
        height: 110vh;
    }

    .navbar {
        margin-left: 8.5rem;
    }

    .nav_links {
        gap: 1.5rem;
    }

    /* .nav_links {
        display: flex;
        align-items: center;
        justify-content: center; 
        gap: 3.7rem; 
        list-style: none;
        padding: 0;
    } */
    
    section {
        padding: 0 4%;
        position: relative;
    }

    /* Header Navigation menu */
    .lvelup-section {
        background: transparent;
    
        padding: 0 4%;
        position: relative;
        margin: 0 !important;
        height: 90vh;
    }

    .spline-container {
        width: 560px !important; /* Fixed width */
        height: 800px !important; /* Fixed height */
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative; /* Keep it positioned properly */
        padding-left: 2rem;
    }
    
    /* Ensure the 3D canvas does not resize */
    #canvas3d {
        width: 100%;  
        height: 100%;
        object-fit: contain; /* Prevents distortion */
    }

    .footer-sec {
        padding: 3rem 2.5rem;
    }
    
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        max-width: 1600px;
        margin: auto;
    }
    
    .footer-column {
        flex: 1;
        min-width: 450px;
    }

    .footer-column:first-child {
        flex: 2;
        min-width: 350px; /* Ensure it has a good width */
    }
    
    #company-col {
        padding-left: 4.5rem;
    }

    .footer-container2 {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        max-width: 1470px;
        margin-top: 4rem;
        flex-wrap: wrap;
    }
    
    .contact-info {
        display: flex;
        flex: 1;
        justify-content: space-between;
        gap: 1px;
        flex-wrap: wrap;
        margin-left: 13rem !important;
    }
}

@media (min-height: 800px) {
    .lvelup-section {
        height: 80vh;
    }
}

@media (min-width: 1500px) {
    /* General link styling */

    .home {
        padding-top: 9rem; /* Add small top padding if needed */
        padding-left: 5.2rem;
        height: 110vh;
    }

    .navbar {
        margin-left: 9.6rem;
    }

    .nav_links {
        gap: 1.2rem;
    }

    /* .nav_links {
        display: flex;
        align-items: center;
        justify-content: center; 
        gap: 3.7rem; 
        list-style: none;
        padding: 0;
    } */

    /* Header Navigation menu */
    .lvelup-section {
        background: transparent;
    
        padding: 0 4%;
        position: relative;
        margin: 0 !important;
        height: 95vh;
    }

    .spline-container {
        width: 560px !important; /* Fixed width */
        height: 800px !important; /* Fixed height */
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative; /* Keep it positioned properly */
        padding-left: 2rem;
    }
    
    /* Ensure the 3D canvas does not resize */
    #canvas3d {
        width: 100%;  
        height: 100%;
        object-fit: contain; /* Prevents distortion */
    }
}