/* Reset
/* ---------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
@import url('http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900italic,900');

.is-head-left-logo.home-template .gh-head:not(.is-header-hidden) .gh-head-logo {
    display: inline;
}


/* .is-head-left-logo .gh-head-menu {
    margin:0;
} */

ul {
    padding: 0 0 0 0 !important;
}

.inner {
    margin: 0 auto !important;
    max-width: 4000px !important;
    width: 100% !important;
    padding: 0 calc(9vw + -6vw) !important;
}

.gh-head-brand img {
    height: 100px; /* Adjust logo size */
}

.gh-head-logo img {
    max-height: 125px; /* reachesHEIGHT OF BAR */
}

.badge {
    height: 50px;
    top:0px;
}

@media (max-width: 768px) { 
    .badge {
        height: 45px;
    }
    .request-demo {
        width: 85% !important;
        margin-left: 10% !important;
        margin-right: 10% !important;
    }
    .gh-head-brand img {
        height: 70px; 
    }
    .gh-head-logo img {
        max-height: 80px; 
        margin-left: -25% !important;
    }
    .gh-head-brand {
        /* display: flex; */
        flex: 1;
        height: 100% !important;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        align-content: center;
        max-width: max-content;
    }
    #gh-head .gh-burger {
        display: block;
        position: absolute;
        width: 30px;
        height: 30px;
        /* padding: 0; */
        margin-left: 70% !important;
        cursor: pointer;
        background-color: transparent;
        border: 0;
        appearance: none;
    }

    /* Fix header padding and positioning */
    .gh-head {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        background: #04051f !important; /* Solid background on mobile */
        padding: 10px 20px !important;
        height: 100px !important;
        z-index: 9999 !important;
    }
    
    /* Ensure header inner has proper layout */
    .gh-head-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    /* Fix brand container */
    .gh-head-brand {
        position: relative;
        display: flex;
        align-items: center;
        width: auto !important;
        flex: 0 0 auto !important;
        margin-left: 0 !important;
    }
    
    /* Fix burger button positioning */
    .gh-burger {
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
        width: 30px !important;
        height: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 10000 !important;
        opacity: 1 !important;
    }
    
    /* Add burger icon lines */
    .gh-burger::before,
    .gh-burger::after,
    .gh-burger span {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        margin: 6px 0;
        transition: transform 0.3s, opacity 0.3s;
    }
    
    /* Animation for burger when open */
    body.gh-head-open .gh-burger::before {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    body.gh-head-open .gh-burger span {
        opacity: 0;
    }
    
    body.gh-head-open .gh-burger::after {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Fix mobile menu styling */
    .gh-head-menu {
        position: absolute !important;
        top: 100px !important; /* Height of the header */
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        background-color: #04051f !important;
        padding: 20px !important;
        z-index: 9998 !important;
        display: none !important;
    }
    
    /* Show menu when open */
    body.gh-head-open .gh-head-menu {
        display: block !important;
    }
    
    /* Fix menu list */
    .gh-head-menu ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix menu items */
    .gh-head-menu ul li {
        margin: 10px 0 !important;
        text-align: center !important;
    }
    
    /* Fix mobile menu button */
    .nav-button {
        display: inline-block !important;
        width: 200px !important;
        margin: 0 auto !important;
    }
    
    /* Fix hero section to avoid overlap */
    .hero-section {
        padding-top: 120px !important;
    }

    /* Logo fixes */
    /* Fix logo positioning */
    .gh-head-logo img {
        max-height: 70px !important;
        margin-left: 0 !important;
    }
    
    /* Prevent compact header from hiding elements */
    .gh-head.compact .gh-head-logo img,
    .gh-head.compact .gh-burger {
        opacity: 1 !important;
    }
    
    /* Ensure the header remains visible in compact mode */
    .gh-head.compact {
        height: 100px !important;
        background: rgba(4, 5, 31, 0.95) !important;
    }

    /* Override existing styles that could be causing conflicts */
    body.gh-head-open {
        overflow: hidden;
    }
    
    /* Reset any transforms on the viewport */
    .viewport {
        transform: none !important;
    }

    /* Header container fixes */
    .gh-head {
        height: 100px !important;
        padding: 0 20px !important;
        position: fixed !important;
        width: 100% !important;
        z-index: 9999 !important;
    }
    
    /* Fix logo and brand container */
    .gh-head-brand {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: space-between !important; /* This creates space between logo and burger */
        align-items: center !important;
        position: relative !important;
    }
    
    /* Fix logo positioning */
    .gh-head-logo {
        margin-left: 0 !important;
    }
    
    .gh-head-logo img {
        margin-left: 0 !important;
    }
    
    /* Fix burger button positioning and style */
    .gh-burger {
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        transform: none !important;
        margin-right: 0 !important;
        display: block !important;
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        cursor: pointer !important;
    }
    
    /* Clear existing burger styling to start fresh */
    .gh-burger::before,
    .gh-burger::after,
    .gh-burger span {
        content: none !important;
    }
    
    /* Re-style the burger icon with spans */
    .gh-burger span {
        display: block !important;
        width: 30px !important;
        height: 2px !important;
        margin: 6px 0 !important;
        background-color: white !important;
        transition: transform 0.3s ease, opacity 0.3s ease !important;
        content: "" !important;
    }
    
    /* Proper X transformation when menu is open */
    body.gh-head-open .gh-burger span:first-child {
        transform: translateY(8px) rotate(45deg) !important;
    }
    
    body.gh-head-open .gh-burger span:nth-child(2) {
        opacity: 0 !important;
    }
    
    body.gh-head-open .gh-burger span:last-child {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
    
    /* Fix mobile menu display to push content down */
    .gh-head-menu {
        position: fixed !important;
        top: 100px !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #04051f !important;
        padding: 20px !important;
        z-index: 998 !important;
        transition: all 0.3s ease !important;
        display: none !important; /* Hide by default */
    }
    
    /* Show menu properly when active */
    body.gh-head-open .gh-head-menu {
        display: block !important;
    }
    
    /* Fix content positioning when menu is open */
    body.gh-head-open .viewport {
        padding-top: 100px !important; /* Pushes content down */
    }
    
    /* Ensure hero section is properly positioned */
    .hero-section {
        position: relative !important;
        padding-top: 100px !important;
        transition: padding-top 0.3s ease !important;
    }
    
    body.gh-head-open .hero-section {
        padding-top: 200px !important; /* Add extra space when menu is open */
    }

    /* Fix menu positioning to avoid logo overlap */
    .gh-head-menu {
        position: fixed !important;
        /* Increased from 100px to 110px to avoid logo overlap */
        top: 110px !important; 
        left: 0 !important;
        width: 100% !important;
        background-color: #04051f !important;
        padding: 20px !important;
        z-index: 998 !important;
        transition: all 0.3s ease !important;
        display: none !important;
    }
    
    /* Improve X icon visibility when menu is open */
    body.gh-head-open .gh-burger span {
        /* Make all burger lines white for visibility */
        background-color: white !important;
    }
    
    /* Specifically improve visibility of the X transformation */
    body.gh-head-open .gh-burger span:first-child {
        transform: translateY(8px) rotate(45deg) !important;
        background-color: #f3c108 !important; /* Yellow color for better visibility */
    }
    
    body.gh-head-open .gh-burger span:last-child {
        transform: translateY(-8px) rotate(-45deg) !important;
        background-color: #f3c108 !important; /* Yellow color for better visibility */
    }
    
    /* Ensure the burger area remains clickable */
    .gh-burger {
        width: 40px !important; /* Slightly wider clickable area */
        height: 40px !important; /* Slightly taller clickable area */
        padding: 5px !important; /* Add padding around the actual icon */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Reset and fix burger button styling */
    .gh-burger {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin-right: 10px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 10000 !important;
    }

    /* Remove conflicting styles */
    .gh-burger::before,
    .gh-burger::after {
        content: none !important;
        display: none !important;
    }

    /* Fix the burger icon spans */
    .gh-burger span {
        display: block !important;
        width: 30px !important;
        height: 2px !important;
        margin: 5px auto !important;
        background-color: white !important; /* White color for visibility */
        transition: transform 0.3s ease, opacity 0.3s ease !important;
    }

    /* Fix the X transformation */
    body.gh-head-open .gh-burger span:first-child {
        transform: translateY(7px) rotate(45deg) !important;
        background-color: #f3c108 !important; /* Yellow for better visibility */
    }

    body.gh-head-open .gh-burger span:nth-child(2) {
        opacity: 0 !important;
    }

    body.gh-head-open .gh-burger span:last-child {
        transform: translateY(-7px) rotate(-45deg) !important;
        background-color: #f3c108 !important; /* Yellow for better visibility */
    }

    /* Burger icon to X transformation fix */
    body.gh-head-open .gh-burger span {
        margin: 0 auto !important; /* Remove margin between spans */
    }
    
    body.gh-head-open .gh-burger span:first-child {
        position: relative !important;
        top: 9px !important; /* Position properly for rotation */
        transform: rotate(45deg) !important; /* Perfect 45 degrees */
        background-color: #f3c108 !important; /* Yellow color */
        opacity: 1 !important;
    }
    
    body.gh-head-open .gh-burger span:nth-child(2) {
        opacity: 0 !important; /* Hide middle line */
    }
    
    body.gh-head-open .gh-burger span:last-child {
        position: relative !important;
        top: -9px !important; /* Position properly for rotation */
        transform: rotate(-45deg) !important; /* Perfect -45 degrees */
        background-color: #f3c108 !important; /* Yellow color */
        opacity: 1 !important;
    }
    
    /* Make burger container taller to accommodate transformation */
    .gh-burger {
        height: 45px !important; /* Taller container */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Ensure spans are properly spaced */
    .gh-burger span {
        display: block !important;
        width: 30px !important;
        height: 2px !important;
        margin: 5px auto !important;
        background-color: white !important;
        transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease !important;
    }

    /* Set minimum size for logo */
    .gh-head-logo img {
        max-height: 70px !important;
        min-height: 50px !important;
        width: auto !important;
        margin-left: 0 !important;
        object-fit: contain !important;
    }
    
    /* Improve header spacing */
    .gh-head {
        padding: 0 15px !important;
    }

    /* Reset logo styles */
    .gh-head-logo img,
    .gh-head-brand img {
        min-height: 50px !important;
        max-height: 70px !important;
        height: auto !important;
        width: auto !important;
        margin-left: 0 !important;
        object-fit: contain !important;
        display: block !important;
        opacity: 1 !important; /* Ensure always visible */
    }

    /* Fix header height */
    .gh-head {
        height: 100px !important;
        padding: 0 15px !important;
        background: #04051f !important; /* Solid background */
    }

    /* Ensure logo container has proper dimensions */
    .gh-head-brand {
        display: flex !important;
        align-items: center !important;
        height: auto !important;
        margin: 0 !important;
    }

    /* Prevent logo from disappearing when header is in compact mode */
    .gh-head.compact .gh-head-logo img {
        opacity: 1 !important;
        max-height: 70px !important;
        min-height: 50px !important;
    }

    .footer-links {
        display: flex;
        /* flex: 1; */
        justify-content:safe;
        gap: 20%;
        flex-direction: row;
    }   
    .footer-column h1 {
        font-size: 20px !important; /* Slightly larger on mobile for headers */
        font-weight: 600 !important;
        margin-bottom: 10px !important;
        color: #05041f !important;
    }
    .footer-column li {
        line-height: 2vw;
    }
    .footer-column ul {
        list-style: none;
        padding: 0;
    }
    .footer-column ul li {
        margin-bottom: 8px;
    }
    .footer-column ul li a {
        margin: 0 0 0 0 !important;
        font-family: 'Poppins', sans-serif !important;
        letter-spacing: normal;
        text-transform: uppercase;
        line-height: 150%;
        font-size: 16px !important; /* Larger on mobile for better tap targets */
        font-weight: 500 !important;
        text-align: left !important;
        color: #535968 !important;
        letter-spacing: 1px;
    }
    .mail {
        margin: 0 0 0 0 !important;
        font-family: 'Poppins', sans-serif !important;
        letter-spacing: normal;
        text-transform: uppercase;
        line-height: 150%;
        font-size: 16px !important; /* Consistent size */
        font-weight: 500 !important;
        text-align: left !important;
        color: #535968 !important;
        letter-spacing: 1px;
        margin-bottom: 10px !important;
        display: block !important;
    }
    .footer-column ul li a:hover {
        text-decoration: underline;
    }
    /* Address Styling */
    .footer-column p {
        font-size: 16px !important; /* Larger on mobile */
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
        color: #535968 !important;
    }
    .footer-column a {
        color: #05041f !important;
        font-weight: 600;
        text-decoration: none;
        /* font-size: 3vw; */
    }
    .footer-column a:hover {
        text-decoration: underline;
    }
    .footer-bottom p {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) { /* Even smaller screens like phones */
    .gh-head-brand img {
        height: 50px; /* Further reduce logo size */
    }
    .gh-head-logo img {
        max-height: 70px; /* Adjust bar height */
    }
    .gh-head-brand {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    /* Ensure logo remains visible */
    .gh-head-logo img {
        min-height: 45px !important;
        max-height: 55px !important;
        width: auto !important;
    }
    
    /* Ensure header height is sufficient */
    .gh-head {
        height: 90px !important;
    }
    
    /* Reposition menu below the header */
    .gh-head-menu {
        top: 90px !important;
    }
    
    /* Ensure burger button remains visible */
    .gh-burger {
        width: 35px !important;
        height: 35px !important;
    }
    
    /* Adjust hero section padding */
    .hero-section {
        padding-top: 100px !important;
    }
    
    body.gh-head-open .hero-section {
        padding-top: 180px !important;
    }
}

@media (max-width: 350px) {
    .gh-head-logo img {
        min-height: 40px !important;
        max-height: 45px !important;
    }
    
    .gh-head {
        height: 80px !important;
        padding: 0 10px !important;
    }
    
    .gh-head-menu {
        top: 80px !important;
    }
}

.gh-head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gh-head-menu ul {
    list-style:none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.gh-head-menu ul li a {
    text-decoration: none;
    color: inherit;
}
.mobile-header {
    display: none;
}

@media (max-width: 768px) {
    .gh-head:is(.is-header-hidden) .menu-toggle {
        display: inline !important;
    }
    .gh-head {
        display: inline;
        padding: 10px;
        text-align: center;
    }
    .nav-list {
        display: none;
    }
    .nav-list.show {
        display: block;
    }
    .mobile-header {
        display: block;
    }
    .gh-head-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1px !important;
        font-weight: 500;
    }
    .gh-head-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start; 
        padding: 0;
        height: 100%;
        /* background-color: white; */
    }
    .gh-head-menu ul li a { 
        text-decoration: none;
        color: inherit;
    }
    .gh-head-inner {
        display: flex;
        justify-content: space-between;
        /* align-items: flex-end; */
    }
    
}
/* Ensure the header is always visible */
/* .gh-head {
    display: block; 
} */
/* Conditionally hide the header */
/* .gh-head.is-header-hidden {
    display: block !important;
} */

/* Default: Hide the hamburger button on large screens */
/* .menu-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
     top: 10px; 
    right: 10px;
} */
 /* Hide the menu toggle on desktop */
.menu-toggle {
    display: none;
}
.nav-list.show {
    display: block;
}
/* .nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
} */
/* Show the menu toggle on mobile */
/* @media only screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-list {
        display: none; 
    }
} */

/* Navigation list styles */


/* MOBILE VIEW: Show hamburger and hide menu */
/* @media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }

    .nav-list {
        display: none; 
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 10px;
        position: absolute;
        top: 50px;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-list.show-menu {
        display: flex; 
    }
} */

.nav-button {
    width: 200px;
    height: 45px;
    color: #05041f;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3sease-in-out;
    border: none;
}

.nav-button-yellow { background-color: #f3c108; }
.nav-button-purp { background-color: #d7aed1; }

.nav-button:hover {
    background-color: #ffefc6; /* Lighter yellow on hover */
    box-shadow: 0px 2px 2px rgb(255, 255, 255);
    transform: translateY(-1px);
}


/* calendly widget stlyes */
.calendly {
    min-width:320px;
    height:100%;
    bottom:25px;
}
.calendly-text {
    padding-left: 15%;
}

@media (max-width: 768px) {
    .calendly {
        width: 85% !important;
        /* min-width:320px; */
        /* bottom:25px; */
        justify-content: center !important;
        align-self: center !important;
        margin-left: 8%;
    }
    .calendly-text {
        margin-bottom:50px;
    }
}


/* Default Navbar */
.gh-head {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    background: linear-gradient(to bottom, #04051f 31%, rgba(0, 0, 0, 0) 100%)!important;
    padding: 20px 40px !important;
    height: 155px!important; /* HEIGHT OF BAR */
    transition: all 0.3s ease-in-out !important;
    z-index: 1000;
}

/* Compact Navbar after scrolling */
.gh-head.compact {
    height: 100px !important;
    background: rgba(255, 255, 255, 0.95);
}

/* Default Logo Visible */
.gh-head-logo img {
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out !important;
}

/* Fade Out Logo on Scroll */
.gh-head.compact .gh-head-logo img {
    opacity: 0 !important;
}

.gh-head.compact .gh-burger {
    opacity: 0 !important;
}

/* Footer Styles */
.site-footer {
    background: #F7E7B8;
    color: #05041f;
    padding: 40px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

/* Footer Logo */
.footer-logo img {
    height: 140px;
    margin-top: 00% !important;
}


.footer-column h1 {
    font-size: 18px !important; /* Fixed size instead of 1vw */
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #05041f !important;
}

.footer-column li {
    line-height: 2vw;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    margin: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: normal;
    text-transform: uppercase;
    line-height: 150%;
    font-size: 14px !important; /* Fixed size instead of 0.7vw */
    font-weight: 500 !important;
    text-align: left !important;
    color: #535968 !important;
    letter-spacing: 1px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Address Styling */
.footer-column p {
    font-size: 14px !important; /* Fixed size instead of 0.7vw */
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
    color: #535968 !important;
}

.footer-column a {
    color: #05041f !important;
    font-weight: 600;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 22px 0;
    border-top: 1px solid #535968;
    font-size: 1vw;
    margin-top: 110px;
}

.footer-bottom p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important; /* Fixed size instead of 0.9vw */
    font-weight: 400;
    letter-spacing: normal;
    color: #535968;
}

/* Footer Mobile Responsiveness Fix */

/* Update the footer links container for better responsiveness */
.footer-links {
    display: flex;
    flex: 3;
    justify-content: center;
    gap: 12%;
}
.footer-container {
    justify-content: center !important;
}
/* Mobile footer improvements */
@media (max-width: 768px) {
    /* Make the container take full width with reasonable padding */
    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        padding: 0 20px;
        width: 100%;
    }
    
    /* Stack columns vertically on mobile */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        margin-top: 20px;
    }
    
    /* Center align each column */
    .footer-column {
        text-align: center;
        width: 100%;
    }
    
    /* Center align the lists */
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Reduce line height for list items */
    .footer-column li {
        line-height: 2.5 !important;
        padding-left: 15px;
    }
    
    .footer-address {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: start;
        padding-left: 15px;
    }
    
    /* Center the bottom copyright section */
    .footer-bottom {
        margin-top: 50px;
    }

    .mail {
        padding-top: 20px;;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-links {
        gap: 25px;
    }
    
    /* Reduce spacing */
    .footer-bottom {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px !important; /* Reduce side padding */
    }
    
    .footer-links {
        gap: 15px !important; /* Reduce gap */
    }
}


/* Fix hero section positioning */
.hero-section {
    position: relative;
    padding-top: 155px; /* Match header height */
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px !important; /* Adjust for mobile header height */
    }
    
    .hero-container {
        flex-direction: column;
    }
}

.hero-section {
    padding-left: 120px;
    display: flex;
    position: relative;
    max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);
    /*padding-top: 120px;*/
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-text {
    flex: 4;
    padding-top: 5%;
    padding-bottom: 50px;
}
.hero-desktop-img {
    display: block;
}

.hero-mobile-img {
    display: none; /* Hide mobile image by default */
}
@media (max-width: 768px) {
    .hero-section {
        padding-left: 120px;
        display: flex;
        position: relative;
        max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);
        /*padding-top: 120px;*/
    }
    .hero-container {
        flex-direction: column; /* Stack elements vertically */
        justify-content: center;
        left: 0;
    }
    .hero-text {
        /* flex: 1; */
        padding-top: 20px;
        padding-bottom: 20px;
        text-align:start; /* Center-align text on mobile */
        left: 0;
    }
    .hero-image {
        order: -1; /* Place the image on top */
        width: 100%;
        /* margin-bottom: 20px; */
        margin-top: 50px;
        /* margin-right: 25%; */
        align-self: center;
        height: auto;
    }
    .hero-desktop-img {
        display: none; /* Hide desktop image */
    }
    .hero-mobile-img {
        order: -1; 
        display: block; /* Show mobile image */
        flex: 6;
        display: flex;
        margin-top: 50px;
    }
    p {
        font-family: 'Roboto', sans-serif !important;
        font-size:large !important;
        line-height: 150% !important;
        font-weight: 400;
        letter-spacing: normal;
        color: #dcd2ca;
    }
}
.form-container {
    width: 62.5%;
    display: flex;
    flex-direction: column;
}

input {
    background: none;
    border: none;
    border-bottom: 1px solid #dcd2ca;
    padding: 10px 0;
    color: white;
    outline: none;
    font-size: 14px;
    margin-bottom: 20px;
    width: 100%;
}

input::placeholder {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.75rem;
    color: rgb(114, 116, 105);
}

.hero-image {
    flex: 6;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    height: auto;
}

h1 {
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: normal;
    line-height: 125%;
    font-size: 3vw !important;  /* Adjust for size */
    font-weight: 500 !important;  /* Bold */
    text-align: left !important; /* Optional: Centers the text */
    color: #f3c108 !important; /* Change color if needed */  
    margin: 0 0 2rem;
}
@media (max-width: 768px) {
    h1 {
        font-family: 'Poppins', sans-serif !important;
        letter-spacing: normal;
        line-height: 125%;
        font-size: 7vw !important;  /* Adjust for size */
        font-weight: 500 !important;  /* Bold */
        text-align: left !important; /* Optional: Centers the text */
        color: #f3c108 !important; /* Change color if needed */  
        margin: 0 0 2rem;
    }
}
p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 2.3rem;
    line-height: 175%;
    font-weight: 400;
    letter-spacing: normal;
    color: #dcd2ca;
}

.Belowhero {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-left:120px; 
    /*padding-right:120px*/
}

.SS-button {
    flex: 1;
    width: 100%; /* Prevents them from being too wide */
    color: #05041f;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: none;
}

.SS-button-yellow { background-color: #f3c108; }
.SS-button-purp { background-color: #d7aed1; }

.SS-button:hover {
    background-color: #ffefc6; /* Lighter yellow on hover */
    box-shadow: 0px 2px 2px rgb(255, 255, 255);
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .Belowhero {
        display: flex;
        flex-direction: column;
        gap: 30px !important;
        align-items: flex-start;
        max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);
        margin-top: -30% !important;
        /* padding-left:120px;  */
        /*padding-right:120px*/
    }
    .SS-button {
        display: none !important;
        flex: 1;
        width: 100%; /* Prevents them from being too wide */
        color: #05041f;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 2rem;
        text-align: center;
        padding: 20px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        border: none;
        /* margin-top: -100px !important; */
    }
    .SS-button-yellow { background-color: #f3c108; }
    .SS-button-purp { 
        background-color: #d7aed1; 
        max-height: 10% !important;
        width: 60% !important; 
        color: #05041f;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 2rem;
        text-align: center;
        padding: 10px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        border: none;
        top: 20px !important;
        /* align-self: flex-start; */
    }
    .SS-button:hover {
        background-color: #ffefc6; /* Lighter yellow on hover */
        box-shadow: 0px 2px 2px rgb(255, 255, 255);
        transform: translateY(-1px);
    }
}
/* Logo slider container */
.logo-slider {
    flex: 5;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    height: 100px;
    max-width: 90vw;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
}

/* Blur image (gradient overlay) */
.blur-image {
    position: absolute;
    z-index: 1;
    width: auto;
    height: 100px;
}

/* Different animations for desktop and mobile */
@keyframes scrollDesktop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 13 - 20px * 16.5));
    }
}

@keyframes scrollMobile {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 13 - 20px * 16.5));
    }
}

