/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300&display=swap');


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: E5E5E5;
    overflow-x: hidden;
    letter-spacing: 0.15rem;
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's above all other content */
    font-size: 24px;
    transition: transform 0.5s ease-in-out;
}

#progressBar {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #000;
    width: 0%;
}

.loader {
    width: fit-content;
    font-weight: bold;
    white-space: pre;
    font-size: 6.5em;
    overflow: hidden;
    color: #000;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 200;
    text-transform: uppercase;
}

.loader::after {
    display: inline-block;
    animation: addDots 3s steps(4, end) infinite;
    content: '';
}

@keyframes addDots {
    25% {
    content: '.';
    }
    50% {
    content:'..';
    }
    75% {
    content: '...';
    }
    100% {
    content: '...';
    }
}


/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 950;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: all 0.25s ease-in-out;
    margin: 0;
    min-height: 15vh;
    max-height: 15vh;
    padding: 0 8%;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease-in-out;
}

.logo img {
    width: 200px;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    margin-left: 5%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline-block;
    position: relative;
    font-family: "Geist", sans-serif;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.25s ease-in-out;
    padding: 0;
}

.nav-links .nav-contact {
    padding: 10px 15px;
    font-family: "Geist", sans-serif;
    color: #fff;
    background-color: #000;
    font-size: 14px;
    border-radius: 18px;
}

.nav-links .nav-contact:hover {
    color: #333;
    background-color: transparent;
    border: 1.25px solid #000;
}

/* Hover Effect */
.nav-links a:hover {
    color: #bdbdbd;
}

.nav-links a.active {
    color: #bdbdbd;
    position: relative;
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background-color: white;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu li {
    padding: 0 10px;
    padding-top: 10px;
}

.nav-links .dropdown-menu li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-links .dropdown-menu li a:hover {
    color: #999;
}

/* Underline and Overline for Active Link */
.nav-links a.active::before,
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: black;
    transition: opacity 0.3s ease-in-out;
}

.nav-links a.active::before {
    top: -3px; /* Overline */
}

.nav-links a.active::after {
    bottom: -3px; /* Underline */
}

/* Mobile Navbar */
.menu-toggle,
.mobile-menu {
    display: none;
    /* Hide by default */
}

@media (max-width: 1024px) {

    /* Show on tablet and mobile */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        max-height: 10vh;
        background-color: #fff;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.25s ease-in-out;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle,
    .mobile-menu {
        display: block;
    }

    .menu-toggle {
        position: fixed;
        top: 50px;
        right: 50px;
        font-size: 30px;
        padding: 25px;
        color: #000;
        background-color: transparent;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1100;
    }
    .menu-toggle:hover {
        transform: scale(1.2);
        Transition: transform 0.3s ease-in-out;
    }
    #openIcon {
        color: #000;
    }
    #closeIcon {
        color: #ffffff;
        z-index: 1001;
    }
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100%;
        background: #2c2c2c;
        transition: right 0.5s ease;
        z-index: 1000;
        padding: 50px;
        box-sizing: border-box;
    }
    .menu-header {
        margin-top: 45px;
    }

    .menu-header p, .menu-footer p {
        margin: 0;
        margin: 5% 0;
        font-size: 16px;
        font-family: "Geist", sans-serif;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
    }
    .menu-links {
        list-style: none;
        padding: 0;
        margin: 20px 5%;
    }
    .menu-links li {
        margin: 20px 0;
        font-size: 28px;
        font-family: "Geist", sans-serif;
        font-weight: 200;
        text-transform: uppercase;
    }
        .menu-links li.active::before {
            content: '• ';
            color: #fff;
        }
    
        .social-links {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            font-family: "Geist", sans-serif;
            font-weight: 200;
            text-transform: uppercase;
        }

        .social-links span {
            color: #fff;
            padding: 0 5px;
        }
    
        a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }
    
        a:hover {
            color: #bdbdbd;
        }
    
        hr {
            border: none;
            height: 1px;
            background: #fff;
            margin: 10px 0;
        }
    
        .menu-logo {
            display: block;
            max-width: 500px;
            height: auto;
            max-height: 500px;
            float: left;
        }
        .menu-logo img {
            width: 100%;
            height: auto;
            object-fit: cover center !important;
        }
    
        .logo img {
            width: 100%;
            height: auto;
            object-fit: cover center !important;
        }

/* Mobile Dropdown Styles */
.mobile-menu .dropdown-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    padding-left: 25px;
    gap: 10px;
}

