/* Reset and Body */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth; /* Enables smooth scrolling */
    background-color: #0a0a0a;
}

.hidden {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.show {
    opacity: 1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%; 
    background: transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-sizing: border-box;
    
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

section {
  scroll-margin-top: 20vh; /* adjust based on your header height */
}

.logo-img {
    width: 180px; 
    height: auto;
}

.navbar {
    display: flex;
    justify-content: center;
    flex: 0.7; 
    margin: 0 20px;

}

.navbar a {
    font-size: 22px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin: 0 15px;
    transition: .3s;
}

.navbar a:hover {
    color: #00abf0;
}

/* Home Section */
.home {
    min-height: 100vh;
    height: auto; 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 100px 5% 50px; 
    box-sizing: border-box;
    gap: 40px;
    margin-bottom: 1vh;
}

.home-content {
    flex: 1;
    max-width: 600px;
}

.home-content h1 {
    font-size: clamp(32px, 5vw, 56px); 
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.home-content h3 {
    font-size: clamp(28px, 6vw, 40px); 
    font-weight: 800;
    color: #00abf0;
    margin-top: 0;
    margin-bottom: 20px;
}

.home-content p {
    font-size: clamp(18px, 2.5vw, 20px); 
    line-height: 1.7;
    color: #cccccc;
}

/* Logo styling stays to the right */
.HomeLogo {
    max-width: 35%;
    height: auto;
    object-fit: contain; 
    transform-style: preserve-3d;
    animation: infinite alternate 3s zenlessZoneZeroJigglePhysics;
}

@keyframes zenlessZoneZeroJigglePhysics {
    from{
    transform: translateY(15px) rotate(15deg);
    }
    to{
    transform: translateY(-15px) rotate(-15deg);
    }
}


/* Responsive Design for Tablets */
@media screen and (max-width: 1024px) {
    .header {
        padding: 15px 4%;
    }
    
    .navbar a {
        margin: 0 12px;
        font-size: 16px;
    }
    
    .home {
        gap: 30px;
    }
    
    .HomeLogo {
        max-width: 40%;
    }
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px;
        position: relative; 
        background-color: #0a0a0a;
    }
    
    .logo-img {
        width: 150px;
        margin-bottom: 15px;
    }
    
    .navbar {
        flex-wrap: wrap;
        margin: 0;
    }
    
    .navbar a {
        margin: 5px 10px;
        font-size: 16px;
    }
    
    .home {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
        gap: 40px;
    }
    
    .home-content {
        max-width: 100%;
    }
    
    .HomeLogo {
        max-width: 70%;
        margin: 0 auto;
    }
}

/* Responsive Design for Small Mobile */
@media screen and (max-width: 480px) {
    .navbar a {
        margin: 5px 8px;
        font-size: 14px;
    }
    
    .home-content h1 {
        font-size: 28px;
    }
    
    .home-content h3 {
        font-size: 20px;
    }
    
    .HomeLogo {
        max-width: 90%;
    }
}


/*  About Us Title*/
.AboutTitle h1{
    color: white;
    text-align: center;
    font-size: clamp(32px, 5vw, 56px); 
    font-weight: 700;
    margin-bottom: 5vh;
}

.AboutTitle h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #00abf0;
    margin: 12px auto 0;   /* centers it */
    border-radius: 2px;
}


.Flex-Video-Section {
    display: flex;
    align-items: center;          /* vertical alignment */
    justify-content: center;      /* center videos horizontally */
    max-width: 1200px;            /* set a max-width you want */
    margin: 10px auto 30px;
    padding: 0 150px;             /* optional horizontal padding */
    gap: 100px;                    /* smaller gap = closer together */
    margin-bottom: 15vh;
    flex: 1;
}


.Flex-Video iframe,
.Flex-Video video {
    width: 600px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
}

/* Carousel test */
.carousel {
        position: relative;
        width: 80%;
        max-width: 700px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
        min-width: 100%;
        box-sizing: border-box;
    }

    .carousel-slide img {
        width: 100%;
        display: block;
    }

    /* Navigation buttons */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 18px;
        z-index: 10;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    /* Dots */
    .carousel-dots {
        text-align: center;
        position: absolute;
        bottom: 10px;
        width: 100%;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 5px;
        background-color: rgba(255,255,255,0.7);
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .dot.active {
        background-color: white;
    }


/*Flex section Normal - 1  (the services ghost do)*/


.Flex-Section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 10px auto 30px;
    padding: 0 150px;   /* matches H1 horizontal feel */
    gap: 60px;
    margin-bottom: 15vh;
    
}


.Flex-Text h1 {
    max-width: 500px;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.1;
    font-size: clamp(32px, 5vw, 56px);
    color: rgb(255, 255, 255);
}

.Flex-Text h2 {
    max-width: 400px;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.1;
    font-size: 30px;   /* slightly smaller than main H1 */
    color: #00abf0;
}

.Flex-Text p {
    max-width: 1000px;
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.Flex-Image img {
    width: 700px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
}

/*More Information Button for all service flexboxes */
.MoreInformationBtn {
border: 1px solid rgb(255, 255, 255);
border-radius: 50px;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
transition: all 0.3s ease-out;
}

.MoreInformationBtn:hover {
border: 1px solid #00abf0;;
color: #00abf0;
transform: translateX(15px)
}

/* Flex Section 2 Inversed (the services ghost do)*/

.Flex-Section2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 10px auto 30px;
    padding: 0 150px;   /* matches H1 horizontal feel */
    gap: 60px;
    margin-bottom: 15vh;
    
}


.Flex-Text2 h1 {
    max-width: 400px;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.1;
    font-size: clamp(32px, 5vw, 56px);
    color: rgb(255, 255, 255);
}

.Flex-Text2 h2 {
    max-width: 400px;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.1;
    font-size: 30px;   /* slightly smaller than main H1 */
    color: #00abf0;
}

.Flex-Text2 p {
    max-width: 1000px;
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.Flex-Image2 img {
    width: 700px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
}

/*  Contact Us Title*/
.ContactUs h1{
    color: white;
    text-align: center;
    font-size: clamp(32px, 5vw, 56px); 
    font-weight: 700;
    margin-bottom: 5vh;
}

.ContactUs h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #00abf0;
    margin: 12px auto 0;   /* centers it */
    border-radius: 2px;
}

/* Contact Us section (showing social media)*/
.Contact-Us-Section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 800px;
    margin: 10px auto 30px;
    padding: 0 60px;
    gap: 60px;

    
}

