* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: cocosharp;
    src: url(/cocosharp/Coco-Sharp-Heavy-trial.ttf) format('truetype');
    font-weight: bolder;
}

@font-face {
    font-family: cocosharp;
    src: url(/cocosharp/Coco-Sharp-Extrabold-trial.ttf) format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: cocosharp;
    src: url(/cocosharp/Coco-Sharp-Light-trial.ttf) format('truetype');
    font-weight: lighter;
}

@font-face {
    font-family: cocosharp;
    src: url(/cocosharp/Coco-Sharp-Regular-trial.ttf) format('truetype');
    font-weight: normal;
}

:root {
    --green: #7fc41d;
    --blue: #5097c5;
    --red: #c30e0c;
    --textcolor: #ffffff;
    --para: rgba(209, 208, 207, 0.7);
    --card-bg-color: rgba(255, 255, 255, 0.1);
    --card-hover-bg: rgba(255, 255, 255, 0.2);
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 20%;
}

/* Track */
::-webkit-scrollbar-track {
    background: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--red);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #760907;
}

body {
    font-family: 'cocosharp', sans-serif;
    scroll-behavior: smooth;
    background-color: #000;
    overflow-x: hidden;
    animation: fadein 0.5s ease-in-out;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* DESKTOP NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #000000ea;
    box-shadow: 0px 2px 10px #c30e0c;
}