/* Logo track styling */
.logo-track {
    display: flex;
    position: relative;
    width: max-content;
    animation: scrollDesktop 40s linear infinite;
}

/* Individual logo styling */
.logo-track img {
    width: 150px;
    height: 100px;
    border-radius: 6px;
    margin-right: 10px;
    margin-left: 10px;
    object-fit: contain;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-track {
        animation: scrollMobile 30s linear infinite;
        /* Faster on mobile */
    }

    .logo-slider {
        width: 100%;
        padding-top: 5rem !important;
    }
}

.second-section {        
    position: relative;
}

  .second-container {
    display: flex;
    Padding-top:400px;
    Padding-bottom:400px;
    padding-left: 300px;
    padding-right: 300px;
    gap: 80px;
    /*max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);*/
    }
@media (max-width: 768px) {
    .second-section {        
        position: relative;
        display: flex;
        flex-direction: row;
    }
    .second-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Padding-top:400px;
        Padding-bottom:400px;
        padding-left: 300px;
        padding-right: 300px; */
        gap: 80px;
        max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);
    }
    .second-left {
        display: flex;
        /* left: -100px; */
        position: absolute;
        margin-right: 10px;
    }
    .second-right {
        flex-direction: row;
        justify-content:space-between;
        display: flex;
        margin-top: 100px;
        width: 100%;
        gap: 30px;
    }
    .how-it-works {
        display: flex;
        flex-direction: column;
        max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);
        position: relative;
    }
}
.how-it-works {
    padding-left: 300px; 
    padding-right: 300px;
    max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);
    position: relative;
}
.animated-img {
    position: absolute;
    left: -200px;
    transition: transform 1s ease-out, opacity 2s ease-out;
    opacity: 0;
    z-index:1; 
    width: 56%;
    top: 26%;
}
@media (max-width: 768px) {
    .animated-img {
        display: flex;
        transition: transform 1s ease-out, opacity 2s ease-out;
        opacity: 1;
        z-index:1; 
        width: 100%;
        top: none !important;
        position: absolute;
    }
}