.Contact-Text h1 {
    max-width: 500px;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.1;
    font-size: clamp(32px, 5vw, 56px);
    color: rgb(255, 255, 255);
}

.Contact-Text h2 {
    max-width: 400px;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.1;
    font-size: 30px;   /* slightly smaller than main H1 */
    color: #00abf0;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.Contact-Text a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(0, 171, 240, 0.2);
    text-decoration: none;

}


.Contact-Text i {
    font-size: 20px;
    color: #ededed;
    transition: all 0.3s ease;
    text-align: center;
}

/* Contact Us section (showing location of building)*/
.Locate-Text h1 {
    max-width: 500px;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.1;
    font-size: clamp(32px, 5vw, 56px);
    color: rgb(255, 255, 255);
}

.Locate-Text h2 {
    max-width: 400px;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.1;
    font-size: 30px;   /* slightly smaller than main H1 */
    color: #00abf0;
}


.Locate-Text a {
    margin-top: 1vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 300px;
    font-weight:300px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 20px;
    color: rgb(255, 255, 255)

}

.Contact-Text,   /* fixes the kind of off center look */
.Locate-Text {
    flex: 1;
}

#map {
    width: 800px;
    max-width: 90%;
    height: 500px;
    margin: 0 auto;   
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 3px solid white;
    border-radius: 8px;
    background-color: #ccc;
    margin-bottom: 20vh;
}


/* FOOTER */
.site-footer {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid #00abf0;
    margin-top: 10vh;
    position: relative;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        #00abf0, 
        transparent
    );
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #00abf0;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 171, 240, 0.3);
    letter-spacing: 0.5px;
}

.footer-section h4 {
    color: #00abf0;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
    color: #cccccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ededed;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00abf0;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00abf0;
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

/* Footer social links */
.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 171, 240, 0.2);
    text-decoration: none; /* Removes annoying underline */
}



.footer-socials i {
    font-size: 20px;
    color: #ededed;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #00abf0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 171, 240, 0.4);
    border-color: transparent;
}

.footer-socials a:hover i {
    color: #0a0a0a;
}


/* Footer bottom bit*/
.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00abf0, transparent);
}




/* Responsive footer screen adjustments */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links li {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-bottom {
        padding: 15px;
        font-size: 12px;
    }
}




/* Scrollbar Styles*/
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #000000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #f5f5f5 20%,
        #e0e0e0 35%,
        #c0c0c0 50%,
        #909090 65%,
        #606060 80%,
        #303030 100%
    );
    border-radius: 7px;
    border: 1.5px solid #ffffff;
    box-shadow: 
        inset 0 4px 10px #ffffff,
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.7);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #ffffff 20%,
        #f0f0f0 35%,
        #d0d0d0 50%,
        #a0a0a0 65%,
        #707070 80%,
        #404040 100%
    );
    border: 1.5px solid #ffffff;
    box-shadow: 
        inset 0 6px 14px #ffffff,
        inset 0 -6px 10px rgba(0, 0, 0, 0.35),
        0 5px 14px rgba(0, 0, 0, 0.8);
}

