﻿:root {
    --default-font: "Neue Haas Unica W1G";
    --heading-font: "Neue Haas Unica W1G";
    --nav-font: "Neue Haas Unica W1G";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #B4974F; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #e5eaee; /* The default color of the main navmenu links */
    --nav-hover-color: #B4974F; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #B4974F;
    ; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Regular.woff2') format('woff2'), url('/fonts/WEB/Tobias-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Bold.woff2') format('woff2'), url('/fonts/WEB/Tobias-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    ont-feature-settings: "ss01"
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-RegularItalic.woff2') format('woff2'), url('/fonts/WEB/Tobias-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-BoldItalic.woff2') format('woff2'), url('/fonts/WEB/Tobias-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Thin.woff2') format('woff2'), url('/fonts/WEB/Tobias-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaRegular/font.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaLight/font.woff2') format('woff2');
    font-weight: 350;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaMedium/font.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaThin/font.woff') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-feature-settings: "ss01";
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f1f4fa;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #000910;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #28323a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}
/*for magnifying glass*/
.magnifier {
    position: relative;
    width: 20px;
    height: 20px;
    font-size: 24px;
    color: var(--contrast-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .magnifier:hover {
        transform: scale(1.3);
    }

    .magnifier .fa-magnifying-glass {
        font-size: 20px;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 0;
    }

.odd {
    background-color: #1A022E;
    padding: 20px 0 0 0;
}

.even {
    background-color: #390B46;
    padding: 20px 0 0 0;
}

.magnifier .question-mark {
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    position: absolute;
    left: 3px;
    top: 3px;
    font-size: 10px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magnifier:hover .question-mark {
    opacity: 1;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: black;
    font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

nav {
    margin-top: -0.5rem;
}

.header .logo {
    line-height: 1;
}

    .header .logo img {
        max-height: 36px;
        margin-right: 5rem;
        margin-left: -1rem;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: var(--heading-color);
    }

.header li .activeLi {
    color: var(--accent-color);
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--accent-color);
    font-size: 12px;
    padding: 4px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    border: 1px solid;
    border-color: var(--accent-color);
    margin-left: 15vw;
    margin-right: 2vw;
    transition: box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    visibility: hidden
}

    .header .cta-btn:hover,
    .header .cta-btn:focus:hover {
        color: var(--accent-color);
        /* background: var(--accent-color); */
        box-shadow: 0 0 0 1px var(--accent-color);
    }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 30vw;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 4;
    }

    .header .magnifier {
        order: 3
    }
}

/* Global Header on Scroll*/
.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    background-color: #390b46;
}

/* Global Header on Scroll
------------------------------*/
/*.scrolled .header {
    --background-color: rgba(57, 11, 70, 0.85)
}*/

@media (max-width: 600px) {
    .header .logo {
        order: 1;
        margin-left: 2vw;
    }

        .header .logo img {
            margin-right: 2rem;
        }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .magnifier {
        order: 3;
    }

    .header .navmenu {
        order: 4;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            font-size: 13px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 100%;
        }


        .navmenu .active,
        .navmenu .active:focus {
            color: #B4974F;
        }



        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .magnifier .fa-magnifying-glass {
        top: -4px;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navmenu a i,
        .navmenu a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        }

            .navmenu a i:hover,
            .navmenu a:focus i:hover {
                background-color: var(--accent-color);
                color: var(--nav-dropdown-hover-color);
            }

        .navmenu a:hover,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-dropdown-hover-color);
        }

            .navmenu .active i,
            .navmenu .active:focus i {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: rotate(180deg);
            }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .magnifier {
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: #390B46;
    font-size: 14px;
    position: relative;
    font-family: "Neue Haas Unica W1G";
}

.footer-padding {
    display: flex;
    flex-direction: column;
    width: 1200px;
}

.footer .footer-top {
    padding: 50px 0 0 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 15px;
}

    .footer .footer-about .logo img {
        max-height: 40px;
        max-width: 100%;
        height: auto;
        margin-top: 2vh;
    }