.mobile-menu .dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 40px;
    padding-top: 10px;
}

.mobile-menu .dropdown.open .dropdown-menu li {
    padding: 0;
    padding-top: 10px;
    margin: 0;
}

.mobile-menu .dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
    cursor: pointer;
}
}

.hidden {
    display: none !important;
}
    
        @media only screen and (max-width: 480px) {
            body {
                overflow-x: hidden;
            }
    
            .header {
                max-width: 100vw;
            }
    
            .navbar {
                padding: 0% 16px;
            }
    
            .menu-toggle {
                top: 15px;
                right: 16px;
                font-size: 24px;
                padding: 10px;
            }
            .mobile-menu {
                width: 100%;
            }
            .menu-logo {
                display: block;
                max-width: 350px;
                height: auto;
                max-height: 350px;
                float: left;
            }
            .menu-logo img {
                width: 100%;
                height: auto;
                object-fit: cover center !important;
            }
            .logo {
                margin-left: 5%;
            }
        }


/* Hero Section */
#hero {
    display: flex;
    position: relative;
    justify-content:space-around;
    align-items: center;
    margin: 0;
    margin-top: 15vh;
    min-width: 100vw;
    max-width: 100vw;
    height: auto;
    max-height: 85vh;
}

.hero-content {
    padding: 5% 0;
    padding-left: 10%;
    width: 50%;
    max-width: 900px;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 4.25rem;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    color: #999;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 4.25rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    line-height: 1.1;
}

.title {
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    padding-top: 20px;
}

.text-updates {
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    transition: opacity 0.5s ease-in-out;
    background-clip: text;
    -webkit-background-clip: text;
    animation-name: text-change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    column-gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 2.5rem;
}

.hero-btn {
    display: block;
    float: center;
    background-color: none;
    text-decoration: none;
    background-color: transparent;
    border: none;
}

.hero-btn a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 1.25px solid #000;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.25s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.hero-btn a:hover {
    background-color: #000;
    border: 1.25px solid #fff;
    color: #fff;
}

.hero-carousel {
    width: 720px;
    height: 650px;
}

/* About Sections */
#about {
    min-height: 100vh;
    max-width: 100vw;
    padding: 30px;
    margin: 0 5%;
}

.about-container {
    display: flex;
    align-self: center;
    justify-content: space-evenly;
    margin-top: 12%;
    margin-bottom: 30px;
    width: 100%;
    min-height: 425px;
    max-height: 50vh;
    background-color: #EDEDED;
}


.about-left {
    width: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-left img {
    width: 100%;
    height: auto;
    max-width: 450px;
    max-height: 450px;
    display: block;
    object-fit: contain;
}

.about-right {
    width: 50%;
    margin: 5% 5%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.about-title {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    color: #999;
}

.about-text {
    font-family: "inter", sans-serif;
    font-weight: 300;
    color: #000000;
}

.about-btn {
    display: block;
    align-self: flex-start;
    background-color: none;
    text-decoration: none;
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.about-btn a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 1.25px solid #000;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.25s ease-in-out;
}

.about-btn a:hover {
    background-color: #000;
    border: 1.25px solid #fff;
    color: #fff;
}

.about-header {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    padding-top: 30px;
}

.header-card {
    background-color: #EDEDED;
    width: 720px;
    max-width: 720px;
    padding: 15px 5%;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

.about-subtitle1 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999;
    margin-top: 60px;
    margin-left: 5%;
}

.about-subtitle2 {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    letter-spacing: 0.15rem;
    color: #000000;
    margin-top: 5px;
}

.statement {
    margin-top: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    max-width: 720px;
}

.vals {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    justify-content: space-evenly;
    margin: 0 5%;
    margin-top: 10%;
}

.val {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    padding: 30px;
    overflow: hidden;
}

.val-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 15px;
}

.val-header {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 15px;
    margin-bottom: 10px;
}

.val-number {
    position: absolute;
    left: 0;
    transform: translateX(-100px);
    font-size: 11rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    color: #EDEDED;
    z-index: 1;
}

.val-title {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 200;
    color: #000000;
    margin: 0;
    z-index: 2;
}

.val-description {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000000;
    max-width: 100%;
    margin: 15px 0;
    z-index: 2;
}
.val-description2{
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000000;
    max-width: 100%;
    z-index: 2;
}

.val .about-card {
    width: 400px;
    height: 100%;
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.val .about-img {
    width: 100%;
    height: auto;
    object-fit: cover center !important;
    display: block;
}

.val .about-img:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: transform 3s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}


@media only screen and (max-width: 1024px) {
    #about {
        margin: 5% 0;
    }
    .about-container {
        margin: 5% 0;
    }
}