.logo>img {
    max-width: 110px;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: var(--textcolor);
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: var(--red);
    transform: scale(1.1);
    letter-spacing: 2px;
    filter: drop-shadow(0px 0px 15px #c30e0c);
}

.nav-link.active {
    filter: drop-shadow(0px 0px 15px #c30e0c);
    transform: scale(1.1);
    color: var(--red);
    letter-spacing: 2px;
    border-bottom: 2px solid var(--red);
}

/* DRAWER MENU FOR MOBILE */
.drawer {
    position: fixed;
    top: -330px;
    height: 350px;
    width: 100vw;
    padding-top: 3.5rem;
    transition: 0.3s all ease-in-out;
    z-index: 10;
    display: flex;
    text-align: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.drawer.open {
    top: 12%;
    text-align: center;
}

.drawer a {
    text-decoration: none;
    color: var(--textcolor);
    padding: 1rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.25rem;
    transition: all 0.3s ease-in-out;

}

.drawer a:hover {
    color: var(--red);
    transform: scale(1.1);
    letter-spacing: 2px;
    filter: drop-shadow(0px 0px 15px #860B09);
}

.menu-icon {
    font-size: 2rem;
    position: fixed;
    top: 28px;
    left: 10px;
    cursor: pointer;
    z-index: 300;
    color: #fff;
}

.mobile-logo {
    display: none;
    text-align: center;
    font-weight: bolder;
    font-size: 24px;
    color: var(--textcolor);
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: #000;
    box-shadow: 0px 5px 10px #c30e0c;

}

.mobile-logo>img {
    max-width: 110px;

}

hr {
    filter: opacity(20%);
    filter: blur(50%);
}

/* SLIDESHOW CONTAINER */
.hero-section {
    display: flex;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    filter: blur(10%);
    background: linear-gradient(127deg, rgba(0, 0, 0, 1) 0%, #860B09 54%, rgba(0, 0, 0, 1) 100%);
    background-color: rgb(0, 0, 0);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}


.hero-text {
    flex: 1;
    padding: 0 2% 0 4%;
    color: #fff;
    display: flex;
    z-index: 2;
    flex-direction: column;
    justify-content: center;

}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bolder;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text span {
    filter: drop-shadow(0px 0px 15px #7fc41d);
    color: var(--green);

}

.hero-text p {
    font-size: 24px;
    font-weight: lighter;
    margin-bottom: 30px;
    color: var(--para);
}

.hero-text button {
    padding: 20px 10px;
    font-size: 16px;
    max-width: 30%;
    text-transform: uppercase;
    font-weight: bold;
    background-color: var(--red);
    filter: drop-shadow(0px 0px 15px #c30e0c);
    color: var(--textcolor);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero-text button:hover {
    filter: drop-shadow(0px 0px 45px #c30e0c);
}

.hero-video {
    position: relative;
    flex: 1;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(38% 0, 100% 0%, 67% 100%, 0% 100%);

}

/* Hero Section */
.ourphilosphy {
    background: linear-gradient(127deg, rgba(0, 0, 0, 1) 0%, #860B09 52%, rgba(0, 0, 0, 0) 100%);
    background: #860B09;
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.ourphilosphy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.ourphilosphy h1 {
    font-size: 3rem;
    font-weight: bolder;
    color: var(--textcolor);
    z-index: 2;
}

.ourphilosphy h1>span {
    filter: drop-shadow(0px 0px 15px #7fc41d);
    color: var(--green);

}

.ourphilosphy p {
    max-width: 70%;
    font-weight: lighter;
    color: var(--para);
    margin: 2% auto;
    font-size: 24px;
    z-index: 2;
}

span {
    color: var(--textcolor);
    filter: drop-shadow(0px 0px 15px #ffffff);
}

/* Section Styling */
.business-section {
    background: #860B09;
    padding: 50px 0rem;
    position: relative;
    text-align: center;
    width: 100%;
    height: 500px;
    background: linear-gradient(160deg, rgba(0, 0, 0, 1) 0%, #860B09 55%, rgba(0, 0, 0, 1) 100%);
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.business-section h1 {
    font-size: 3rem;
    font-weight: bolder;
    position: relative;
    margin: 2% auto;
    color: var(--textcolor);
    z-index: 2;
}

.business-section span {
    color: var(--green);
    filter: drop-shadow(0px 0px 15px #7fc41d);
    z-index: 2;
}

/* Cards Container Styling */
.cards-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    z-index: 2;
    padding: 0;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    position: relative;
    scroll-behavior: smooth;
}
.cards-container::-webkit-scrollbar {
    display: none;
}
.card {
    flex-shrink: 0;
    width: 200px;
    background: var(--card-bg-color);
    border-radius: 15px;
    padding: 20px;
    scroll-snap-align: center;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    position: relative;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.558);

}

.image-container {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 15px;

}

.image-container::before {
    content: '';
    background: conic-gradient(transparent 270deg, rgb(255, 255, 255), transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    z-index: -1;
    width: 100%;
    animation: name duration timing-function delay iteration-count direction fill-mode;
    animation: rotate 1.4s ease-in-out infinite;
}

/* Overlay */
.image-container::after {
    content: '';
    background: inherit;
    border-radius: inherit;
    position: absolute;
    z-index: 1;
    inset: var(--offset);
    height: calc(100% - 2 * var(--offset));
    width: calc(100% - 2 * var(--offset));
}


@keyframes rotate {
    from {
        transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
    }

    to {
        transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
    }
}

.card:hover {
    transform: translateY(-10px);
    background: var(--card-hover-bg);
}


.image-container img {
    top: 1%;
    width: 98%;
    position: relative;
    object-fit: cover;
    border-radius: 50%;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: bolder;
    margin-top: 10px;
    color: var(--textcolor);
}

/* Main container */
.container {
    display: flex;
    width: 100vw;
    position: relative;
    height: 500px;
    background: #000000;
    background: linear-gradient(110deg, rgba(0, -1, 0, 1) 0%, #860B09 80%, rgba(1, 1, 0, 1) 100%);
    box-sizing: border-box;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Left section styling */
.left-section {
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.left-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    justify-content: flex-start;
    color: var(--textcolor);
    text-align: center;
    font-weight: bolder;
    margin: 10px auto;
    padding-right: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.left-section span {
    color: var(--green);
    filter: drop-shadow(0px 0px 15px #7fc41d);

}

/* Right section styling */
.right-section {
    flex: 0.5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    padding-right: 20px;
    z-index: 2;
}

/* Scrollable list of company names */
.company-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    perspective: 1000px;
}


.company-list {
    scrollbar-width: none;

}

.company-list::-webkit-scrollbar {
    display: none;
}

/* Company list items */
.company-list li {
    font-size: 5rem;
    font-weight: bolder;
    color: var(--para);
    text-align: right;
    white-space: nowrap;
    padding: 10px 0;
    padding-right: 50px;
    margin: 10px 0;
    transform: perspective(3000px) rotateY(-30deg) translateZ(100px);
    transform-origin: right;
    transition: all 0.5s ease-in-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 5px;
}

/* Hover effect */
.company-list li:hover {
    transform: perspective(3000px) rotateY(-30deg) translateZ(130px);
    color: var(--textcolor);
}



.mapsection {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px;
    background: #000000;
    background: linear-gradient(127deg, rgba(0, 0, 0, 1) 0%, #860B09 54%, rgba(0, 0, 0, 1) 100%);

}

.mapsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.maptext {
    max-width: 50%;
    z-index: 2;
}

.maptext h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--textcolor);
    font-weight: bolder;
}

.maptext h1 span {
    filter: drop-shadow(0px 0px 15px #5097c5);
    color: var(--blue);
}

.maptext p {
    font-size: 24px;
    color: var(--para);
    margin-bottom: 2rem;
    font-weight: lighter;
}

.maptext button {
    padding: 20px 50px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: var(--red);
    filter: drop-shadow(0px 0px 15px #c30e0c);
    color: var(--textcolor);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.maptext button:hover {
    filter: drop-shadow(0px 0px 45px #c30e0c);
}

.map-container {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

/* JOIN SECTION */
.join-section {
    position: relative;
    width: 100vw;
    height: 500px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000000;
    background: linear-gradient(160deg, rgba(0, 0, 0, 1) 0%, #860B09 55%, rgba(0, 0, 0, 1) 100%);
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Background images */
.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    opacity: 0.3;
    /* Semi-transparent for overlay effect */
    z-index: 1;
}

.background-images img {
    position: absolute;
    width: 150px;
    height: 150px;
    object-fit: cover;
    animation: float 10s infinite ease-in-out alternate;
    transition: transform 0.3s;
    border-radius: 16px;
}

/* Different positions for images */
.background-images img:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.background-images img:nth-child(2) {
    top: 20%;
    left: 40%;
    animation-delay: 1s;
}

.background-images img:nth-child(3) {
    top: 35%;
    left: 70%;
    animation-delay: 2s;
}

.background-images img:nth-child(4) {
    top: 60%;
    left: 25%;
    animation-delay: 3s;
}

.background-images img:nth-child(5) {
    top: 80%;
    left: 55%;
    animation-delay: 4s;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    50% {
        transform: translate(-10px, 10px) scale(1.1);
    }

    100% {
        transform: translate(10px, -10px) scale(1);
    }
}

/* Text and Button */
.join-content {
    position: relative;
    z-index: 2;
    /* Bring content above the images */
    max-width: 800px;
    padding: 20px;
}

.join-content h2 {
    font-size: 3.5rem;
    font-weight: bolder;
    margin: 0 0 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.join-content span {
    filter: drop-shadow(0px 0px 15px #7fc41d);
    color: var(--green);

}

.join-content p {
    font-size: 24px;
    font-weight: lighter;
    color: var(--para);
    max-width: 85%;
    margin: 0 auto 2rem auto;
}

.join-button {
    padding: 20px 50px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: var(--red);
    filter: drop-shadow(0px 0px 15px #c30e0c);
    color: var(--textcolor);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.join-button:hover {
    filter: drop-shadow(0px 0px 45px #c30e0c);
}


footer {
    background: linear-gradient(160deg, rgba(0, 0, 0, 1) 0%, #860B09 55%, rgba(0, 0, 0, 1) 100%);
    color: var(--text-color);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 50%);
    z-index: 1;
}

.footer-heading {
    color: var(--textcolor);
    font-weight: bolder;
    filter: drop-shadow(0px 0px 15px #ffffff);
}

.footer-logo {
    max-width: 120px;
}

.footer-container {
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 80vw;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.contact-info p {
    display: flex;
    align-items: center;
    font-family: Arial;
    font-weight: lighter;
    font-size: 1rem;
    margin: 0.5rem auto;
    color: var(--textcolor);
}
.contact-info span {
    color: var(--textcolor);
    text-decoration: none;
    filter: none;
}


.contact-info i,
.follow-icons i {
    margin-right: 0.5rem;
    color: var(--green);
    filter: drop-shadow(0px 0px 15px #7fc41d);
    font-size: 22px;
    transition: all 0.3s ease-in-out;
}

.follow-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    transform: scale(1.3);
    margin-top: 10%;
    transition: all 0.3s ease-in-out;
}

.follow-icons a {
    text-decoration: none;
    color: var(--textcolor);

}

.follow-icons a:hover i {
    color: var(--textcolor);
    filter: drop-shadow(0px 0px 155px #fff);
    transform: scale(1.4);
}

/* Bottom Section */
.bottom-row {
    display: flex;
    color: var(--textcolor);
    justify-content: space-between;
    width: 100%;
    max-width: 80vw;
    margin-top: 3rem;
    font-family: Arial;
    font-size: 0.9rem;
}

.bottom-row p {
    margin: 0;
}



/********** Responsive Design ********/


@media only screen and (max-width: 1200px) {
    nav {
        padding: 1rem 2rem;
    }
}

@media only screen and (min-width: 769px) {
    .drawer {
        display: none;

    }

    .menu-icon {
        display: none;
    }

    .cards-container {
        justify-content: flex-start;
        flex-wrap: nowrap;

    }

    .card {

        width: 19%;
    }

    .links {
        flex-direction: row;
        gap: 1rem;
    }
}


@media only screen and (max-width: 768px) {
    nav {
        display: none;

    }

    .menu-icon {
        display: block;

    }

    .drawer.open {
        top: 12%;
    }

    .mobile-logo {
        display: block;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-video video {
        object-position: top;
        filter: brightness(50%);
        clip-path: none;
        object-fit: cover;
    }

    .hero-section p {
        font-size: 1rem;
        color: var(--textcolor);
        max-width: 100%;
    }

    .hero-text button {
        font-size: 14px;
        max-width: 40%;
    }

    .hero-text {
        position: absolute;
        max-width: 95%;
        margin-top: 3rem;
        z-index: 3;
    }

    .cards-container {
        flex-direction: row;

        align-items: center;
        justify-content: flex-start;
    }



    .card {
        width: 90%;
        margin: 40px;
    }

    .join-content h2 {
        font-size: 2.5rem;
    }

    .join-content p {
        max-width: 100%;
        font-size: 20px;
    }

    .hero-content {
        margin-top: 7rem;
    }

    .join-button {
        padding: 15px 30px;
        font-size: 12px;
    }

    .ourphilosphy h1 {
        font-size: 2rem;

    }

    .business-section {
        height: auto;
    }

    .ourphilosphy p {
        font-size: 20px;
        max-width: 90%;
    }

    .mapsection {
        flex-direction: column;
        padding: 0;
    }

    .map-container {
        width: 95%;
        margin: auto;
    }

    .maptext {
        max-width: 90%;
        margin: auto;
        text-align: center;
    }

    .maptext h1 {
        text-align: center;
        font-size: 2rem;
    }

    .maptext p {
        font-size: 20px;
        text-align: center;

    }

    .maptext button {
        padding: 15px 30px;

    }

    .container {
        flex-direction: column;
    }

    .business-section h1 {
        font-size: 2rem;
    }

    .left-section h2 {
        padding-right: 0;
        font-size: 2.5rem;
    }

    .right-section {
        flex: 2.3;
        padding-right: 0;
    }

    .company-list {
        padding-right: 0;
    }

    .company-list li {
        font-size: 3rem;
        padding: 0%;
        padding-top: 10px;

    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}