.animated-img.active {
    transform: translateX(200px); /* Moves up */
    opacity: 1;
}

.animated-img2 {
    position: relative;
    display: block; 
    margin: 0 auto;
    transform: translateY(50px); /* Start slightly lower */
    transition: transform 1s ease-out, opacity 1s ease-out;
    opacity: 0;
    z-index: 1;
    width: 90%;
}

/* Moves up and fades in */
.animated-img2.active {
    transform: translateY(0); /* Moves to original position */
    opacity: 1;
}

  .second-left {
    flex: 5;
  }

  h3 {
    margin: 0 0 0.5em 0 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 1.15px;
    line-height: 130%;
    font-size: 3.5rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    color: #f3c108 !important;
}

  .second-right {
    flex: 3;
  }

  hr {
    position: relative !important;
    display: block !important;
    width: 31% !important;
    margin: 0.5em 0 1em !important;
    padding: 0 !important;
    border: 0 !important;
    border-top: 2.5px solid #f3c108 !important;
}

  h2 {
    margin: 0 0 0 0 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: normal;
    font-size: 6.5rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    color: #f3c108 !important;
}

h4 {
    margin: 0 0 0 0 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: normal;
    text-transform: uppercase;
    line-height: 150%;
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    color: #ffefc6 !important;
    letter-spacing: 1px;
}

  /* Animation for infinite scrolling */
  @keyframes scroll {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .bullets ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin: 0;
    margin: 10px 75px 25px 0px !important;
}