#services-section {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.services-header {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 60px 0 0 0;
    padding: 0;
}

.services-header .header-card {
    background-color: #EDEDED;
    width: 720px;
    max-width: 720px;
    padding: 15px 5%;
    box-sizing: border-box;
    margin-top: 0;
    z-index: 0;
    position: relative;
}

.services-title1 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999;
    margin-top: 60px;
    margin-left: 5%;
}

.services-title2 {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    color: #000;
}

.services-subtitle {
    margin-top: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000;
    max-width: 720px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding: 0 10%;
    max-width: 100%;
    box-sizing: border-box;
}

.service {
    flex: 1 1 calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}

.service-number {
    font-size: 3rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    color: #e5e5e5;
}

.service-title {
    font-size: 1.25rem;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.service-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-items li {
    color: #6b7280;
    font-size: 0.95rem;
    font-family: "Inter", sans-serif;
    margin-bottom: 0.25rem;
}

.service-link {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #000;
    border-bottom: 2px solid #000;
    width: fit-content;
    transition: all 0.2s ease;
}

.service-link:hover {
    opacity: 0.8;
    border-color: #222;
}




/* Portfolio Section Styles*/
#portfolio {
    min-height: 100vh;
}

.portfolio-header {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 5% 0;
    padding: 0;
}

.portfolio-header .header-card {
    background-color: #EDEDED;
    width: 720px;
    max-width: 720px;
    padding: 15px 5%;
    box-sizing: border-box;
    margin-top: 0;
    z-index: 0;
    position: relative;
}

.portfolio-title1 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999;
    margin-top: 60px;
    margin-left: 5%;
}

.portfolio-title2 {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    color: #000;
}

.portfolio-subtitle {
    margin-top: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000000;
    max-width: 720px;
}

.bento-section {
    margin: 0 5%;
    padding: 30px;
}

/* Portfolio Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    padding: 14px;
    border-radius: 16px;
    gap: 12px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover center !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover center !important;
    display: block;
}

.grid-item:hover {
    cursor: pointer;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black */
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.grid-item:hover .overlay {
    opacity: 1;
    pointer-events: auto;
}

.overlay-text {
    color: #fff;
    padding: 20px;
    margin-left: 3%;
    margin-bottom: 3%;
    font-family: "Inter", sans-serif;
}

.overlay-text h3 {
    font-size: 1.75rem;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.overlay-text p {
    font-size: 1rem;
    color: #bdbdbd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
}

.overlay-text {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.overlay-text ul {
    list-style: circle;
    padding: 0;
    margin: 0;
    margin-left: 20px;
}

.overlay-text li {
    font-size: 0.75rem;
}

.grid-item:hover .overlay-text {
    transform: translateY(0);
    opacity: 1;
}


/* Image Positioning */
.img1 {
    grid-column: span 1;
    grid-row: span 1;
}

.img2 {
    grid-column: span 2;
    grid-row: span 1;
}

.img3 {
    grid-column: span 1;
    grid-row: span 2;
}

.img4 {
    grid-column: span 2;
    grid-row: span 1;
}

.img5 {
    grid-column: span 1;
    grid-row: span 1;
}

.projects-btn {
    display: block;
    float: right;
    background-color: none;
    text-decoration: none;
    background-color: transparent;
    border: none;
    margin: 0 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.projects-btn a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 1.25px solid #000;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.25s ease-in-out;
}

.projects-btn a:hover {
    background-color: #000;
    color: #fff;
}




/* Testimonials Section Styles */


.testimonials-header {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 5% 0 0 0;
    padding: 0;
}

.testimonials-title1 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999;
    margin-top: 60px;
    margin-left: 5%;
}

.testimonials-title2 {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    color: #000;
}

.testimonials-subtitle {
    margin-top: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000000;
    max-width: 720px;
}

.testimonial-container {
    margin-top: 5%;
    min-width: 100%;
    height: auto;
    max-height: 500px;
    background-image: url('/img/global1.jpg');
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.testimonial-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(30%) brightness(0.97);
    z-index: -1;
}

sl-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80%;
    height: auto;
    max-height: 500px;
    padding: 20px;
    font-family: "Inter", sans-serif;
    z-index: 1;
}

sl-carousel .card-footer {
    margin: 5% 5%;
    max-height: 80%;
    color: black;
    padding: 20px;
}

