
body {
    background: #2e2e2e;
    background: radial-gradient(circle at center, 140deg, rgb(0, 0, 0) 15%, rgb(61, 190, 21) 20%, rgb(0, 0, 0) 25%);
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 200vh;
    overflow-x: hidden;
    color: white;
    font-family: 'newfont' !important;
    /* Fallback font family */
}

.navbar {
    position: absolute;
    top: 15px;
    width: 98%;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
}

.navbar a {
    color: white;
}

.navbar a:hover {
    color: #198754 !important;
    font-weight: bold;
    z-index: 999;
}

@media (max-width: 480px) {
    .navbar {
        width: 100%;
        left: 0;
        transform: none;
    }
}
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 10px;
}

.hero-text,
.hero-stats {
    max-width: 45%;
    text-align: left;
}

h1 {
    text-align: left;
    margin: 0;
}

.hero-title {
    font-size: 6vw;
    background: linear-gradient(to right, rgb(188, 218, 18), rgb(3, 235, 99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 3vw;
    margin: 0;
    padding: 0;
}

.hero-description {
    font-size: 1.5vw;
    margin: 0.5rem 0 0 0;
    text-align: justify;
    line-height: 1.2;
}

.hero-stats h1 {
    font-size: 4vw;
}

.hero-stats h4 {
    font-size: 1.5vw;
}

.hero-stats>div {
    margin-bottom: 1rem;
}

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

    .hero-text,
    .hero-stats {
        max-width: 100%;
    }

    .hero-title {
        font-size: 10vw;
    }

    .hero-subtitle {
        font-size: 6vw;
    }

    .hero-description {
        font-size: 3vw;
    }

    .hero-stats h1 {
        font-size: 8vw;
    }

    .hero-stats h4 {
        font-size: 3vw;
    }

    .hero-stats>div {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 8vw;
    }

    .hero-subtitle {
        font-size: 5vw;
    }

    .hero-description {
        font-size: 3.5vw;
    }

    .hero-stats h1 {
        font-size: 6vw;
    }

    .hero-stats h4 {
        font-size: 3vw;
    }
}

span {
    text-align: center;
    color: #8815d8;
    display: block;
    /* margin-bottom: 40px; */
    font-size: 18px;
    letter-spacing: 4px;
}

ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    mask: linear-gradient(90deg, #0000, #000, 5, 95%, #0000);
    -webkit-mask: linear-gradient(90deg, #0000, #000, 5, 95%, #0000);
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

ul>li {
    grid-area: 1/1;
    animation: infiniteScroll 20s linear infinite;
    font-size: 50px;
    -webkit-text-stroke: 1px #bdbdbd;
    color: transparent;
    font-size: 120px;
}

ul>li:nth-child(2) {
    animation-delay: calc(-0.1428 * 20s);
}

ul>li:nth-child(3) {
    animation-delay: calc(-0.2857 * 20s);
}

ul>li:nth-child(4) {
    animation-delay: calc(-0.4285 * 20s);
}

ul>li:nth-child(5) {
    animation-delay: calc(-0.5714 * 20s);
}

ul>li:nth-child(6) {
    animation-delay: calc(-0.7142 * 20s);
}

ul>li:nth-child(7) {
    animation-delay: calc(-0.8571 * 20s);
}

ul.alt li {
    animation-direction: reverse;
}

@keyframes infiniteScroll {
    14.28% {
        transform: translate(-100%);
    }

    14.29% {
        transform: translate(600%);
    }
}

.carousel {
    width: 100%;
    overflow-x: hidden;
    padding: 30px;
    padding-top: 80px;
    position: relative;
    box-sizing: border-box;
}

.carousel__container {
    white-space: nowrap;
    height: 400px;
    margin: 70px 0px;
    padding-bottom: 10px;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel__container::-webkit-scrollbar {
    display: none;
}

.categories__title {
    color: #198754;
    font-size: 28px;
    position: absolute;
    padding-left: 30px;
}

.carousel-item {
    width: 200px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 100px;
    margin-top: 70px;
    display: inline-block;
    cursor: pointer;
    
    position: relative;
    flex: 0 0 auto;
}

.carousel-item__img {
    width: 200px;
    height: 250px;
    object-fit: cover;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
   
}

.modal-content {
    display: block;
    max-width: 50%;
    max-height: 80%;
    margin: 100px;
    margin: auto auto;
    top: 150px;
}
@media (max-width: 576px) {
    .modal-content {
        display: block;
        max-width: 100%;
        max-height: 80%;
        margin: 100px;
        margin: auto auto;
        width: 250px;
        height: 300px;
        top: 200px;
       
    }
}


.close {
    position: fixed;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}


.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.carousel-item:hover~.carousel-item {
    transform: translate3d(100px, 0, 0);
}



.carousel__container:hover .carousel-item:hover {
    transform: scale(1.5);
    opacity: 1;
}

/* Members */
figure {
    width: 100%;
    aspect-ratio: 8 / 5;
    transition: background 0.2s;
    background:
        radial-gradient(circle at top left, var(--accent), transparent 75%),
        var(--bg);
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 2px solid #2ecc71;
}

figure:after {
    content: "";
    position: absolute;
    width: 20%;
    aspect-ratio: 1;
    border-radius: 50%;
    bottom: 0%;
    left: 10%;
    background: linear-gradient(-65deg, var(--bg) 50%, var(--accent) 50%);
    filter: blur(25px);
    transform: translateX(calc(var(--hover) * 15%)) scale(calc(1 + (var(--hover) * 0.2)));
    transition: transform 0.2s, background 0.2s;
}

.members {
    position: absolute;
    left: 20%;
    top: 15%;
    width: 40%;
    transform: translateX(calc(var(--hover) * -15%)) scale(calc(1 + (var(--hover) * 0.2)));
    transition: transform 0.2s;
}

article figure {
    --hover: 0;
}

article figure:hover {
    --hover: 1;
}

/* Additional Styles */
.size-1 {
    width: 75% !important;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 25px;
}

.text-1 {
    font-size: 150px;
    background: linear-gradient(to right, rgb(188, 218, 18), rgb(3, 235, 99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-2 {
    font-size: 60px;
}

.title {
    color: #198754;
    font-size: 100px;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
}

.subtitle {
    color: white;
    font-size: 80px;
    margin-left: 20px;
    margin-top: 5px;
}

.comma {
    font-size: 60px;
    margin-left: 5px;
}

.company-text {
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
}

.additional-text {
    color: white;
    font-size: 20px;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.info {
    color: white;
    font-size: 24px;
    margin-top: 10px;
    margin-left: auto;
}

.info p {
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .info {
        margin-top: 20px;
    }
}

/* Responsive Design for Our Vision and Our Mission */
.hero-title {
    font-size: 4vw;
}

.hero-description {
    font-size: 1.5vw;
    margin: 0.5rem 0 0 0;
    text-align: justify;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 6vw;
    }

    .hero-description {
        font-size: 3vw;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 8vw;
    }

    .hero-description {
        font-size: 4vw;
    }
}

.bg-dark {
    padding: 2rem;
}

/* Specific styling for the given part */
ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    mask: linear-gradient(90deg, #0000, #000, 5, 95%, #0000);
    -webkit-mask: linear-gradient(90deg, #0000, #000, 5, 95%, #0000);
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

ul>li {
    grid-area: 1/1;
    animation: infiniteScroll 20s linear infinite;
    font-size: 50px;
    -webkit-text-stroke: 1px #bdbdbd;
    color: transparent;
    font-size: 90px;
}

ul.alt li {
    animation-direction: reverse;
}

@keyframes infiniteScroll {
    14.28% {
        transform: translate(-100%);
    }

    14.29% {
        transform: translate(600%);
    }
}

/* Ensure h1 is centered and styled */
.container-fluid.mt-5>h1 {
    font-size: 150px;
    background: linear-gradient(to right, rgb(188, 218, 18), rgb(3, 235, 99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 20px 0;
}

@media (max-width: 768px) {
    ul>li {
        font-size: 30px;
    }

    .container-fluid.mt-5>h1 {
        font-size: 100px;
    }
}

@media (max-width: 576px) {
    ul>li {
        font-size: 20px;
    }

    .container-fluid.mt-5>h1 {
        font-size: 50px;
        /* Adjusted to be smaller for small screens */
    }
}

/* Additional styles to make Our Vision and Our Mission sections equal height */
.vision-mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.col-12.col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-text {
    font-size: 20px;
    /* Equivalent to fs-5 for mobile */
    background: linear-gradient(to right, rgb(188, 218, 18), rgb(3, 235, 99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
    .custom-text {
        font-size: 3rem;
        /* Equivalent to fs-1 for desktop */
    }
}



/* branch */


/* Styles for the Branch section */
.container.d-flex.justify-content-center.align-items-center.my-5 {
    flex-wrap: wrap;
}

.card {
    width: 195px;
    height: 285px;
    background: whitesmoke;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.2s ease-in-out;
    position: relative;
    margin: 10px;
}

.img {
    width: 120px;
    /* Updated width */
    height: 120px;
    /* Updated height */
    background: url('/web/assets/image/logo1.png') no-repeat center center;
    /* Add your image */
    background-size: cover;
    /* Cover the entire area */
    border-radius: 50%;
    /* Keep it circular */
    transition: 0.2s ease-in-out;
    z-index: 1;
}


.textBox {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.2s ease-in-out;
    z-index: 2;
}

.textBox>.text {
    font-weight: bold;
}

.textBox>.head {
    font-size: 20px;
}

.textBox>.price {
    font-size: 17px;
}

.textBox>span {
    font-size: 12px;
    color: #000;
}

.card:hover>.textBox {
    opacity: 1;
}

.card:hover>.img {
    width: 150px;
    height: 150px;
    filter: blur(7px);
    animation: anim 3s infinite;
}

@keyframes anim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.card:hover {
    transform: scale(1.04) rotate(-1deg);
}

@media (max-width: 768px) {
    .card {
        width: 150px;
        height: 220px;
    }

    .img {
        width: 80px;
        height: 80px;
    }

    .textBox>.head {
        font-size: 18px;
    }

    .textBox>.price {
        font-size: 15px;
    }

    .textBox>span {
        font-size: 10px;
    }
}


/* fotter */
.icon-wrapper {
    display: inline-block;
    border-radius: 10px;
    padding: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT FOR ICON WRAPPER */
.icon-wrapper:hover {
    background-color: #cccccc; /* DARK BACKGROUND COLOR */
    transform: scale(1.1); /* SCALE UP ICON */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* SHADOW EFFECT */
}

/* CSS FOR SOCIAL ICONS */
.social-icon {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

/* HOVER EFFECT FOR SOCIAL ICONS */
.icon-wrapper:hover .social-icon {
    opacity: 0.9; /* SLIGHTLY LESS OPAQUE */
}
/* /////////////////////////////// new */
    /* Styles for the Branch section */
    .container.d-flex.justify-content-center.align-items-center.my-5 {
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .card {
        width: 195px;
        height: 285px;
        background: whitesmoke;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        transition: 0.2s ease-in-out;
        position: relative;
        margin: 10px;
    }
    
    .img {
        width: 120px;
        /* Updated width */
        height: 120px;
        /* Updated height */
        background: url('/web/assets/image/logo1.png') no-repeat center center;
        /* Add your image */
        background-size: cover;
        /* Cover the entire area */
        border-radius: 50%;
        /* Keep it circular */
        transition: 0.2s ease-in-out;
        z-index: 1;
    }
    
    
    .textBox {
        opacity: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: 0.2s ease-in-out;
        z-index: 2;
    }
    
    .textBox>.text {
        font-weight: bold;
    }
    
    .textBox>.head {
        font-size: 20px;
    }
    
    .textBox>.price {
        font-size: 17px;
    }
    
    .textBox>span {
        font-size: 12px;
        color: #000;
    }
    
    .card:hover>.textBox {
        opacity: 1;
    }
    
    .card:hover>.img {
        width: 150px;
        height: 150px;
        filter: blur(7px);
        animation: anim 3s infinite;
    }
    
    @keyframes anim {
        0% {
            transform: translateY(0);
        }
    
        50% {
            transform: translateY(-20px);
        }
    
        100% {
            transform: translateY(0);
        }
    }
    
    .card:hover {
        transform: scale(1.04) rotate(-1deg);
    }
    
    @media (max-width: 768px) {
        .card {
            width: 150px;
            height: 220px;
        }
    
        .img {
            width: 80px;
            height: 80px;
        }
    
        .textBox>.head {
            font-size: 18px;
        }
    
        .textBox>.price {
            font-size: 15px;
        }
    
        .textBox>span {
            font-size: 10px;
        }
    }
    .card-2 {
        background-color: rgba(255, 255, 255, 0.2); /* SEMI-TRANSPARENT BACKGROUND COLOR */
        backdrop-filter: blur(10px); /* APPLYING BLUR EFFECT */
        -webkit-backdrop-filter: blur(10px); /* FOR SAFARI SUPPORT */
    }
    .custom-col {
        padding: 0; /* EXAMPLE OVERRIDE */
        margin: 0;  /* EXAMPLE OVERRIDE */
    }
    
    .custom-link {
        font-size: inherit;    /* REMOVE FONT-SIZE */
        color: inherit;        /* REMOVE COLOR */
        text-decoration: none; /* REMOVE TEXT DECORATION */
        display: block;        /* MAKE EACH LINK A BLOCK ELEMENT */
        margin-bottom: 5px;    /* ADD SPACE BETWEEN LINKS */
    }
    .about-title{
        margin-top: 100px !important;
    }