.bullets ul li {
    position: relative; /* Allows `::before` to align correctly */
    padding-left: 25px; /* Space for the bullet */
    font-weight: 500; /* Match the styling */
}

.bullets ul li::before {
    content: "▶";  /* Yellow Triangle */
    color: #f3c108; /* Yellow Color */
    font-size: 1.2rem; /* Adjust size */
    position: absolute;
    left: 0;
}

li {
    margin: 0 0 0 0 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: normal;
    text-transform: uppercase;
    line-height: 150%;
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    text-align: left !important;
    color: #ffefc6 !important;
    letter-spacing: 1px;
}


  /* Carousel Container */
  .carousel {
    padding-left: 300px; padding-right: 300px; padding-bottom: 100px; padding-top: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stack arrows + content */
    align-items: center; /* Center everything */
    justify-content: center; /* Ensure items are centered */
    margin: 0 auto; /* Center horizontally */
}

/* Arrow Buttons */
.arrow {
    position: absolute;
    top: 30%;
    /*transform: translateY(-50%);*/
    background: none;
    border: none;
    color: white;
    font-size: 10rem;
    cursor: pointer;
    z-index: 10;
}

.left-arrow { left: 120px; }
.right-arrow { right: 120px; }

/* Carousel Inner Container */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

/* Each Slide */
.carousel-slide {
    display: flex;
    min-width: 100%;
    gap: 50px;
}