sl-avatar {
    margin-top: 15px;
    margin-left: 30px;
}

sl-rating {
    margin-left: 30px;
}

.card-footer .details {
    display: flex;
    gap: 2.25rem;
    margin-top: 15px;
    font-size: 18px;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 00;
}

/* FAQs */
#faq {
    margin: 0 5%;
    margin-top: 60px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.faq-header {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 60px 0 60px 0;
    padding: 0;
}

.faq-title1 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999;
    margin-top: 60px;
    margin-left: 5%;
}

.faq-title2 {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    color: #000;
}

.faq .faq-description {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000;
    margin-top: 25px;
    margin-bottom: 5%;
    max-width: 720px;
}

.details-group-example {
    margin-top: 60px; 
}

.details-group-example sl-details:not(:last-of-type) {
    margin-bottom: var(--sl-spacing-2x-small);
}

sl-details {
    font-size: 1em;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #000;
}

sl-details p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000000;
    margin: 0;
    margin-right: 10%;
}

/* Contact Section Styles */
#contact {
    min-height: 50vh;
    max-width: 100vw;
    padding: 30px;
    overflow-x: hidden;
}

.contact-header {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 80px 0 60px 0;
    padding: 0;
}

.contact-title1 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #999;
    margin-top: 60px;
    margin-left: 5%;
}

.contact-title2 {
    font-size: 2.625rem;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    color: #000;
}

.contact-subtitle {
    margin-top: 25px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: #000;
    max-width: 720px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 50vh;
    background: transparent;
    padding: 40px;
    margin-top: 5%;
    margin-bottom: 5%;
}

/* Left Side - Contact Info */
.contact-info {
    width: 33.3%;
    padding-right: 30px;
    border-right: 1.5px solid #bdbdbd;
    letter-spacing: 0.15rem;
    margin-left: 10px;
}

.contact-info h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    line-height: 36px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-info p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 25px;
    color: #000;
}

.contact-info a {
    font-family: "Inter", sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    text-decoration: underline;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 30px;
    font-size: 24px;
    color: #000;
    transition: color 0.25s ease-in-out;
}

.social-icons a:hover {
    color: #999;
}

/* Right Side - Form */
.contact-form {
    width: 66.6%;
    padding-left: 30px;

}

.contact-form h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.625rem;
    font-optical-sizing: auto;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.contact-form h2 span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.625rem;
    font-optical-sizing: auto;
    font-weight: 500;
    color: #999;
}

.contact-form p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-group input {
    width: 50%;
    padding: 10px;
    border: 1px solid #000;
    font-size: 14px;
    background-color: transparent;
    color: #000;
}

select,
textarea {
    background-color: transparent;
    color: #000;
}

.contact-form option {
    color: #000;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: #000;
}

select,
textarea,
.contact-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
    font-size: 14px;
}

.contact-form select:hover {
    cursor: pointer;
}

textarea {
    resize: none;
}

.contact-form button {
    color: #000;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    margin-top: 15px;
    cursor: pointer;
    border: 1px solid #000;
    padding: 12px 20px;
    transition: color 0.25s ease-in-out;
    max-width: 25%;
    float: right;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.contact-form button:hover {
    background: black;
    color: #fff;
    border: 1px solid #000;
}

#form-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.1);
    /* subtle dark overlay */
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 9999;
    padding-top: 80px;
}

.form-success-message {
    background: #bdbdbd;
    color: #000;
    border: 1px solid #999;
    border-radius: 8px;
    padding: 20px 30px;
    max-width: 500px;
    text-align: center;
    font-family: "Inter", sans-serif;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideDownFade 0.4s ease-out;
}

#close-alert {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: #bdbdbd;
    color: #000;
    border: none;
    padding: 0;
    line-height: 1;
    appearance: none;
}

#close-alert:hover {
    scale: 1.1;
    transition: scale 0.2s ease-in-out;
}

@keyframes slideDownFade {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}




/* Footer Styles */
footer {
    background-color: #2c2c2c;
    color: white;
    padding: 20px 0;
    border-top: 1px solid #3a3a3a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 100vw;
    margin: 0 5%;
    padding: 0 10px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: center;
    margin: 0 15px;
    margin-top: 25px;
}

.footer .logo-section {
    text-align: center;
}

.footer .logo {
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 5px;
}

.footer h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 5%;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

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

.footer ul li {
    font-family: "Inter", sans-serif;
    font-weight: 200;
    margin: 12px 0;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #ccc;
}

