html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: relative;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.logo img {
    height: 50px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.language img {
    height: 20px;
}

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

.about-us {
    text-align: center;
    padding: 40px 20px;
}

.services,
.main-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.service {
    text-align: center;
}

.service img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.service h2 {
    margin-top: 10px;
    font-size: 16px;
}

.subsidiaries_home ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    animation: slideInFromLeft 1s ease-out;
}

.subsidiaries_home ul li {
    margin-right: 20px;
}

.subsidiaries_home ul li a img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.subsidiaries_home ul li a img:hover {
    transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* About Us Section */
.about_us {
    padding: 15px 0;
    text-align: inherit;
    background: linear-gradient(135deg, #e88484, #ffffff, hsl(177, 45%, 76%));
    background-size: 200% 200%;
    animation: gradientAnimation 8s ease infinite;
    color: #fff;
}

/* Animation Keyframes */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Optional Media Query for Mobile Adjustments */
@media (max-width: 768px) {
    .about_us {
        padding: 10px 0;
    }
}
.about_us h3 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    height: 35px;
    margin-bottom: 30px;
}

.about_us_separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.about_us_separator span {
    display: block;
    width: 50px;
    height: 4px;
    background-color: #d71212;
    margin: 0 3px;
}

.about_us_separator span:first-child,
.about_us_separator span:last-child {
    width: 20px;
    background-color: #000000;
}

.about_us p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

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

.about_us ul li {
    font-size: 18px;
    color: #007bff;
    margin-bottom: 10px;
}

.about_us ul li i {
    color: #007bff;
    margin-right: 10px;
}

.read_more_button {
    display: inline-block;
    padding: 10px 12px;
    background-color: #007bff;
    color: #fff;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.read_more_button:hover {
    background-color: #141313;
    color: #e0d8d8;
}

.about_us_image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 35px;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .about_us h3 {
        font-size: 28px;
    }

    .about_us p,
    .about_us ul li {
        font-size: 16px;
    }

    .read_more_button {
        padding: 10px 15px;
    }

    .about_us_image {
        margin-top: 20px;
        width: 100%;
        height: auto;
    }

    .row {
        flex-direction: column-reverse;
    }
}

/* General Container and Section Styling */
.service_area_section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.service_area_section .section-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 40px;
    border-bottom: 2px solid #ff0000;
    display: inline-block;
    padding-bottom: 10px;
}

/* Card Row: Flex Layout for Modern Grid Look */
.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Card Column Styling */
.card-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popular Card Styling */
.popular-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.popular-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Heading within Card */
.popular-card .heading {
    font-size: 2.25rem;
    font-weight: bold;
    color: #9b1515;
    margin: 15px 0;
}

/* Card Image Styling */
.popular-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-card:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service_area_section .section-title {
        font-size: 2.3rem;
    }

    .popular-card img {
        height: 180px;
    }

    .popular-card .heading {
        font-size: 1.8rem;
    }
}

/* ....... */


/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* section 5 */
/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h3 {
    font-size: 40px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
}

/* Section5 Styles */
.section5 {
    padding: 50px 0;
    background-color: #ffffff;
}

.container5 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section5_block {
    padding: 20px;
    background-color: #c4e4f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.section5_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.img-container {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.img-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    display: block;
    width: 100%;
}

.img-container img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section5_block {
        margin-bottom: 20px;
    }

    h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section5 {
        padding: 30px 0;
    }

    .section5_block {
        padding: 15px;
    }

    h3 {
        font-size: 20px;
    }
}

/* .section5 {
    padding: 50px 0;
    background-color: #dcdcdc;
}

.container5 {
    max-width: 1200px;
    margin: 0 auto;
}

.section5_block {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.section5_block:hover {
    transform: scale(1.05);
}

.section5_block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1b4152;
    font-weight: 700;
}

.section5_block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section5_block img:hover {
    filter: brightness(0.9) contrast(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} */


/* ------------------------------------------ */

/* General brand styling logo header */
.navbar-brand img {
    width: auto;
    /* Allows the width to adjust based on the height */
    max-height: 60px;
    /* Adjust max-height as needed */
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    height: 55px;
    /* Ensure the navbar height accommodates the brand image */
}