/* Flexbox for Image and Text */
.carousel-item {
    width: 50%;
}

.image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
}

.image-box h2 {
    margin-top: 10px;
    color: #f3c108; /* Yellow Text */
    text-align: center;
}

/* Text Side */
.text-box {
    display: flex;
    flex-direction: column;
}


.text-box ul {
    margin: 10px 0;
}

.text-box ul li {
    margin-bottom: 10px;
}

/* Hide All Slides Except Active */
.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: flex;
}

/* --- NEW: Dots (Indicators) --- */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: gray;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #f3c108;
}

.quote-container {
    position:relative;
    display: inline-block;
}

.quoteimg {
    border-radius: 10px !important;
    width: 90% !important;
    margin: auto;
}

.quotem {
    position: absolute !important;
    width: 9% !important;
    top: -8%;
    left: 8%;
}

.price-section {
    display: flex;
    padding: 300px;
    gap: 4vw;
}

.ps-left {
   flex:3; 
}

.ps-right {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    flex:4; 
}

.demo-top {
    display: flex;
    gap: 1vw;
    align-items: flex-end;
}

.demo-top-l {
    width: 50px; /* Adjust as needed */
    height: auto;
}

.demo-top-r {
    flex: 1;
}


/* Container */
.translate-box {
    background-color: #4a4e56; /* Dark gray background */
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Adjust width */
}