.footer p {
    font-family: "Inter", sans-serif;
    margin: 5px 0;
}

#footer-contact p {
    font-family: "Inter", sans-serif;
    margin-top: 10%;
    font-weight: 200;
}

.footer .social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin: 8px 0;
}

.footer .social-icons a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
    margin: 5px 0;
}

.footer .social-icons a:hover {
    color: #ccc;
}

.footer .footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    border-top: 1px solid #3a3a3a;
}



/* Rise Animations */
[data-rise="true"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* Activated on page load */
[data-rise="true"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Animations */
[slide-right="true"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[slide-right="true"].visible {
    opacity: 1;
    transform: translateX(0);
}

[slide-left="true"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[slide-left="true"].visible {
    opacity: 1;
    transform: translateX(0);
}






/* Media Queries - Tablet */

    /*----- Hero -----*/
    @media only screen and (max-width: 1024px) {
        .hero {
            flex-direction: column-reverse;
            justify-content: center;
            height: 88%;
            margin: 0 0;
            padding: 0;
        }
        .hero-carousel {
            width: 750px;
            max-width: 750px;
            height: 40%;
            max-height: 40%;
            padding: 0;
            margin-top: 0;
        }
        dotlottie-player {
            width: 750px;
            height: 750px;
        }
        .hero-content {
            width: 100%;
            max-width: 100%;
            height: 50%;
            justify-content: center;
            text-align: center;
            margin: 0;
            padding: 0;
            padding-bottom: 3rem;
        }
        .hero-content h1 {
            font-size: 4.25rem;
            font-optical-sizing: auto;
            line-height: auto;
            padding: 0;
        }
        .hero-content h2 {
            font-size: 72px;
            margin-bottom: 0;
        }
        .text-updates {
            font-size: 32px;
        }
        .hero-buttons {
            justify-content: center;
        }
        .hero-btn a {
            margin-bottom: 5rem;
        }
    }

    /*----- About -----*/

    @media only screen and (max-width: 1024px) {
        #about {
            margin-top: 0;
        }
        .about-container {
            margin-top: 60px;
            background-color: transparent;
        }
        .val .val-content {
            width: 100%;
        }
        .val .about-card {
            display: none;
        }
    }

    /*----- Services -----*/

    @media only screen and (max-width: 1024px) {
}









    /*----- Portfolio -----*/
    @media only screen and (max-width: 1024px) {
    .portfolio-header {
        margin-top: 10%;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .grid-item {
        width: 100%;
        height: auto;
    }
    .overlay-text h3 {
        font-size: 2.5rem;
    }
    .overlay-text p {
        font-size: 1.25rem;
    }
    .overlay-text li {
        font-size: 1rem;
    }
}

    /*----- Testimonials -----*/
    @media only screen and (max-width: 1024px) {
    .testimonials-header {
        margin-top: 15%;
    }
}





    /* FAQs */
    @media only screen and (max-width: 1024px) {
        #faq {
            margin-top: 5%;
        }
        .details-group-example {
            margin-top: 10%;
        }
    }







    /* Contact */
    @media only screen and (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-header {
        margin-top: 15vh;
    }
    .contact-info, .contact-form {
        width: 100%;
        border: none;
        padding: 0;
    }
    .contact-title {
        margin-top: 20%;
    }
    .contact-info {
        border-bottom: 1px solid #bdbdbd;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        gap: 15px;
        padding: 0;
        margin-left: 0;
    }
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 50%;
    }
    #mapLink, #emailText, #contactSocials {
        display: none;
    }
    .contact-item .social-icons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }

    .contact-form {
        margin-top: 20px;
    }
    .contact-form h2 {
        margin: 5% 0;
        font-size: 32px;
        text-align: center;
    }
    .contact-form h2 span {
    font-size: 32px;
}
}

/* Footer */
@media only screen and (max-width: 1024px) {

}