.footer .footer-about p {
    font-size: 11px;
    color: #B4974F;
    margin-left: 0;
    text-align: right;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
}

    .footer .social-links a:hover {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 12px;
    font-family: Neue Haas Unica W1G;
    color: #fff;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

        .footer .footer-links ul li {
            padding: 5px 0;
        }

        .footer .footer-links ul a {
            color: #B4974F;
            display: inline-block;
            font-size: 13px;
        }

            .footer .footer-links ul a:hover {
                color: white;
            }

.footer .copyright {
    padding: 10px 0;
    border-top: 1px solid #B4974F;
    text-align: center;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
    color: #e5eaee;
}

.footer .copyright2 p,
.footer .copyright2 a {
    font-size: 12px;
    color: white;
    font-family: 'Neue Haas Unica W1G'
}

.footer .copyright2 .row {
    flex-wrap: nowrap;
    display: flex;
}

.footer .copyright2 .d-flex {
    white-space: nowrap;
}

.footer .footer-about .d-flex {
    justify-content: end;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer .footer-links, .footer .footer-about {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer .footer-about p {
        text-align: center
    }

    .footer .copyright2 .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .copyright2 p,
    .footer .copyright2 a {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
    }

    .footer .copyright2 .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-right: 0;
    }

    .footer .logo {
        justify-content: center;
    }
}

.footer h4, li a, p {
    font-family: Neue Haas Unica W1G;
    font-weight: 350
}

.footer h4 {
    font-size: 14px;
    font-weight: 400
}

@media (max-width: 900px) {
    .footer-padding {
        width: 100%
    }

    .footer .footer-about .d-flex {
        justify-content: center;
    }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

    .page-title:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
    }

    .page-title h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

.element {
    color: var(--contrast-color);
    background-color: var(--background-color);
    scroll-margin-top: 90px;
    overflow: clip;
}

    .element h2 {
        margin-top: 2vh;
        font-weight: 300;
        font-size: 36px;
        color: var(--accent-color);
        font-family: CustomiseTobias;
        padding: 0 10px 0 30px;
    }

    .element p {
        color: white;
        padding: 0 10px 0 30px;
        text-align: left;
        font-size: 15px;
        font-weight: 350;
    }


/*.career-detail p,
.career-detail p span {
    font-size: 18px !important;
    font-weight: 350 !important;
    font-family: 'Neue Haas Unica W1G' !important;
}*/

/* Must come after */
/*.career-detail strong {
    font-size: 26px !important;
    font-weight: 300 !important;
    font-family: CustomiseTobias !important;
}*/

.career-detail p,
.career-detail p span, .career-detail span, .career-detail ul, .career-detail li, div[data-wrapper="true"] {
    font-size: 18px !important;
    font-weight: 350 !important;
    font-family: 'Neue Haas Unica W1G' !important;
}

/* Must come after */
    .career-detail strong, .career-detail b, div[data-wrapper="true"] b span,
    div[data-wrapper="true"] strong span, div[data-wrapper="true"] b p,
    div[data-wrapper="true"] strong p {
        font-size: 26px !important;
        font-weight: 300 !important;
        font-family: CustomiseTobias !important;
    }
    div[data-wrapper="true"] img{
        float:none !important;
       

    }
    .horizontal-arrow {
        font-size: 24px;
        cursor: pointer;
        position: relative;
        transition: transform 0.3s ease;
    }

    .horizontal-arrow i {
        font-size: 30px;
        width: 40px;
        cursor: pointer;
        position: relative;
        transition: transform 0.3s ease;
        color: #B4974F;
    }

    .horizontal-arrow:hover {
        transform: translateX(20px);
    }

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
    }

    .newsera .containr {
        margin-left: 0;
        height: max-content
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.header-title1 {
    font-family: CustomiseTobias;
    margin-left: 12vw;
    margin-bottom: 10vh;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.containr {
    color: black
}

.header-title1 h1, .header-title1 h2 {
    font-size: 60px !important;
    font-family: CustomiseTobias;
    font-weight: 300 !important;
    color: white
}

.header-title1 p {
    font-family: CustomiseTobias !important;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h2 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
    }

    .hero p {
        color: white;
        margin: 10px 0 0 0;
        font-size: 24px;
    }




@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* Swiper Container */
.testimonial-content {
    display: flex;
    width: 100%;
    overflow: hidden;
}

    .testimonial-content h2 {
        width: 100%;
        font-size: 35px;
        font-weight: 300;
        font-family: CustomiseTobias;
        color: #390B46;
        ;
    }

    .testimonial-content h3 {
        width: 100%;
        margin-left: 10vw;
        font-weight: 500;
        font-size: 20px;
        font-family: 'Neue Haas Unica W1G';
        color: #390B46;
        padding-right: 20px
    }

    .testimonial-content p, ul {
        font-size: 16px;
        font-family: 'Neue Haas Unica W1G';
        font-weight: 350;
        color: black;
    }

.testimonial-image {
    flex: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: translateY(-100%);
    /*  transition: transform 0.5s ease;*/
    opacity: 0;
}

    .testimonial-image img {
        height: 70vh;
        width: 60vw;
    }

.testimonial-text {
    flex: 4;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    transform: translateX(50%);
    /*transition: transform 0.5s ease;*/
    opacity: 0;
}

.bordr {
    width: 30vw;
    margin-left: -10vw;
    border-bottom-right-radius: 10px;
    border-bottom: 2px solid #B4974F;
    max-width: 100%;
}

.animate-in {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
    transition: all 0.5s ease;
}

.bordr1 {
    width: 280px;
    margin-left: 10vw;
    border-bottom-right-radius: 10px;
    border-bottom: 2px solid #B4974F;
    max-width: 100%;
}

.bordr11 {
    width: 250px;
    margin-left: 10vw;
    border-bottom-right-radius: 10px;
    border-bottom: 2px solid #B4974F;
    max-width: 100%;
}

.bordr2 {
    width: 320px;
    margin-left: 2vw;
    border-bottom-right-radius: 10px;
    border-bottom: 2px solid #B4974F;
    max-width: 100%;
}

.bordr3 {
    width: 200px;
    margin-left: 2vw;
    border-bottom-right-radius: 10px;
    border-bottom: 2px solid #B4974F;
    max-width: 100%;
}

.bordr4 {
    width: 450px;
    margin-left: 2vw;
    border-bottom-right-radius: 10px;
    border-bottom: 2px solid #B4974F;
    max-width: 100%;
}
/* Pagination Circle Size */
.swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #1A022E !important; /* Custom color */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #430AD6 !important; /* Active color */
    transform: scale(1.2); /* Make active bullet bigger */
}

#testimonials {
    padding: 0;
}
/* Medium screens (768px and below) */
@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        height: auto;
    }

    .testimonial-image {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
        max-width: 100%;
        margin-bottom: 20px;
    }

        .testimonial-image img {
            width: 100%;
            max-width: 100%;
            height: 400px;
        }

    .testimonial-text {
        flex: 0 0 auto;
        width: 100%;
        padding: 1rem;
    }

    .swiper-pagination {
        right: 70px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* Small screens (576px and below) */
@media (max-width: 576px) {
    .testimonial-image img {
        width: 100%;
        max-width: 100%;
        height: 240px;
    }

    .testimonial-image {
        height: 240px;
    }

    .bordr {
        width: 300px;
        max-width: 400px;
    }

    .testimonial-text h2 {
        font-size: 1.5rem;
    }
}

.testimonials .swiper-pagination {
    bottom: 20px; /* Adjust as needed */
    right: 0;
    left: auto;
    display: flex;
    gap: 10px; /* Space between bullets */
    justify-content: flex-end;
    z-index: 10; /* Ensure it appears above other content */
}

.init-swiper {
    position: relative; /* Ensure the pagination is positioned relative to this container */
}

.swiper-pagination {
    bottom: 10px; /* Adjust this value as needed */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; /* Center the pagination */
    gap: 10px;
    z-index: 10; /* Ensure it is above other content */
}

.fav {
    height: 10vh;
    margin-top: 2vh;
}

.fav2 {
    height: 15vh;
}

.help-wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    background-color: rgb(0 0 0 / 50%);
    left: 0;
    z-index: -1;
    height: 100%;
}

.help-wrapper .section-heading h1 {
    color: #B4974F;
    font-family: CustomiseTobias;
    font-weight: 300;
    font-size: 60px;
}

.help-wrapper p {
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    font-family: CustomiseTobias;
    width: 75%;
    margin-bottom: 0
}

.help-wrapper .ca-btn {
    font-size: 15px;
    padding: 10px 25px;
    margin: 22px;
    color: white;
    transition: box-shadow 0.3s ease;
    border: 1px solid white;
    border-color: white;
    margin-left: 0vw;
    display: inline-flex;
    align-items: center; /* vertical alignment */
    gap: 6px;
    font-family: Neue Haas Unica W1G
}

.help-wrapper .svg-arrow {
    color: #e5eaee;
}

.help-wrapper .ca-btn:hover,
.help-wrapper .ca-btn:focus:hover {
    color: white;
    padding: 10px 25px;
    box-shadow: 0 0 0 1px white;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.newera h2 {
    font-size: 40px;
    font-weight: 300 !important;
    font-family: CustomiseTobias;
    margin-left: 8vw;
    color: #390B46;
    margin-top: 6vh;
}

.newera h5 {
    font-weight: 300;
    font-family: 'Neue Haas Unica W1G';
    margin-left: 10vw;
    color: black;
    margin-top: 5vh;
}

.newera h4 {
    font-family: 'Neue Haas Unica W1G';
    margin-left: 8vw;
    color: #390B46;
    width: 100%;
    padding-right: 20px;
    font-size: 18px
}

.newera .bordr2 h4 {
    font-family: 'Neue Haas Unica W1G';
    margin-left: 6vw;
    color: #390B46;
    width: 100%;
    padding-right: 20px;
    font-size: 18px
}

.newera .bordr11 h4 {
    margin-left: 6vw;
    color: #390B46;
    width: 100%;
    font-size: 18px;
    font-family: 'Neue Haas Unica W1G';
}

.newera .bordr3 h4 {
    font-family: 'Neue Haas Unica W1G';
    margin-left: 4vw;
    color: #390B46;
    width: 100%;
    padding-right: 20px
}

.newera .cta-btn:hover,
.newera .cta-btn:focus:hover {
    color: #430AD6;
    /* background: var(--accent-color); */
    box-shadow: 0 0 0 1px #430AD6;
}

.newera .cta-btn {
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 25px;
    margin: 0 0 0 30px;
    transition: box-shadow 0.3s;
    border: 1px solid;
    border-color: #430AD6;
    color: #430AD6;
    margin-left: 8vw;
    margin-right: 2vw;
    display: inline-flex;
    align-items: center; /* vertical alignment */
    gap: 6px;
    transition: box-shadow 0.3s ease;
}

.button-arrow,
.ca-btn .button-arrow,
.More-btn .button-arrow,
.btn-sbt .button-arrow {
    font-size: 20px;
    position: relative;
    display: inline-block;
    color: #B4974F;
    overflow: hidden;
    width: 1em; /* fix width so arrows overlap properly */
    height: 1em;
    line-height: 1; /* keeps it centered vertically */
    top: 1px;
    transition: box-shadow 0.3s ease;
}

.More-btn .button-arrow {
    color: #390b46;
}
    /* Default visible arrow */
    .button-arrow::before,
    .ca-btn .button-arrow::before,
    .More-btn .button-arrow::before,
    .btn-sbt .button-arrow::before {
        content: "\f061"; /* right arrow */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        color: currentColor;
        transition: left 0.4s ease-in-out;
    }

    /* Incoming arrow */
    .button-arrow::after,
    .ca-btn .button-arrow::after,
    .More-btn .button-arrow::after,
    .btn-sbt .button-arrow::after {
        content: "\f061"; /* right arrow */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        color: currentColor;
        transition: left 0.4s ease-in-out;
    }

/* On hover – first arrow slides out, new one slides in */
.newera .cta-btn:hover .button-arrow::before,
.help-wrapper .ca-btn:hover .button-arrow::before,
.More-btn:hover .button-arrow::before,
.btn-sbt:hover .button-arrow::before {
    left: 100%;
}

.newera .cta-btn:hover .button-arrow::after,
.help-wrapper .ca-btn:hover .button-arrow::after,
.More-btn:hover .button-arrow::after, .btn-sbt:hover .button-arrow::after {
    left: 0;
}

.btn-container, .btn-container1 {
    height: 30px;
}

.newsera .containr {
    display: flex;
    height: max-content;
    gap: 0;
    width: 80%;
    margin-left: 12vw;
}

.newsera {
    display: flex;
    text-align: center;
}

.newera .bordr3 h4 {
    font-family: 'Neue Haas Unica W1G';
    margin-left: 4vw;
    color: #390B46;
    width: 100%;
}

.containr {
    width: 100%;
    font-family: Neue Haas Unica W1G;
}

    .containr h2 {
        font-family: CustomiseTobias;
        color: #000910;
        font-weight: 300
    }

.left-half {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    padding: 1rem;
    text-align: left;
    padding: 30px;
}

.right-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.sections {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1rem 0;
}

    .sections:last-child {
        border-bottom: none;
    }

.image-container {
    width: 180px;
    height: 200px;
}

.newsimg {
    width: 180px;
    height: 200px;
    object-fit: cover;
    aspect-ratio: 9/10;
}

.text-container {
    flex: 1;
    text-align: left;
}

.date {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0.5rem;
    color: #3B296A;
    font-family: 'Neue Haas Unica W1G'
}

h4 {
    margin: 0.5rem 0;
    font-family: CustomiseTobias;
}

.hover-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    opacity: 1;
    left: 0;
    font-size: 30px;
    color: #B4974F;
}