/* Text Area */
textarea {
    background: none;
    border: none;
    width: 100%;
    height: 80px;
    resize: none; /* Prevent resizing */
    font-size: 16px;
    color: white !important;
    outline: none;
    font-family: 'Roboto', sans-serif !important;
}

textarea::placeholder {
    color: #a0a0a0; /* Light gray placeholder */
}

/* Button */
.request-btn {
    background: none;
    border: 2px solid #f3c108; /* Yellow border */
    color: #f3c108;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    align-self: flex-end; /* Aligns button to the right */
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease-in-out;
    width: 41%;
}

.request-btn:hover {
    background-color: #f3c108;
    color: #04051f; /* Dark text */
}


.last-section {
    padding-left: 300px;
    padding-right: 300px;
}


/* Toggle Switch Section */
.toggle-container {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1vw;
    justify-content: center;
}

.lastbutton-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.toggle-label {
    color: gray;
    transition: color 0.3s ease-in-out;
}

.demo-label {
    color: white; /* Default active */
}

.access-label {
    color: gray; /* Default inactive */
}

.lastlast {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.15px;
    line-height: 130%;
    font-size: 3.5rem;
    font-weight: 500;
    text-align: left;
    margin: 0;
    color: #f3c108;
}

.lastlasttwo {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.15px;
    line-height: 130%;
    font-size: 3.5rem;
    font-weight: 500;
    text-align: left;
    margin: 0 !important;
    color:#d7aed1;
}

.lastinputspace {
    margin-bottom: 20px;
}

