
body, html {
    margin: 0;
    padding: 0;
    height: 400vh;
    overflow-x: hidden;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    animation: fadeInBody 1s ease-in-out;
}

div {
    box-sizing: border-box;
    animation: fadeInDiv 1.5s ease-in-out;
}

.button1 {
    background-color: rgb(45, 34, 66);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding-top: -105px;
    font-size: 23px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button1:hover {
    background-color: rgb(65, 54, 86);
    color: #f0f0f0;
}

#project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: white;
    animation: fadeInVideo 2s ease-in-out;
}

#project-name {
    margin: 0;
    font-size: 32px;
    color: white;
    animation: fadeInName 1.2s ease-in-out;
}

#project-description {
    margin-top: 10px;
    font-size: 18px;
    color: white;
    animation: fadeInDescription 1.4s ease-in-out;
}

.carousel-container {
    height: 200px;
    background-color: #181818;
    padding: 10px;
    animation: fadeInCarouselContainer 1.6s ease-in-out;
}

.carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 12px;
    animation: fadeInCarousel 1.8s ease-in-out;
}

.carousel::-webkit-scrollbar {
    height: 18px;
}

.carousel::-webkit-scrollbar-thumb {
    background-color: #2d2242; /* Dark purple color */
    border-radius: 10px;
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100%;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    animation: fadeInCarouselItem 2s ease-in-out;
}

.outfit-header {
    font-weight: 700;
    animation: fadeInOutfitHeader 1.3s ease-in-out;
}

.outfit-links {
    font-weight: 400;
    animation: fadeInOutfitLinks 1.5s ease-in-out;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 0;
    animation: fadeInHeader 1.7s ease-in-out;
}

.logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    text-align: center;
    font-size: 30px;
    animation: fadeInLogo 1.9s ease-in-out;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: space-around;
    animation: fadeInNavLinks 2.1s ease-in-out;
}

.nav-links a {
    color: white;
    text-decoration: none;
    animation: fadeInNavLink 2.3s ease-in-out;
}

.partners {
    width: 100%;
    background-color: #333333;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
#expandb {
    z-index: 2222;
    background-color: #4b0082; /* Dark purple background */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    transform: scale(0.9); /* Shrink the button */
    display: block;
    margin: 0 auto; /* Center the button */
    padding-left:5px;
    padding-right:5px;
}


#expandb:hover {
    background-color: #6a0dad; /* Lighten the background on hover */
    color: white; /* Make text white on hover */
    transform: scale(0.85); /* Further shrink the button on hover */
}


.marquee {
    display: flex;
    width: fit-content;
}

.marquee-content {
    display: flex;
    padding-left: 100px;
}

.service-content {
    max-height: 0;
    opacity: 0;
    pointer-events: none; /* Prevent it from blocking clicks */
    transition: max-height 0.5s ease, opacity 0.5s ease;
    padding-top: 0;
    z-index: 0;
}

.service-box {
    width: 100%;
    padding: 20px;
    background-color: #353158;
    display: flex;
    align-self: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
}
.service-box.active .service-content {
    max-height: 2000px;
    opacity: 1;
    padding-top: 20px;
}
.service-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(240, 196, 253, 0.548);
    text-align: center;
    font-size: 22px;
    padding: 10px 0;
    z-index: 1150;
}

.service-header:hover {
    color: rgba(240, 196, 253, 0.8);
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 100px;
    color: rgba(255, 255, 255, 0.8);
}

.service-title {
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    font-size: 35px;
    padding-bottom: 0px;
    margin-bottom: 0;
    line-height: 1.2;
    text-decoration: underline;
}

.mini-section {
    background-color: rgb(44, 37, 61);
    border-radius: 10px;
    padding: 20px;
    color: white;
    margin: 5px 0;
    font-size: 18px;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: rgba(145, 111, 111, 0.8);
    
}

.services-table th, .services-table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: left;
    vertical-align: top;
    
}

.services-table th {
    background-color: #353158;
    font-weight: bold;
    font-size: 10px;
    color: rgba(255, 255, 255, 1);
}

.services-table tr:nth-child(even) {
    background-color: #2c2a47;
}

.services-table ul {
    margin: 0;
    padding-left: 20px;
    font-size: smaller;
    color: rgba(255, 255, 255, 0.8);
}

.service-description ul {
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
    margin-top: 0;
    line-height: 1.2;
}

.service-icon {
    padding-top: 35px;
    flex-shrink: 0;
    padding-right: 10px;
    font-size: 55px;
    color: #333;
    width: 7%;
    align-self: flex-start;
}

.main-content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    animation: fadeInMainContent 5.7s ease-in-out;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    animation: fadeInVideoBg 5.9s ease-in-out;
}

.video-bg iframe {
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transform-origin: center;
    animation: fadeInVideoBgIframe 6.1s ease-in-out;
}

.overlay-content {
    z-index: 1;
    display: flex;
    width: 100%;
    position: absolute;
    top: 450px;
    left: 0;
    right: 350px;
    bottom: 0;
    display: flex;
    justify-content: right;
    align-items: right;
    animation: fadeInOverlayContent 6.3s ease-in-out;
}

.overlay-content h1 {
    font-size: 4em;
    color: rgba(255, 255, 255, 0.548);
    text-shadow: 0 0 10px rgba(255, 223, 191, 0.8), 
                 0 0 20px rgba(255, 223, 191, 0.6), 
                 0 0 30px rgba(255, 223, 191, 0.4);
    animation: pulse 2s infinite, fadeInOverlayContentH1 6.5s ease-in-out;
}

.svg-divider {
    bottom: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    animation: fadeInSvgDivider 6.7s ease-in-out;
}

.svg-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    animation: fadeInSvgDividerSvg 6.9s ease-in-out;
}

.three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 380px;
    scale: 1.7;
    z-index: 2;
    pointer-events: none;
    animation: fadeInThreeCanvas 7.1s ease-in-out;
}

.three-canvas canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    animation: fadeInThreeCanvasCanvas 7.3s ease-in-out;
}

.panelCon {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99990;
    animation: fadeInPanelCon 7.5s ease-in-out;
}

.panel {
    width: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 35px;
    animation: fadeInPanel 7.7s ease-in-out;
}


#pane-3 {
    background-color: rgb(32, 28, 41);
    height: 600px;
    animation: fadeInPane3 8.3s ease-in-out;
}

#pane-4 {
    background-color: rgb(32, 28, 41);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: auto;
    padding-bottom: 50px;
    padding-top: 50px;
    animation: fadeInPane4 8.5s ease-in-out;
}

#pane-5 {
    background-color: rgb(0, 0, 0);
    animation: fadeInPane5 8.7s ease-in-out;
}

@keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDiv {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInVideo {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInName {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDescription {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInCarouselContainer {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInCarousel {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInCarouselItem {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInOutfitHeader {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInOutfitLinks {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInHeader {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLogo {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInNavLinks {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInNavLink {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInPartners {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInMarquee {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInMarqueeContent {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInServiceContent {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInServiceBox {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInServiceHeader {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInServices {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInServiceTitle {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInMiniSection {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInServicesTable {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInTableCell {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInTableHeader {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInTableRow {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInTableList {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInServiceDescriptionList {
    from { opacity: 0; }
    to { opacity: 1; }
  