.arrow {
    transition: transform 0.3s ease;
}

.read-more {
    opacity: 0;
    position: absolute;
    transition: opacity 0.3s ease;
    margin-left 0.3s ease;
    font-size: 12px;
    font-family: Neue Haas Unica W1G;
}

.hover-arrow:hover .arrow, .hero-insight:hover .arrow {
    transform: translateX(38px);
}

.hover-arrow:hover .read-more, .hero-insight:hover .read-more {
    opacity: 1;
    margin-left: -25px; /* Moves "Read More" to the left of the arrow */
}

.hover-arrow:hover, .hero-insight:hover .hover-arrow {
    padding-left: 25px;
}

.svg-wrapper {
    width: 25px;
    height: 25px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.arrows {
    stroke: #B4974F;
    stroke-width: 3;
    fill: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

    /* first arrow: visible initially */
    .arrows.first {
        left: 0;
        opacity: 1;
    }

    /* second arrow: incoming from behind */
    .arrows.second {
        left: -100%;
        opacity: 1;
    }

.header .cta-btn:hover .arrows.first {
    left: 20%; /* slight forward movement */
    opacity: 0; /* fades out */
}

.header .cta-btn:hover .arrows.second {
    left: 0; /* slides in from behind */
}

@media (max-width: 1280px) {
    .newsera .containr {
        width: 100%;
    }

    .img-cont {
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .newsera .containr {
        flex-direction: column;
        height: max-content;
        margin: 0
    }

    .left-half, .right-half {
        width: 100%;
        text-align: center;
    }

    .career-img {
        width: 90%;
    }

    .left-half {
        height: 40vh;
    }

    .sections {
        flex-direction: column;
        /*  align-items: flex-start;*/
    }

        .sections a {
            width: 80%
        }

    .hover-arrow {
        width: auto !important;
    }

    .newsimg {
        text-align: center;
        width: 100%;
        height: 400px;
    }

    .hover-arrow {
        justify-content: center
    }

    .text-container {
        height: auto;
        width: 100%;
        text-align: center
    }

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

    .col-med {
        width: 50%
    }

    .btn-container1 {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .newsimg {
        width: 100%;
        height: 150px;
    }

    .section {
        padding: 2vw;
    }

    .col-med {
        width: 100%
    }

    .career-img {
        width: 85vw !important;
        height: 30vh !important;
        margin-left: -5vw !important;
    }

    .image-container {
        width: 100%
    }

    .newera h1, h2 {
        margin-left: 0;
    }

    .newsera .containr {
        margin-left: 0;
        height: max-content
    }
}



.right-half .section:last-child {
    border-bottom: none;
}

.power-platform-applications-wrapper,
.power-platform-advantages-wrapper,
.power-platform-wrapper {
    padding: 20px 0px;
}

.section-heading {
    max-width: 650px;
    text-align: left;
    margin: 0 auto;
    font-family: 'Neue Haas Unica W1G';
    color: black;
}

.accordian-wrapper {
    max-width: 700px;
    text-align: left;
    margin: 0 auto;
    font-family: 'Neue Haas Unica W1G';
    color: black;
}

.value-wrapper {
    max-width: 99%;
    width: 80%;
    text-align: left;
    margin: 0 auto;
    font-family: 'Neue Haas Unica W1G';
    color: black;
    margin-left: 22vw;
    margin-bottom: 6vh;
}

    .value-wrapper h5 {
        font-weight: 300;
        font-family: CustomiseTobias;
        color: black;
        margin-left: 1vw;
        font-size: 26px;
        margin-bottom: 5vh;
    }

.section-heading h5 {
    font-weight: 300;
    font-family: CustomiseTobias;
    color: black;
    width: 100%;
    font-size: 24px
}

.section-heading h4 {
    font-weight: 300;
    font-family: CustomiseTobias;
    color: black;
}

#about .section-heading h5 {
    font-weight: 300;
    font-family: CustomiseTobias;
    color: black;
    width: 85%;
    font-size: 24px
}

.hover-arrow:hover {
    padding-left: 30px;
}

.svg-arrow {
    width: 25px;
    height: 14px;
    stroke: var(--accent-color);
    fill: none;
    stroke-width: 5;
    stroke-dasharray: 60; /* Total length of the path */
    stroke-dashoffset: 0; /* Show full arrow initially */
    transition: stroke-dashoffset 0.4s ease-in-out;
}

    .svg-arrow:hover {
        stroke-dashoffset: -60; /* Slide effect */
    }

.More-btn:hover .svg-arrow {
    stroke-dashoffset: -60;
}

.btn-sbt:hover .svg-arrow {
    stroke-dashoffset: -60;
}

.btn-intouch:hover .svg-arrow {
    stroke-dashoffset: -60;
}

.cta-btn:hover .svg-arrow, .help-wrapper .ca-btn:hover .svg-arrow {
    stroke-dashoffset: -60;
}

.section-heading p {
    margin-top: 4vh;
    font-weight: 350;
    font-family: 'Neue Haas Unica W1G';
    color: black;
    font-size: 16px;
    width: 90%;
}

.element2 {
    color: var(--contrast-color);
    background-color: var(--background-color);
    scroll-margin-top: 90px;
    overflow: clip;
}

    .element2 h2 {
        font-weight: 200;
        font-size: 80px;
        color: var(--accent-color);
        font-family: CustomiseTobias;
        padding: 10px 10px 0 0px;
    }

    .element2 p {
        margin-top: 0;
        padding: 0 10px 10px 0px;
        text-align: left;
        font-size: 15px;
        font-weight: 500;
        color: black;
        font-family: "Neue Haas Unica W1G";
    }

.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 0 0 10px 30px;
        position: relative;
    }

    .about .content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: var(--accent-color);
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.element3 {
    color: var(--contrast-color);
    background-color: var(--background-color);
    scroll-margin-top: 90px;
    overflow: clip;
    margin-right: 5vw;
    display: flex;
    justify-content: end;
}


/* Wrapper flexbox */
.box-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* minimal space between boxes */
    max-width: 850px; /* optional: control total width */
}

/* Box style */
.value-box {
    flex: 0 0 calc(50% - 5px); /* 2 per row, minus gap */
    height: 300px;
    width: 400px padding: 1rem;
    box-sizing: border-box;
    text-align: left
}

    .value-box:nth-child(1) {
        border-top-left-radius: 10px;
        background-color: #1A022E;
    }

    .value-box:nth-child(2) {
        border-top-right-radius: 10px;
        background-color: #390B46;
    }

    .value-box:nth-child(3) {
        border-bottom-left-radius: 10px;
        background-color: #390B46;
    }

    .value-box:nth-child(4) {
        border-bottom-right-radius: 10px;
        background-color: #1A022E;
    }

.element3 h2 {
    margin-top: 12vh;
    font-weight: 300;
    font-size: 36px;
    color: var(--accent-color);
    font-family: CustomiseTobias;
    padding: 0 0 0 60px;
    margin-left: 0
}

.element3 p {
    font-size: 14px;
    padding: 0 10px 0 60px;
    margin-left: 0;
    font-weight: 350;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .element3 {
        margin-left: 0;
    }

    .value-box {
        flex: 0 0 100%;
    }
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

    .stats .stats-item i {
        color: var(--accent-color);
        font-size: 42px;
        line-height: 0;
        margin-right: 20px;
    }

    .stats .stats-item span {
        color: var(--heading-color);
        font-size: 36px;
        display: block;
        font-weight: 600;
    }

    .stats .stats-item p {
        padding: 0;
        margin: 0;
        font-family: var(--heading-font);
        font-size: 16px;
    }

.starter-section {
    /* Add your styles here */
}

.responsive-cell-block {
    min-height: 75px;
}

.element3 .subpara p {
    font-weight: 350;
    font-family: 'Neue Haas Unica W1G';
    color: black;
    font-size: 16px;
    margin-top: 0;
    padding: 0;
    width: 100%;
    margin-left: 1vw
}

.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.teamsection {
    background-color: #EFEFEF;
}

.outer-container {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    background-color: #EFEFEF;
}

.values {
    padding: 30px;
    margin-left: 7vw;
}

    .values h1 {
        padding: 20px;
        color: #957D4D;
        font-size: 58px;
        font-weight: 300;
        font-family: CustomiseTobias;
    }

.heading-text {
    font-weight: 700;
    font-size: 48px;
    line-height: 35px;
    color: rgb(51, 51, 51);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 32px;
    margin-left: 0px;
    text-align: center;
}

.sub-heading-text {
    max-width: 470px;
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    font-weight: 700;
    color: rgb(102, 102, 102);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 100px;
    margin-left: 0px;
    margin: 0 0 70px 0;
}

.inner-container {
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
    margin-right: 0px;
    margin-left: 7vw;
    width: 100%
}

.inner-container2 {
    flex-direction: column;
    align-items: center;
    margin-right: 0px;
    margin-left: 7vw;
    width: 100%
}

.cards-container {
    max-width: 1320px;
}

    .cards-container h5 {
        font-weight: 300;
        font-family: CustomiseTobias;
        color: black;
    }

.name {
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    color: rgb(102, 102, 102);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.position {
    color: rgb(244, 152, 146);
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.team-member-image {
    height: 310px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.designation {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3B296A;
    font-size: 12px
}

.social-media-icon {
    margin-top: 0px;
    margin-right: 25px;
    margin-bottom: 0px;
    margin-left: 0px;
    cursor: pointer;
    margin: 0 25px 10px 0;
}

.card-container {
    padding-top: 0px;
    padding-right: 25px;
    padding-bottom: 0px;
    padding-left: 25px;
    margin: 0 0 30px 0;
}

@media (max-width: 1024px) {
    .socialMediaIcons {
        margin: 0 20px 10px 0;
    }
}

@media (max-width: 950px) {
    .card-container {
        margin: 0 0 60px 0;
        width: 80%;
    }

    .cards-container {
        flex-direction: column;
        justify-content: center;
    }

    .element3 h2 {
        margin-top: 2vh;
    }

    .values {
        margin-left: 0
    }
}

@media (max-width: 500px) {
    .inner-container {
        padding: 10px 0 10px 0;
    }

    .cards-container {
        padding: 10px 0 10px 0;
    }

    .card-container {
        width: 100%;
        padding: 0 15px 0 15px;
    }

    .outer-container {
        padding: 10px 20px 10px 20px;
    }

    .sub-heading-text {
        font-size: 20px;
        line-height: 25px;
        margin: 0 0 30px 0;
    }

    .heading-text {
        font-size: 22px;
        line-height: 28px;
    }

    .inner-container2 {
        margin-left: 2vh;
    }

    .newera h2 {
        margin-left: 0;
        font-size: 30px
    }
}

.element3 .subheading {
    color: #390B46;
    font-weight: 300;
    font-family: CustomiseTobias;
    margin-top: 3vh;
    margin-bottom: 3vh;
}

.venture-card-text {
    padding-right: 2vh;
}

.element3 .subheading::before {
    content: "";
    width: 14px;
    height: 1.5px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 4px;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 66.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-ipadp-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .wk-tab-12 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }

    .wk-mobile-12 {
        width: 100%;
    }

    .values {
        padding: 30px;
        margin-left: 0;
    }

        .values h1 {
            padding: 20px;
            color: #957D4D;
            font-size: 58px;
            font-weight: 400;
            font-family: CustomiseTobias;
            font-size: 30px;
        }
}

html, body {
    overflow-x: hidden;
}


.Ourapproach {
    width: 100%;
    height: 540px;
    position: relative;
    overflow-x: clip;
}

.approachimage {
    width: 600px;
    height: 500px;
    position: absolute;
    left: 0;
    top: 0;
}

.text-content-wrapper {
    width: auto;
    height: 570px;
    position: absolute;
    left: 557px;
    top: 0;
}

.content-block {
    width: 1023px;
    height: 462px;
    position: absolute;
    top: 85px;
    left: 0;
}

.point-section {
    width: 949px;
    height: 253px;
    position: absolute;
    top: 210px;
    left: 74px;
}

.point-description {
    width: 336px;
    height: 73px;
    position: absolute;
    left: 460px;
    top: 6px;
    color: black;
    font-size: 16px;
    font-family: CustomiseTobias;
    font-weight: 350;
    line-height: 24px;
    word-wrap: break-word;
}



.point {
    display: inline-flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 26px;
    font-family: CustomiseTobias;
    font-weight: 400;
    line-height: 36px;
    color: black;
    position: absolute;
}

.point1 {
    top: 0;
    left: 0;
}

.point2 {
    top: 57px;
    left: 0;
}

.point3 {
    top: 115px;
    left: 0;
}

.point4 {
    top: 173px;
    left: 0;
}

.main-heading {
    width: 581px;
    position: absolute;
    top: 0;
    left: 74px;
    font-size: 36px;
    font-family: CustomiseTobias;
    font-weight: 300;
    line-height: 40px;
    color: black;
    word-wrap: break-word;
}

.tagline {
    padding: 10px 25px 10px 74px;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    border-bottom: 2px solid #B4974F;
    border-bottom-right-radius: 10px;
    width: 250px;
}

.tagline-text {
    font-size: 20px;
    font-family: 'Neue Haas Unica W1G', sans-serif;
    font-weight: 500;
    color: #390B46;
    word-wrap: break-word;
}

@media (max-width: 768px) {

    .text-content-wrapper {
        order: 4;
        position: static;
        width: 100%;
        padding: 10px;
        margin-top: 7vh;
    }
}

@media (max-width: 1024px) {
    .Ourapproach {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        position: static;
        height: auto;
        overflow: visible;
    }

    .tagline {
        order: 1;
        position: static;
        padding: 10px 20px;
        margin-bottom: 10px;
        border-bottom: 2px solid #B4974F;
        border-bottom-right-radius: 10px;
        width: fit-content;
    }

    .approachimage {
        order: 2;
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .main-heading {
        order: 3;
        position: static;
        font-size: 28px;
        margin-bottom: 20px;
        text-align: left;
        max-width: 99%;
    }

    .text-content-wrapper {
        order: 4;
        position: static;
        width: 100%;
        padding: 10px;
    }

    .content-block {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .orders {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        text-align: left;
    }

    .point-section {
        position: static;
        padding-top: 20px;
        width: 100%;
        height: 100%
    }

    .point-description {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        justify-content: center
    }

    .point {
        position: static;
        font-size: 18px;
        padding-left: 15px;
        margin-bottom: 10px;
    }

    .text-content-wrapper {
        order: 4;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
        padding: 10px;
        position: static;
    }
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.flex-60 {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 4vw;
}

.flex-40 {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .flex-60,
    .flex-40 {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .flex-40 {
        margin-top: 20px;
    }

    .help-wrapper p {
        width: 100%
    }

    .help-wrapper .section-heading h1 {
        font-size: 40px;
        width: 100%
    }

    .btn-container {
        height: 80px;
        display: flex;
        justify-content: center
    }
}

.accordion-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}



.accordion-section-header {
    width: 100%;
    height: 80px;
    position: relative;
    cursor: pointer
}

.plus-icon {
    font-size: 23px;
    color: #957D4D;
    position: absolute;
    left: 650px;
    top: 57px;
    cursor: pointer;
    z-index: 10;
}

.accordion-section-text {
    width: 712px;
    position: absolute;
    left: 0;
    top: 0;
    color: #957D4D;
    font-size: 40px;
    font-weight: 300 !important;
    line-height: 50px;
    transition: transform 0.3s ease;
    font-family: CustomiseTobias
}

.career-section-text {
    margin-bottom: 2vh;
    left: 0;
    top: 0;
    color: #390B46;
    font-size: 42px;
    font-weight: 400;
    line-height: 50px;
    transition: transform 0.3s ease;
}

.accordion-section-text, .point2, .point3, .point4 {
    transition: padding-left 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

    .accordion-section-text:hover, .point2:hover, .point3:hover, .point4:hover {
        transform: translateX(15px);
        color: #B4974F;
    }

.accordion-section.open .accordion-section-text,
.accordion-section.open .point2,
.accordion-section.open .point3,
.accordion-section.open .point4 {
    padding-left: 18px;
    transform: none;
    color: #957D4D;
}
    /* Disable hover effect when open */
    .accordion-section.open .accordion-section-text:hover,
    .accordion-section.open .point2:hover,
    .accordion-section.open .point3:hover,
    .accordion-section.open .point4:hover {
        transform: none;
        color: #957D4D;
        /* keep default color */
    }

.accordion-section-divider {
    width: 100%;
    height: 0;
    outline: 1px #957D4D solid;
}

.containerAcc {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 20px;
}

.accordion-content {
    display: none;
    width: 100%;
    color: #333;
    padding: 20px;
    font-weight: 350;
    font-size: 16px;
    height: max-content;
    animation: fadeIn 0.4s ease-in-out;
    transition: height 0.5s ease;
}

.accordion-section.open .accordion-content {
    height: max-content; /* adjust based on your content */
}

.accordion-content p, ul {
    margin-left: 20%;
    color: black
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1024px) {
    .accordion-section-text {
        font-size: clamp(20px, 3.5vw, 36px);
    }
}

@media screen and (max-width: 768px) {
    .accordion-section-text {
        font-size: clamp(18px, 5vw, 28px);
    }

    .career-section-text {
        text-align: center;
    }

    .plus-icon {
        left: auto;
        right: 10px;
        top: 10px;
    }

    .accordion-content {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .accordion-section-text {
        font-size: clamp(16px, 18px, 24px);
        line-height: 1.3;
    }

    .plus-icon {
        font-size: 20px;
        top: 5px;
        right: 5px;
    }

    f

    .containerAcc {
        padding: 10px;
    }

    .accordion-content {
        font-size: 14px;
    }
}

.crval-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    width: 100%;
}

.crval-section-title {
    color: #957D4D;
    font-size: 35px;
    font-family: CustomiseTobias, sans-serif;
    font-weight: 300;
    line-height: 20px;
    text-align: center;
    margin-top: 2vh;
}

.crval-divider {
    width: 100%;
    height: 0;
    outline: 1px solid #957D4D;
    outline-offset: -0.5px;
}

.crval-content-row {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 82px;
    width: 100%;
}

.crval-left-column {
    width: 30%;
    height: 24;
}

.crval-left-column-title {
    font-size: 20px;
    font-weight: 500;
    color: black;
    display: block;
}

.crval-left-column-text {
    font-size: 14px;
    font-weight: 350;
    line-height: 24px;
    color: black;
}

.crval-right-column {
    width: 70%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 64px;
}

.crval-data-row {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    width: 66%;
}

.crval-data-row1 {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}

.crval-data-block {
    width: 336px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.crval-data-value {
    width: 212px;
    font-size: 45px;
    font-weight: 300;
    font-family: CustomiseTobias, sans-serif;
    color: #B4974F;
    text-align: left;
}

.crval-data-description {
    font-size: 16px;
    font-weight: 500;
    color: black;
    word-wrap: break-word;
}
/* Responsive styles */
@media (max-width: 1024px) {
    .crval-content-row {
        flex-direction: column;
        gap: 40px;
    }

    .crval-right-column {
        width: 100%;
        gap: 40px;
    }

    .value-wrapper {
        margin-left: 0;
    }

    .crval-data-row, .crval-data-row1 {
        flex-direction: column;
        gap: 40px;
    }

    .crval-data-block {
        width: 100%;
    }

    .crval-left-column {
        width: 100%;
    }

    .crval-data-value {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .crval-section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .crval-data-value {
        font-size: 36px;
    }

    .crval-left-column-title {
        font-size: 18px;
    }

    .value-wrapper {
        margin-left: 0;
    }

    .crval-left-column-text,
    .data-description {
        font-size: 14px;
    }

    .crval-content-row {
        gap: 32px;
    }

    .crval-right-column {
        gap: 32px;
    }

    .crval-data-row, .crval-data-row1, .venture-section {
        gap: 32px;
        flex-direction: column;
    }

    .venture-card-text {
        width: 350px;
    }
}

@media (max-width: 480px) {
    .crval-section-title {
        font-size: 24px;
    }

    .crval-data-value {
        font-size: 28px;
    }

    .crval-left-column-title {
        font-size: 16px;
    }

    .crval-left-column-text,
    .crval-data-description {
        font-size: 13px;
    }

    .value-wrapper {
        margin-left: 0;
    }

    .crval-data-row, .crval-data-row1, .venture-section {
        gap: 32px;
        flex-direction: column;
    }

    .venture-card-text {
        width: 350px;
    }
}

.venture-description {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-size: 15px;
    font-weight: 200;
    word-wrap: break-word;
}

.venture-section {
    align-self: stretch;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}

.venture-card {
    width: 20%;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

    .venture-card img {
        width: 123px;
        height: 73px;
    }

.venture-card-text {
    align-self: stretch;
    color: black;
    font-size: 15px;
    font-weight: 200;
    line-height: 24px;
    word-wrap: break-word;
}

.venture-vertical-button {
    width: 42px;
    height: 163px;
    position: relative;
    transform: rotate(90deg);
    transform-origin: top left;
    overflow: hidden;
}

    .venture-vertical-button .label {
        position: absolute;
        left: 0;
        top: 26px;
        transform: rotate(-90deg);
        transform-origin: top left;
        color: rgba(0, 0, 0, 0.20);
        font-size: 16px;
        font-weight: 400;
        word-wrap: break-word;
    }

    .venture-vertical-button .white-bar {
        width: 28px;
        height: 122px;
        position: absolute;
        left: 0;
        top: 35px;
        transform: rotate(-90deg);
        transform-origin: top left;
        background: white;
    }

    .venture-vertical-button .dot-container {
        width: 32px;
        height: 32px;
        position: absolute;
        left: 0;
        top: 37px;
        transform: rotate(-90deg);
        transform-origin: top left;
    }

    .venture-vertical-button .dot {
        width: 28px;
        height: 28px;
        position: absolute;
        left: 2px;
        top: 2px;
        background: #B4974F;
    }

.venture-custom-logo {
    width: 154px;
    height: 73px;
    position: relative;
    display: flex;
    gap: 3px;
    top: 2vh;
}

    .venture-custom-logo div {
        position: absolute;
        background: #B4974F;
    }

.venture-reb-title {
    width: 144px;
    height: 73px;
}

    .venture-reb-title span {
        display: block;
    }

    .venture-reb-title .venture-title {
        color: #390B46;
        font-size: 32px;
        font-weight: 500;
        line-height: 48px;
    }

    .venture-reb-title .venture-subtitle {
        color: #390B46;
        font-size: 13px;
        font-weight: 500;
        line-height: 18px;
        font-weight: bold;
    }

    .venture-reb-title .venture-desc {
        color: #390B46;
        font-size: 13px;
        font-weight: 500;
        line-height: 20px;
        font-weight: bold;
    }

/*  for insights*/

.explore-insights-nav {
    margin-bottom: 15px;
    width: 70%;
}

.insights-nav-item {
    cursor: pointer;
    padding: 0 10px;
    font-size: 16px;
    color: black;
    font-weight: 500
}

    .insights-nav-item.active {
        color: #B4974F;
        text-decoration: underline;
    }

    .insights-nav-item:hover {
        color: #B4974F;
    }

.insight-header {
    background-color: #390B46;
}

.insightContainer {
    display: flex;
    justify-content: center;
    font-family: 'Neue Haas Unica W1G';
}

#exp {
    font-size: 18px;
    font-weight: 200;
    color: black
}

.colored-border {
    color: #B4974F;
}

.InsightSection {
    margin-top: 10vh;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 7vw;
    width: 70%;
    margin-top: 4vh;
}

#Insight-layout {
    padding-top: 40px;
}

.hero-insight {
    display: flex;
    gap: 3vw;
    width: 70%;
    margin-top: 4vh;
}

.hero-insight-box {
    box-sizing: border-box;
}

    .hero-insight-box:first-child {
        flex: 0 0 55%;
    }

    .hero-insight-box:last-child {
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 90%
    }

    .hero-insight-box img {
        height: 100%;
        width: 100%;
        border-radius: 6px;
    }

    .hero-insight-box h2 {
        font-size: 45px;
        font-family: CustomiseTobias;
        color: black;
        line-height: 45px;
        font-weight: 300
    }

#insightabout .hero-insight-box:last-child {
    height: 100%;
    width: 100%
}

.hero-insight-box p {
    font-size: 16px;
    font-family: 'Neue Haas Unica W1G';
    color: black;
    font-weight: 350;
}

.insight-box {
    flex: 1 1 calc(33.333% - 7vw);
    max-width: calc(35.333% - 7vw);
    box-sizing: border-box;
    display: block;
}


    .insight-box img {
        height: 200px;
        width: 100%;
        max-width: 280px;
    }

    .insight-box h5 {
        font-family: CustomiseTobias;
        color: black;
        font-weight: 300
    }

.date-category {
    font-weight: 500;
    margin-bottom: 1rem;
    color: #3B296A;
    font-size: 14px;
    margin-top: 2vh
}

.sub-date {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3B296A;
    font-size: 18px;
    margin-top: 2vh
}

@media (max-width: 1024px) {
    .insight-box {
        flex: 1 1 calc(50% - 20px);
        max-width: 100%;
        text-align: center
    }

    .hero-insight {
        flex-direction: column;
    }

    .hero-insight-box {
        flex: 100%;
        text-align: center
    }

    .insight-box img {
        height: 300px;
        width: 100%;
        max-width: 70%;
    }

    .hero-insight-box:first-child {
        flex: 0 0 50%;
    }

    .hero-insight-box:last-child {
        flex: 0 0 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }
}

@media (max-width: 600px) {
    .explore-insights-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .insight-box {
        flex: 1 1 100%;
    }

    .hero-insight {
        flex-direction: column;
    }

    .hero-insight-box {
        flex: 100%;
    }

        .hero-insight-box:first-child {
            flex: 0 0 50%;
        }

        .hero-insight-box img {
            height: auto;
        }

        .hero-insight-box:last-child {
            flex: 0 0 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

    .insight-box img {
        height: 200px;
        width: 100%;
        max-width: 280px;
    }
}


/*  for Careers*/
.hero2 {
    min-height: 65vh;
}

.hero-head2 {
    margin-bottom: 0vh;
}

.accordian-career {
    max-width: 80%;
    text-align: left;
    margin: 0 auto;
    font-family: 'Neue Haas Unica W1G';
    color: black;
}

.career-section-header {
    width: 100%;
    position: relative;
}

.career-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 1200px) {
    .career-description {
        display: flex;
        flex-direction: column; /* Ensures responsive layout */
    }

    .More-btn {
        margin-top: 2vh;
    }
}

@media (max-width: 1000px) {
}

.career-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures responsive layout */
    gap: 20%;
}

    .career-description p {
        flex: 1;
        margin: 0;
    }

/* Update .More-btn to no longer use `left` */
.More-btn {
    position: relative; /* Could be static too */
    border: 1px solid #390B46;
    font-size: 14px;
    padding: 10px 25px;
    font-weight: bold;
    color: #390b46;
    white-space: nowrap; /* Keeps button in one line */
    /* margin-left: 20px;*/ /* Optional spacing */
    font-family: Neue Haas Unica W1G;
    display: inline-flex;
    align-items: center; /* vertical alignment */
    gap: 6px;
    transition: box-shadow 0.3s ease;
}


    .More-btn:hover {
        box-shadow: 0 0 0 1px #390B46;
        /*   padding: 10px 18px;*/
        color: #390B46
    }



.form-section {
    padding: 0;
}

.formcontainer {
    width: 100%;
    font-family: Neue Haas Unica W1G;
    padding: 20px;
    margin-bottom: 10vh;
    font-weight: 350
}

input.form-control,
textarea.form-control, .form-check-input, select.form-control,
input[type="file"] {
    border: 1px solid #957D4D;
    border-radius: 0; /* Updated border color */
}

.form-check-input {
    width: 20px;
    height: 20px;
    transform: scale(1.2); /* Increase the size */
    border-radius: 0;
    margin-top: 2px; /* Adjust alignment */
}

    .form-check-input[type=checkbox] {
        border-radius: 0;
    }

    input.form-control:focus,
    textarea.form-control:focus,
    select.form-control:focus, .form-check-input:checked {
        border-color: #390b46; /* Your desired highlight color */
        outline: none;
        box-shadow: none; /* Optional: remove default browser shadow */
    }

input.form-control,
textarea.form-control,
select.form-control {
    transition: border-color 0.3s ease-in-out;
}

.form-check-input:checked {
    background-color: #390b46; /* Replace with your desired color */
    border-color: #390b46;
}

.btn-sbt {
    border: 1px solid #430AD6;
    font-size: 14px;
    padding: 10px 25px;
    margin-top: 5vh;
    color: #430AD6;
    margin-bottom: 5vh;
    font-family: Neue Haas Unica W1G;
    display: inline-flex;
    align-items: center; /* vertical alignment */
    gap: 6px;
    transition: box-shadow 0.3s ease;
}

    .btn-sbt:hover {
        box-shadow: 0 0 0 1px #430AD6;
        padding: 10px 25px;
    }

.btn-intouch {
    border: 1px solid #430AD6;
    font-size: 18px;
    padding: 8px 16px;
    margin-top: 5vh;
    color: #430AD6;
    margin-bottom: 5vh;
}

    .btn-intouch:hover {
        border: 2px solid #430AD6;
        padding: 10px 18px;
    }

.btncont {
    height: 100px;
}

/* or contacts */

.left-half1 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.right-half1 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-right1, .bottom-right1 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-right1 {
}

.bottom-right1 {
}

.containerContact {
    width: 100%;
    display: flex;
    gap: 60px;
    padding: 20px;
}

    .containerContact h5 {
        font-weight: 400;
        font-family: CustomiseTobias;
        color: #390B46;
        margin-left: 0vw;
        font-size: 25px;
    }

    .containerContact p {
        font-weight: 300;
        font-family: CustomiseTobias;
        font-size: 20px;
    }

.hover-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    font-size: 30px;
    color: #B4974F;
    width: 200px;
    overflow: hidden;
}

.location {
    display: inline-block;
    transition: transform 0.4s ease;
}

.get-dir {
    display: inline-block;
    opacity: 0;
    transform: translateX(-35px);
    transition: transform 0.4s ease, opacity 0.2s ease;
    /* 👆 fade-out happens AFTER sliding finishes */
    font-size: 14px;
    white-space: nowrap;
}

.hover-location:hover .location {
    transform: translateX(130px);
}

.hover-location:hover .get-dir {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.4s ease, opacity 0.2s ease;
    margin-left: -30px
    /* 👆 fade-in happens immediately */
}


@media (max-width: 991.98px) {
    .containerContact {
        flex-direction: column;
        gap: 30px;
        padding: 15px;
    }

    .left-half1, .right-half1 {
        width: 100%;
    }

    .containerContact h5 {
        font-size: 22px;
    }

    .containerContact p {
        font-size: 18px;
    }

    .hover-location {
        font-size: 24px;
    }

    .get-dir {
        left: 8vw;
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .containerContact {
        padding: 10px;
        gap: 20px;
    }

        .containerContact h5 {
            font-size: 20px;
        }

        .containerContact p {
            font-size: 16px;
        }

    .hover-location {
        font-size: 20px;
        width: auto;
    }

    .get-dir {
        left: 7vw;
        font-size: 11px;
    }

    .accordian-career {
        max-width: 100%;
    }
}


/*  for Career-Accountant */
.career-heading h5 {
    font-family: 'Neue Haas Unica W1G';
    color: #390B46;
}

.designation-description ol, p {
    /*  font-family: Neue Haas Unica W1G;*/
}

.career-heading h1 {
    font-family: CustomiseTobias;
    color: black;
    font-size: 60px;
    font-weight: 300;
    width: 80%
}

.designation-description {
    margin-top: 5vh;
    margin-bottom: 4vh;
    width: 80%
}

    .designation-description .designation-bold {
        font-family: CustomiseTobias;
        font-size: 20px;
        font-weight: 300;
        color: black;
    }

.designation-bold-purple {
    font-family: CustomiseTobias;
    font-size: 20px;
    font-weight: 300;
    color: #390B46;
}

.purple-heading {
    font-family: Neue Haas Unica W1G;
    font-size: 18px;
    font-weight: 500;
    color: #390B46;
}

.black-heading {
    font-family: Neue Haas Unica W1G;
    font-size: 18px;
    font-weight: 700;
    color: black;
}

.career-description-heading {
    margin-top: 8vh;
    padding-bottom: 4vh;
}


@media (max-width: 575.98px) {


    .career-heading h1 {
        font-family: CustomiseTobias;
        color: black;
        font-size: 40px;
        font-weight: lighter;
    }

    .hero-insight {
        display: flex;
        gap: 3vw;
        width: 98%;
        margin-top: 4vh;
    }

    .hero-insight-box .hover-arrow:hover .read-more {
        margin-left: -25px;
    }
}

.help-wrapper h2 {
    font-family: CustomiseTobias;
    font-size: 60px;
    font-weight: 200;
    color: #B4974F;
}

.help-wrapper {
    font-family: CustomiseTobias
}

.tobiass {
    font-family: CustomiseTobias;
    font-weight: 200;
    font-size: 60px;
}

h5 {
    font-family: CustomiseTobias
}

.testimonial-text ul {
    margin-left: 0
}

.svg-login-wrapper {
    width: 25px;
    height: 25px;
}

.arrow-group polyline {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.4s ease-in-out;
}

.login-button:hover .arrow-group {
    animation: wiggle 0.4s infinite;
}


.arrow-group polyline {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.4s ease-in-out;
}

/* Slide arrow on button hover */
.login-button:hover .arrow-group polyline {
    stroke-dashoffset: -60;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.login-button {
    padding: 4px 15px !important;
    cursor: pointer;
}


.point-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.pointss {
    cursor: pointer;
    min-width: 300px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.point.active,
.point:hover {
    color: #B4974F;
    transform: translateX(10px);
}

.liness,
.descriptionss {
    display: none;
}

.point-row:hover .liness,
.point-row:hover .descriptionss {
    display: block;
}

.point-row.active .liness,
.point-row.active .descriptionss {
    display: block;
}

.liness {
    width: 60px;
    height: 1px;
    background-color: #B4974F;
    margin-top: 14px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

.descriptionss {
    font-size: 16px;
    color: black;
    max-width: 350px;
    line-height: 22px;
    animation: fadeIn 0.3s ease;
    font-family: 'Neue Haas Unica W1G';
    font-weight: 350
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .point-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .liness {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .pointss {
        min-width: unset;
        font-size: 18px;
    }

    .descriptionss {
        margin-top: 10px;
    }

    .point-description {
        height: 100%;
    }
}

.pointss {
    cursor: pointer;
    min-width: 300px;
    transition: transform 0.4s ease, color 0.4s ease;
}


.point.active .pointss {
    color: #B4974F;
    transform: translateX(10px);
}


.liness,
.descriptionss {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.point-row.active .liness,
.point-row.active .descriptionss {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.insight-btn {
    height: 40px;
    width: 100px;
    font-size: 13px;
    font-weight: 400;
    margin-left: 15vw
}


/*New Css*/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    border: 5px solid #f3f3f3; /* Light gray background track */
    border-top: 5px solid #B4974F; /* Gold color for the spinning part */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loader-content {
    display: flex;
    flex-direction: column; /* Stack spinner above text */
    align-items: center; /* Center align text */
    gap: 12px; /* Space between spinner and text */
}

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

    100% {
        transform: rotate(360deg);
    }
}

#userCreatedAlert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 15px;
    background: #B4974F;
    color: black;
    /*    border: 1px solid #c3e6cb;*/
    border: 1px solid #9cc89d;
    border-radius: 4px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*Login Popover Css*/
.popover {
    background-color: rgba(255, 255, 255, 0.6); /* white with 80% opacity */
    color: #333; /* dark text for readability */
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: var(--nav-font);
}

    /* Popover arrow matches the background */
    .popover.bs-popover-bottom .popover-arrow::before {
        border-bottom-color: rgba(180, 151, 79, 0.75);
    }

/* Optional: padding and rounded corners */
.popover-body {
    padding: 10px 15px;
    border-radius: 6px;
}

/*If User Content not available for logged-in user*/
.no-user-content {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    margin-left: 250px;
    font-family: var(--nav-font);
}

.no-content-image {
    width: 90%;
    height: 80%;
}

/*Error Page Css*/
.error-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: url('/images/london-bg.jpg') no-repeat center center/cover; */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
}

.error-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
}

.error-title {
    font-size: 100px;
    font-weight: bold;
    color: #fff;
}

.error-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: black;
    font-family: var(--nav-font);
}

.error-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: black;
    font-family: var(--nav-font);
}

.error-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    background-color: #390b46;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

    .error-btn:hover {
        background: #5c0f7a;
    }


.no-content {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center; /* centers vertically */
    /*min-height: 40vh;*/ /* full viewport height */
    text-align: center; /* centers text below image */
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 5px 0;
    padding-top: 5px; /* keep small space at top */
    padding-bottom: 0; /* remove/reduce space at bottom */
}

    .no-content img {
        display: block;
        margin: 0 auto 10px auto; /* remove extra spacing */
        max-height: 200px; /* control image height */
    }

.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* semi-transparent dark overlay */
    z-index: -1; /* pushes it behind text */
}

.error-image {
    background: White;
    mix-blend-mode: multiply;
}

@media screen and (min-width: 1720px) {
    .header-title1 h1, .header-title1 h2, .help-wrapper .section-heading h1,
    .values h1 {
        font-size: 80px !important;
    }

    .hero p {
        font-size: 30px !important;
    }

    .element h2, .testimonial-content h2, .containr h2, .main-heading, .crval-section-title {
        font-size: 42px !important;
        line-height: 50px
    }

    .newera h2 {
        font-size: 50px !important;
        margin-left: 10vw !important;
    }

    .section-heading {
        max-width: 750px !important;
    }

    #governance .section-heading {
        max-width: 800px
    }

    .section-heading h5, .help-wrapper p, .point {
        font-size: 26px !important;
    }

    .element2 h2 {
        font-size: 100px !important;
    }

    .element2 p {
        font-size: 20px !important
    }

    .header-title1 {
        margin-left: 12vw;
    }

    .element p, .newera .cta-btn,
    .testimonial-content p, ul,
    .containr h2, .help-wrapper .ca-btn, .element3 p,
    .element3 .subpara p,
    accordion-section p,
    .testimonial-content p, ul, .venture-description, .hero-insight-box p, .insights-nav-item, .More-btn, .designation-description ol, p {
        font-size: 18px;
    }

    .newera .cta-btn {
        margin-left: 10vw;
    }

    #Privacy .black-heading {
        font-size: 20px !important;
    }

    #Privacy .designation-bold-purple {
        font-size: 30px !important;
    }

    .container-xl, .container {
        max-width: 1700px
    }

    .header .logo img {
        max-height: 50px;
        margin-right: 7rem;
        margin-left: 2rem
    }

    .navmenu a, .navmenu a:focus, .header .cta-btn, .header .cta-btn:focus {
        font-size: 16px
    }

    .horizontal-arrow i, .arrow i {
        font-size: 36px
    }

    .read-more, .crval-left-column-text, .date-category, .get-dir {
        font-size: 16px;
    }

    .hover-arrow:hover .arrow, #insightabout .hero-insight:hover .arrow {
        transform: translateX(58px) !important;
    }

    .date, .footer h4, .designation {
        font-size: 16px;
        font-weight: 500
    }

    .footer .footer-links ul a, .footer .copyright2 p, .footer .copyright2 a, .footer .credits,
    .descriptionss {
        font-size: 16px;
        font-weight: 400
    }

    #our-approach .descriptionss {
        font-weight: 350 !important
    }

    .footer .credits, .venture-card-text {
        font-size: 16px;
        font-weight: 350
    }

    .button-arrow, .ca-btn .button-arrow, .More-btn .button-arrow, .btn-sbt .button-arrow {
        font-size: 25px
    }

    text-container h4, .section-heading h4, .cards-container h5, .designation-bold-purple {
        font-size: 26px
    }

    .footer-padding {
        width: 1450px
    }

    .footer .footer-about p {
        font-size: 14px;
    }

    .footer .footer-about .logo img {
        max-height: 50px;
    }

    .approachimage {
        width: 699px;
        height: 600px
    }

    .text-content-wrapper {
        left: 675px
    }

    .liness {
        width: 150px
    }

    .box-wrapper {
        max-width: 1072px
    }

    .value-box {
        height: 371px
    }

    .element3 h2 {
        font-size: 0;
        margin-left: 0 !important;
        margin-top: 10vh
    }

    .team-member-image {
        height: 420px;
        width: 336px
    }

    .cards-container {
        max-width: 1450px
    }

    .bordr2 {
        width: 320px
    }

    #governance .element3 {
        margin-right: 0
    }

    .plus-icon {
        left: 750px;
    }

    .accordion-section-text {
        font-size: 42px;
        font-weight: 400
    }

    #investing .newera h2 {
        margin-left: 0;
        font-weight: 400
    }

    #investing .containerAcc {
        max-width: 827px;
    }

    .accordian-wrapper {
        max-width: 900px
    }

    .accordion-content {
        font-size: 18px;
        padding-left: 10px
    }

    .crval-data-value {
        font-size: 60px;
        font-weight: 300
    }

    .crval-left-column {
        width: 28%;
    }

    .crval-right-column {
        width: 700px
    }

    #approach .accordion-section {
        width: 1080px
    }

    #insightabout .hero-insight-box img {
        width: 700px;
        height: 500px;
    }

    .sub-date {
        font-size: 20px;
        font-weight: 500
    }

    .hero-insight-box h2, .career-section-text {
        font-size: 50px;
        line-height: 50px
    }

    .insight-box img {
        height: 212px;
        max-width: 336px
    }

    .insight-grid {
        gap: 140px
    }

    .insight-box h5 {
        font-size: 30px;
        font-family: CustomiseTobias;
        color: black
    }

    #about .value-wrapper h5 {
        font-weight: 300
    }

    .career-description p, .containerContact p {
        font-size: 20px;
        font-weight: 300
    }

    .newera h5 {
        width: 870px;
        font-size: 26px;
        font-weight: 300;
        font-family: CustomiseTobias
    }

    .form-label, label {
        font-size: 16px !important
    }

    .btn-sbt {
        font-size: 18px;
        font-weight: 500px
    }

    #contacts .container {
        width: 1320px
    }

    #contacts .newera h2 {
        margin-left: 0 !important;
        font-size: 42px !important
    }

    #contacts .accordian-career {
        max-width: 100%
    }

    #contacts .newera h5 {
        font-size: 30px;
        font-weight: 300
    }

    .left-half1 {
        width: 50%
    }

    ..formcontainer {
        width: 90%
    }

    .newera h4, .newera .bordr11 h4 {
        margin-left: 7vw;
        font-size: 20px !important;
    }

    .career-heading h1 {
        font-size: 80px;
        font-weight: 300;
        width: 70%
    }

    .designation-description .designation-bold {
        font-size: 26px;
    }

    .bordr4, .bordr, .bordr1, .bordr2 {
        width: max-content
    }

    ol, li {
        font-size: 18px
    }

    #Privacy .accordian-career {
        width: 90%;
    }

    #purple {
        font-size: 30px !important
    }


    .form .formcontainer {
        width: 90%
    }

    .containr {
        margin-left: 16vw !important
    }

    .flex-row {
        margin-left: 5vw;
    }

    .help-wrapper p {
        padding-top: 13vh
    }

    .help-wrapper {
        padding: 7vh 0 7vh 0
    }

    .btn-container {
        margin-bottom: 6vh
    }

    .header .cta-btn,
    .header .cta-btn:focus {
        font-size: 16px;
        font-weight: 400;
        padding: 8px 15px 8px 15px !important
    }

    .con {
        margin-left: 1vw
    }

    .More-btn {
        font-weight: 500;
    }

    .hero-insight {
        width: 63%
    }

    #Insight-layout .insightContainer {
        margin-left: 4vw
    }

    .form {
        margin-left: 2vw;
    }

    .career-description-heading .formcontainer {
        margin-left: 2vw;
    }

    .career-heading h5 {
        font-size: 20px;
        font-weight: 500
    }

    .right-half h4 {
        font-size: 26px;
        color: black !important
    }

    .right-half {
        flex: 0 0 40%
    }

    .left-half p {
        font-weight: 350
    }

    .header .logo img {
        margin-left: 0rem;
        margin-right: 6rem
    }

    #approach .newera h2, #opportunities .newera h2 {
        margin-left: 13vw !important;
    }
}

.bordr, .bordr1, .bordr11, .bordr2, .bordr3, .bordr4 {
    width: max-content;
}

#read_insight .formcontainer {
    margin-bottom: 2vh !important
}

#insightabout .hero-insight img {
    transition: transform 0.4s ease-in-out;
}

#insightabout .hero-insight:hover img {
    transform: scale(1.1); /* zoom in 10% */
}

#insightabout .hero-insight-box {
    overflow: hidden; /* keeps image inside box */
    display: inline-block; /* keeps it neat */
}

.right-half h4 {
    font-weight: 300 !important
}

.career-detail ul {
    margin-left: 0% !important
}

.career-detail li strong, .career-detail li b {
    font-size: 18px !important;
    font-weight: 500 !important;
    font-family: 'Neue Haas Unica W1G' !important;
}