input {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.75rem !important;
    color: rgb(255, 255, 255) !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f3c108;
    transition: 0.3s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 5px;
    bottom: 5px;
    background-color: black;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #d7aed1;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Form Styling */
.form-container {
    width: 100%;
    margin: auto;
}

.form {
    display: none;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
}

.form.active {
    display: flex;
}

label {
    margin-top: 10px;
    font-size: 1rem;
    color: #dcd2ca;
}

button {
    margin-top: 20px;
    background-color: #f3c108;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

/* Buttons */
.RaD-butt,
.GEA-butt {
    margin: 3vw !important;
    width: 62%;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: none;
}

.RaD-butt {
    background-color: #f3c108;
    color: #05041f;
}

.GEA-butt {
    background-color: #d7aed1;
    color: #05041f;
}

.GEA-butt:hover,
.RaD-butt:hover {
    background-color: #ffefc6;
    box-shadow: 0px 2px 2px rgb(255, 255, 255);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    /* Always show burger icon with proper styling */
    .gh-burger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 40px !important;
        height: 40px !important;
        position: relative !important;
        margin-right: 15px !important;
        cursor: pointer !important;
        z-index: 10000 !important;
        opacity: 1 !important; /* Always visible */
        background: transparent !important;
        border: none !important;
    }
    
    /* Ensure spans are visible */
    .gh-burger span {
        display: block !important;
        width: 30px !important;
        height: 2px !important;
        margin: 5px auto !important;
        background-color: white !important; /* Always white */
        transition: transform 0.3s ease, opacity 0.3s ease !important;
    }
    
    /* Override any pseudo-elements that might be causing conflicts */
    .gh-burger::before,
    .gh-burger::after {
        display: none !important;
        content: none !important;
    }
    
    /* Fix the X transformation with high specificity */
    body.gh-head-open .gh-burger span:first-child {
        transform: translateY(7px) rotate(45deg) !important;
        background-color: #f3c108 !important; /* Yellow color */
        opacity: 1 !important;
    }
    
    body.gh-head-open .gh-burger span:nth-child(2) {
        opacity: 0 !important;
    }
    
    body.gh-head-open .gh-burger span:last-child {
        transform: translateY(-7px) rotate(-45deg) !important;
        background-color: #f3c108 !important; /* Yellow color */
        opacity: 1 !important;
    }
    
    /* Override the hidden opacity in compact mode */
    .gh-head.compact .gh-burger {
        opacity: 1 !important; /* Always visible even in compact mode */
    }
    
    /* Fix any specificity issues with !important */
    body.gh-head-open .gh-burger {
        opacity: 1 !important;
        display: flex !important;
    }
}

@media (max-width: 768px) {
    /* Reset and clean burger button */
    .gh-burger {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        margin-right: 15px !important;
        background: transparent !important;
        border: none !important;
    }
    
    /* Clean burger lines */
    .gh-burger span {
        display: block !important;
        width: 30px !important;
        height: 2px !important;
        margin: 6px 0 !important;
        background-color: white !important;
        transition: all 0.3s ease !important;
        position: relative !important;
    }
    
    /* Clean X transformation */
    body.gh-head-open .gh-burger span:first-child {
        transform: rotate(45deg) !important;
        margin: 0 !important;
        position: absolute !important;
        top: 50% !important;
        background-color: #f3c108 !important;
    }
    
    body.gh-head-open .gh-burger span:nth-child(2) {
        opacity: 0 !important;
    }
    
    body.gh-head-open .gh-burger span:last-child {
        transform: rotate(-45deg) !important;
        margin: 0 !important;
        position: absolute !important;
        top: 50% !important;
        background-color: #f3c108 !important;
    }
    
    /* Remove all pseudo-elements */
    .gh-burger::before,
    .gh-burger::after {
        content: none !important;
        display: none !important;
    }
    
    /* Override any conflicting animations */
    body.gh-head-open .gh-burger::before,
    body.gh-head-open .gh-burger::after {
        display: none !important;
        content: none !important;
        opacity: 0 !important;
    }
}

video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
body {
    line-height: 1;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
html {
    box-sizing: border-box;
    font-family: sans-serif;

    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}
a {
    background-color: transparent;
}
a:active,
a:hover {
    outline: 0;
}
b,
strong {
    font-weight: bold;
}
i,
em,
dfn {
    font-style: italic;
}

small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
mark {
    background-color: #fdffb6;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
kbd {
    padding: 3px 5px;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    background: #f6f8fa;
    border: 1px solid rgba(124, 139, 154, 0.25);
    border-radius: 6px;
    box-shadow: inset 0 -1px 0 rgba(124, 139, 154, 0.25);
}
@media (max-width: 600px) {
    kbd {
        font-size: 1.3rem;
    }
}
button,
input,
optgroup,
select,
textarea {
    margin: 0; /* 3 */
    color: inherit; /* 1 */
    font: inherit; /* 2 */
}
button {
    overflow: visible;
    border: none;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
/* 1 */
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* 3 */
}
button[disabled],
html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}
input {
    line-height: normal;
}
input:focus {
    outline: none;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
input[type="search"] {
    box-sizing: content-box; /* 2 */
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
legend {
    padding: 0; /* 2 */
    border: 0; /* 1 */
}
textarea {
    overflow: auto;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
td,
th {
    padding: 0;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    font-size: 62.5%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    color: var(--color-darkgrey);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.6rem;
    line-height: 1.6em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    background: #05041f;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    text-shadow: none;
    background: #daf2fd;
}

hr {
    position: relative;
    display: block;
    width: 100%;
    margin: 2.5em 0 3.5em;
    padding: 0;
    height: 1px;
    border: 0;
    border-top: 1px solid #f0f0f0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

textarea {
    resize: vertical;
}

::not(.gh-content) p,
::not(.gh-content) ul,
::not(.gh-content) ol,
::not(.gh-content) dl,
::not(.gh-content) blockquote {
    margin: 0 0 1.5em 0;
}

ol,
ul {
    padding-left: 1.3em;
    padding-right: 1.5em;
}

ol ol,
ul ul,
ul ol,
ol ul {
    margin: 0.5em 0;
}

ul,
ol {
    max-width: 100%;
}

li {
    padding-left: 0.3em;
    line-height: 1.6em;
}

li + li {
    margin-top: 0.5em;
}

dt {
    float: left;
    margin: 0 20px 0 0;
    width: 120px;
    color: #daf2fd;
    font-weight: 500;
    text-align: right;
}

dd {
    margin: 0 0 5px 0;
    text-align: left;
}

blockquote {
    margin: 1.5em 0;
    padding: 0 1.6em 0 1.6em;
    border-left: #daf2fd;
}

blockquote small {
    display: inline-block;
    margin: 0.8em 0 0.8em 1.5em;
    font-size: 0.9em;
    opacity: 0.8;
}
/* Quotation marks */
blockquote small:before {
    content: "\2014 \00A0";
}

blockquote cite {
    font-weight: bold;
}
blockquote cite a {
    font-weight: normal;
}

a {
    color: #15171A;
    text-decoration: none;
}

h6 {
    margin-top: 0;
    line-height: 1.15;
    font-family: var(--gh-font-heading, var(--font-sans));
    font-weight: 600;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.01em;
}

h2 {
    margin: 1.5em 0 0.5em 0;
    font-size: 1rem;
    font-weight: 700;
}
@media (max-width: 600px) {
    h2 {
        font-size: 2.3rem;
    }
}

h3 {
    margin: 1.5em 0 0.5em 0;
    font-size: 2.4rem;
    font-weight: 600;
}
@media (max-width: 768px) {
    h3 {
        font-size: 1.7rem !important;
    }
}

h4 {
    margin: 1.5em 0 0.5em 0;
    font-size: 2rem;
}
@media (max-width: 768px) {
    h4 {
        font-size: 1.55rem !important;
    }
}

h5 {
    margin: 1.5em 0 0.5em 0;
    font-size: 2rem;
}

h6 {
    margin: 1.5em 0 0.5em 0;
    font-size: 1.8rem;
}


@media (max-width: 768px) {
    /* Ensure logo stays visible - highest specificity */
    .gh-head-logo img,
    .gh-head-brand img,
    .gh-head .gh-head-brand img,
    .gh-head .gh-head-inner .gh-head-brand .gh-head-logo img,
    .gh-head.compact .gh-head-logo img {
        min-height: 50px !important;
        max-height: 60px !important;
        height: auto !important;
        width: auto !important;
        margin-left: 0 !important;
        object-fit: contain !important;
        display: block !important;
        opacity: 1 !important;
    }
}

/* Target even smaller screens */
@media (max-width: 480px) {
    /* Even higher specificity for smallest screens */
    .gh-head-logo img,
    .gh-head-brand img,
    .gh-head .gh-head-brand img,
    .gh-head .gh-head-inner .gh-head-brand .gh-head-logo img,
    .gh-head.compact .gh-head-logo img {
        min-height: 45px !important;
        max-height: 50px !important;
        width: auto !important;
        opacity: 1 !important;
    }
}

/* Target tiny screens */
@media (max-width: 350px) {
    /* Highest specificity for tiny screens */
    .gh-head-logo img,
    .gh-head-brand img,
    .gh-head .gh-head-brand img,
    .gh-head .gh-head-inner .gh-head-brand .gh-head-logo img,
    .gh-head.compact .gh-head-logo img {
        min-height: 40px !important;
        max-height: 45px !important;
        opacity: 1 !important;
    }
}

.article-header {
    padding-top: 145px !important;
}

.article-title {
    font-size: 4rem !important;
}

/* .posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; 
    padding: 20px;
} */
/* .posts-container {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch; 
    padding: 20px;
    width: 100%;
} */
.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.post-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    /* height: 100%;  */
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* .post-item {
    width: 300px; 
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
} */

.post-item h2 {
    font-size: 20px;
    margin: 10px 0;
}

.post-item a {
    text-decoration: none;
    color: #333;
}

.post-item a:hover {
    color: #007bff;
}

#team {
    padding: 50px 0;
    display: flex;
    top: 0;
    justify-content:flex-start;
    align-items: flex-start;
    align-content: flex-start;
    width: 300%;
    max-width: calc(1920px + 300px); margin: auto; padding: calc(17vw + -6vw);
    /* background-color: #0a0a19; */
}

.team-grid {
    display: flex;
    flex-wrap: wrap; /* Allows multiple rows */
    justify-content: space-between; /* Ensures spacing */
    width: 100%;
    /* max-width: 1200px; */
}

.team-member {
    background: white; /* Ensure visibility */
    border-radius: 20px;
    height: 250px;
    width: 40%; /* 3 items per row */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px; /* Space between rows */
}
.row-one{
    display: flex;
    flex-direction: row;
}
/* Responsive design */
@media (max-width: 1024px) {
    .team-member {
        width: 45%; /* 2 per row */
    }
}

@media (max-width: 600px) {
    .team-member {
        width: 100%; /* 1 per row */
    }
}

/* Fixed Button */
.fixed-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f3c108;
    color: #fff;
    border: none;
    /* padding: 10px 20px; */
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    height: 50px;
    width: 50px;
  }
  
  /* Popup */
  .popup {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 80px; /* Positioned above the button */
    right: 20px;
    width: 25%;
    height: 75%;
    background: linear-gradient(to bottom, #FFF9BD, #FFF58B);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
  }

  .lang-popup {
    display: none; 
    position: fixed; 
    bottom: 80px;
    top: 50%; 
    right: 0px; 
    transform: translate(-50%, -50%); 
    width: 25%; 
    height: 45%; 
    background-color: #f9f9f9; 
    border-radius: 10px; 
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2); 
    z-index: 9999; 
  }

  
  /* Popup Content */
  .popup-content {
    padding: 15px;
  }

  .popup-video {
    background-color: white;
    margin-top: 30px;
    height: 380px;
    border-radius: 10px;
  }
  
  /* Popup styles */
.section-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: linear-gradient(to bottom, #FFF9BD, #FFF58B);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
}

.popup-content {
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.main-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.highlight {
    outline: 3px solid #ff9800; 
}

.top-left-button {
    position: absolute;
    top: 35%; 
    left: 10%;
    background-color: #f3c108; 
    color: #fff;
    border: none;
    height: 50px;
    width: 50px;
    /* padding: 10px 15px; */
    border-radius: 100px;
    cursor: pointer;
    display: none;
}
.sl-icon {
    color: black; 
    font-size:30px !important;
}
@media (max-width: 768px) {
    .top-left-button {
        top: 0% !important;
        height: 40px;
        width: 40px;
    }
    .sl-icon {
        color: black; 
        font-size:20px !important;
    }
}
/* .top-left-button {
    position: absolute;
    top: 35%;
    left: 10%;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #f3c108;  
    background: none;
    border-radius: 100px; 
    cursor: pointer;
} */



/* .top-left-button i {
    position: absolute;
    color: white;
    font-size: 20px;
    top: -40%; 
    left: -40%;
} */

.top-left-button:hover {
    background-color: #f3c108; 
}

.second-section.highlight {
    border: 2px solid #007BFF;
    transition: border 0.3s ease-in-out;
}

/* .sign-language-play-button {
    position: relative;
    cursor: pointer;
    margin: 40px auto;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 60px solid #F3C108;
    transition: transform 0.3s ease;
    z-index: 5;
}

.sign-language-play-button:hover {
    transform: scale(1.05);
}

.sl-icon-container {
    position: absolute;
    left: -40px;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
}

.sign-language-icon {
    width: 100%;
    height: 100%;
}

.sign-language-play-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sign-language-play-button:hover::after {
    opacity: 1;
} */

.sign-language-play-button {
    position: relative;
    cursor: pointer;
    margin: 40px auto;
    width: 0;
    height: 0;
    border: none; /* remove default button styles */
    background: transparent;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 60px solid #F3C108;
    transition: transform 0.3s ease;
    z-index: 5;
    padding: 0;
}

.sign-language-play-button:hover {
    transform: scale(1.05);
}

/* Optional: Remove focus outline unless keyboard navigating */
.sign-language-play-button:focus {
    outline: none;
}

/* Container for the icon inside the triangle */
.sl-icon-container {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style for Font Awesome icon */
.sl-icon-container i {
    font-size: 20px;
    color: black;
}

/* Hover shimmer effect */
.sign-language-play-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sign-language-play-button:hover::after {
    opacity: 1;
}