/* For larger screens (desktops) */
@media (min-width: 768px) {
    .navbar-brand img {
        max-height: 70px;
        /* Increase max-height for larger screens if needed */
    }

    .navbar-brand {
        height: 80px;
        /* Adjust navbar height accordingly */
    }

    /* Center the brand in the navbar */
    .navbar>.container .navbar-brand,
    .navbar>.container-fluid .navbar-brand {
        margin-left: 0;
        text-align: center;
        display: block;
        width: 100%;
        /* Ensure the brand is centered in the container */
    }

    /* Additional adjustments if the brand logo needs to be pushed down slightly */
    .navbar-brand {
        top: -2px;
        position: relative;
    }
}

/* For smaller screens (mobile) */
@media (max-width: 767px) {
    .navbar-brand img {
        max-height: 60px;
        /* Ensure it fits well in the mobile navbar */
    }

    .navbar-brand {
        height: 65px;
        /* Adjust the height to fit the brand image */
        text-align: left;
        /* Align the brand to the left on mobile */
        margin-left: 0;
    }
}


/* -----------------nav bar settings filter--------------------- */

.filter {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.192);
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.021);
    transition: all 0.3s;
}

.filter svg {
    height: 16px;
    fill: rgb(77, 77, 77);
    transition: all 0.3s;
}

.filter:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.11);
    background-color: rgb(59, 59, 59);
}

.filter:hover svg {
    fill: white;
}


/* -------------------Read More------------------- */
.about_us .read_more_button {
    display: inline-block;
    margin-top: 20px;
    /* Adjust the top margin as needed */
    padding: 10px 20px;
    background-color: #007bff;
    /* Button background color */
    color: #fff;
    /* Button text color */
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    /* Center the text inside the button */
}

.about_us .read_more_button:hover {
    background-color: #540000;
    /* Darker shade on hover */
}



/* For mobile devices: Ensure the button is full-width if needed */
@media (max-width: 768px) {
    .about_us .read_more_button {
        width: 50%;
        text-align: center;
        /* Center text on smaller screens */
    }

    .about_us .col-md-6 {
        justify-content: center;
        /* Center align content vertically on small screens */
        align-items: center;
        /* Center align content horizontally on small screens */
    }
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.social-link svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
    /* Default color */
    margin: 0 15px;
    transition: color 0.3s;
}

.social-link svg:hover {
    color: #ff0f0f;
    /* Red color on hover */
}

/* Mobile View */
@media (max-width: 768px) {
    .social-link svg {
        width: 24px;
        height: 24px;
    }
}


/* Container and Section Values */
.values-section {
    padding: 50px 20px;
    background-color: #cecbcb;
    text-align: center;
}

.container-values {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

/* Value Points */
.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.value-point p {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-point p strong {
    color: #007bff;
}

/* Hover effect */
.value-point p:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile View */
@media (max-width: 768px) {
    .values-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.4rem;
        margin-bottom: 60px;
        text-align: center;
    }

    .value-point p {
        font-size: 1.4rem;
    }
}


/* -----PORTFOLIO------- */
.portfolio-section {
    position: relative;
    padding: 60px 20px;
    color: #fff;
    background-image: url('./Images/Home/bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(249, 243, 243, 0.305);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.portfolio-section .container {
    position: relative;
    z-index: 2;
}

.portfolio-title {
    font-size: 36px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 20px;
}

.portfolio-intro {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    max-width: 850px;
    margin: 0 auto 40px auto;
}

.portfolio-summary,
li {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}

.portfolio-container {
    display: flex;
    gap: 20px;
}

.portfolio-box {
    background: rgba(190, 188, 188, 0.8);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.standard-heading {
    font-size: 24px;
    color: #e93443;
    margin-bottom: 15px;
}

.portfolio-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.portfolio-list li {
    font-size: 16px;
    line-height: 1.6;
}

.portfolio-summary {
    font-size: 16px;
    max-width: 900px;
    margin: 20px auto 0 auto;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 28px;
    }

    .portfolio-intro,
    .portfolio-summary {
        font-size: 14px;
    }

    .portfolio-services h3,
    .portfolio-trading h3 {
        font-size: 20px;
    }

    .portfolio-container {
        flex-direction: column;
        gap: 20px;
    }
}



/* ---------------------------- */
.contact-info-section {
    padding: 40px 20px;
    background-color: #f6f6f6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact-details {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.contact-box p{
 color: #000;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 20px 10px;
    }

    .contact-heading {
        font-size: 1.3rem;
    }

    .contact-details {
        font-size: 0.9rem;
    }
}