@media (max-width: 480px) {

    /*--- Misc Styles ---*/
    .loader {
        font-size: 2.8em;
    }
    .menu-toggle {
        top: 20px;
        right: 20px;
        padding: 10px;
        font-size: 24px;
    }
    .menu-links li {
        font-size: 20px;
    }
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /*--- Hero ---*/
    #hero {
        height: 95vh;
    }
    .hero {
        max-width: 100%;
        height: 95vh;
        max-height: 95vh;
        margin: 15px 20px;
        padding: 20px 0;
        overflow: hidden;
        flex-direction: column;
    }
    .hero-carousel {
        width: 500px;
        max-width: 500px;
        height: 400px;
        max-height: 400px;
        padding: 0;
    }
    .hero-carousel-inner {
        width: 500px;
        height: 400px;
        max-height: 400px;
    }
    dotlottie-player {
        width: 100%;
        height: 100%;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        column-gap: 0;
        margin: 0;
        padding: 0 5%;
        text-align: left;
    }
    .hero-content h1 {
        padding-top: 40px;
    }
    .hero-content h1,
    .hero-content h2 {
        font-size: 3.25rem;
        align-self: center;
    }
    .hero .title {
        font-size: 1.25rem;
        margin-top: 20px;
        text-align: left;
    }
    .text-updates {
        font-size: 1.5rem;
    }
    .hero-buttons {
        display: inline-flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 40px;
    }
    .hero-btn {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    .hero-btn a {
        font-size: 0.75rem;
        font-weight: 500;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }





    /* About */
    #about {
        margin-top: 120px;
        padding: 20px;
    }
    .about-container {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 30px;
        padding: 0;
        height: 100%;
        margin: 60px 0;
        padding-bottom: 30px;
        background-color: transparent;
    }
    .about-right {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .about-left {
        width: 100%;
        padding: 0;
    }
    .about-btn a {
        font-size: 0.75rem;
        font-weight: 500;
    }
    .about-header {
        margin-top: 120px;
    }
    .about .header-card {
        max-width: 100%;
    }
    .vals {
        margin: 0;
        margin-top: 60px;
    }
    .val {
        padding: 25px;
    }
    .val-content {
        margin: 0;
    }





    /*--- Services Styles ---*/
    #services-section .header-card {
        max-width: 100%;
    }





    /* Portfolio */
    #portfolio {
        margin: 60px 0;
    }
    #portfolio .header-card {
        max-width: 100%;
    }
    .bento-section {
        margin: 0;
    }
    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    .grid-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        width: 100% !important;
    }
    .overlay-text h3 {
        font-size: 1.5rem;
    }
    .overlay-text p {
        font-size: 0.75rem;
    }
    .overlay-text li {
        font-size: 0.5rem;
    }
    .projects-btn a {
        font-size: 0.75rem;
        font-weight: 500;
    }
    .img4 .overlay-text {
        margin-left: 2%;
        margin-bottom: 2%;
    }






    /*--- Testimonial Styles ---*/
    #testimonials {
        margin-top: 120px;
        min-height: 70%;
    }
    .testimonials-header {
        margin-top: 0;
    }
    #testimonials .header-card {
        max-width: 100%;
    }
    .testimonial-container {
        height: 500px;
        max-height: 600px;
    }
    sl-carousel {
        padding: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
    }
    sl-card {
        min-width: 100%;
        height: auto;
        max-height: 100%;
        font-size: 14px;
        padding: 0;
        margin-left: 15px;
        margin-right: 15px;
    }
    sl-card.card-body {
        padding: none;
    }
    sl-card.card-footer {
        margin: 0;
        padding: 5px;
    }
    sl-avatar {
        margin-top: 15px;
        margin-left: 0;
    }
    sl-card .details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    sl-card .details span {
        display: none;
    }
    sl-card .details p {
        margin-top: 0;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    sl-rating {
        font-size: 1rem;
        margin-left: 0;
    }
    span .rating-symbols {
        font-size: 1rem;
    }




    /*--- FAQ Styles ===*/
    #faq {
        padding: 0;
    }
    #faq sl-details p {
        margin: 0 10px;
    }
    #faq .header-card {
        max-width: 100%;
    }






    /*--- Contact Styles ---*/
    #contact {
        padding: 0;
    }
    .contact .header-card {
        max-width: 100%;
    }
    .contact-container {
        padding: 5px;
    }
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 25px;
    }
    .contact-form {
        padding: 10px;
    }
    .contact-form button {
        font-size: 0.75rem;
        font-weight: 500;
    }
    #close-alert {
    bottom: 5px;
    right: 10px;
}




    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: space-around;
        align-items: center;
    }
    .footer-section {
        margin-bottom: 0;
    }
    .footer-section h4 {
        margin-top: 20px;
        font-size: 22px;
        text-decoration: underline;
    }
    .footer-section .social-icons {
        flex-direction: row;
        gap: 25px;
        margin-bottom: 10px;
    }
    .footer-bottom p {
        margin: 0 15px;
        margin-top: 10px;
    }
}