:root {
    --primary: #5CBCA6;
    --text: #E8DFD7;
    --dark: #23262D;
    --box: #121A21;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    cursor: none;
}

body,
a,
button,
.hover-target {
    cursor: none;
}

.cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary, var(--primary));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--dark);
}

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body:hover .cursor {
    opacity: 0.5;
}

body .cursor.hovered {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.75;
}

@font-face {
    font-family: 'MV Boli';
    src: url('/fonts/mvboli.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




/* Fullscreen loader styling */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark);
    z-index: 9999;
}

/* SVG container styling */
#loader svg {
    width: 100px;
    /* Adjust size as needed */
    height: auto;
    transform-origin: center;
    animation: scaleIn 0.5s ease forwards;
}

/* SVG path animation styling */
.cls-1 {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLogo 2s ease forwards;
}

.cls-w {
    fill: none;
    stroke: var(--text);
    stroke-width: 0.5px;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLogo 2s ease forwards;
}

.cls-f {
    fill: none;
    stroke: var(--primary);
    stroke-width: 0.5px;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLogo 2s ease forwards;
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Drawing animation */
@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

/* Fade out animation for loader */
.loader-fade {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader-fade.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Hide main content by default */
#main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#main-content.visible {
    opacity: 1;
}


/* Subheader */
.subheader {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);

}

.subheader .container {
    display: flex;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.social-links a {
    color: var(--primary);
    text-decoration: none;
    margin-right: 25px;
    font-size: 14px;
    display: grid;
    grid-template-columns: 1fr;

}

.social-links {
    display: flex;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--primary);
    font-size: 14px;
}

.appointment-btn {
    background: var(--primary);
    color: var(--text);
    border: none;
    padding: 20px;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    padding: 10px;

}

.appointment-btn i {
    color: var(--text);
    border: none;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;

}

/* Main Header */
.main-header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 41px;
    z-index: 999;
    transition: all 0.3s;
    position: fixed;
    backdrop-filter: blur(3px);

}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    order: 1;
}

.logo img {
    height: 70px;
    width: auto;
}



.desktop-nav {
    order: 2;
    margin-right: 6%;
}

.desktop-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.desktop-nav a,
.desktop-nav .dropdown-trigger {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.desktop-nav a:hover {
    color: var(--primary);
}

/* Restore Termin button styling */
.desktop-nav .termin-btn {
    background: var(--primary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.desktop-nav .termin-btn:hover {
    opacity: 0.9;
    color: var(--dark);
}

/* Add dropdown styles */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-nav .dropdown-menu {
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--box);
    min-width: 180px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .dropdown-menu a {
    padding: 8px 20px;
    display: block;
    width: 100%;
    text-align: left;
    border-left: 3px solid transparent;
    font-size: 13px;
}

.desktop-nav .dropdown-menu a:hover {
    background: var(--dark);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.desktop-nav .dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

/* Mobile Menu Dropdown */
.mobile-menu .dropdown-menu {
    display: none;
    background: var(--box);
    padding-left: 20px;
}

.mobile-menu .dropdown.active .dropdown-menu {
    display: block;
}

.mobile-menu .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
}

.mobile-menu .dropdown.active .dropdown-trigger {
    color: var(--primary);
}

.mobile-menu .dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    order: 3;
    display: none;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text);
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(23, 26, 31, 0.8), rgba(23, 26, 31, 1), var(--dark), var(--dark));
    padding: 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    max-height: 600px;
}

.mobile-menu nav {
    padding: 20px 40px;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu nav ul li:last-child {
    border-bottom: none;
}

.mobile-menu nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 15px 0;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
    color: var(--text);
    padding: 3%;
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-header .container {
        padding: 20px 40px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 30px;
    }

    .logo {
        grid-column: 1;
    }

    .logo img {
        height: 45px;
    }

    .mobile-menu-btn {
        grid-column: 2;
        padding: 10px;
        margin-right: 10px;
    }

    .mobile-menu-btn span {
        width: 35px;
        height: 2px;
        margin: 8px 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    .mobile-menu nav {
        padding: 20px;
    }

    .main-header {
        top: 0;
    }

    .main-header .container {
        padding: 20px 25px;
    }




}

body.menu-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1200px) {

    .subheader .container,
    .main-header .container {
        padding: auto;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {

    .contact-info .email,
    .contact-info .phone {
        display: none;
    }

    .social-links a {
        margin-right: 20px;
    }

    .contact-info {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .subheader {
        padding: 8px 0;
    }

    .appointment-btn {
        padding: 20px;
        font-size: 13px;
    }

    .social-links a {
        margin-right: 15px;
    }
}


/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 5%;
}


.team-section {
    padding-left: 20px;
    margin: auto;
}

.team-text {
    text-align: center;
    margin: auto;
}


/* Services Section */
.services-section {
    padding: 100px 0;
    width: 100%;
    background-color: var(--dark);
    text-align: center;
}

.services-header {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 30px;
}

.subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0.8;
}

.title {
    color: var(--text);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-icon {
    background-color: var(--box);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
}

.service-item h4 {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 250px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .title {
        font-size: 1.8rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
}

.testimonial-card {
    background: var(--box);
    padding: 30px;
    margin: 20px;
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}


#logo-scroll {
    display: none;
    /* Hidden by default */
}


/* Footer */
footer {
    background: var(--box);
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    background: var(--dark);
    border: none;
    color: var(--primary);
    flex: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .project-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 100px;
    background-color: var(--dark);
}

.hero-swiper {
    width: 100%;
    height: 110vh;
    top: -200px
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-content h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    text-align: center;
    font-size: 1rem;
    color: var(--text);
    max-width: 600px;
    margin-bottom: 30px;
}

.primary-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--text);
    padding: 15px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s;
    width: fit-content;
    border: solid var(--primary);
}

.primary-btn:hover {
    background: transparent;
    color: var(--text);
    border: solid var(--primary);
}



.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 85px;
    }

    .slide-content {
        padding: 0 25px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }


}

/* Experience Section Styles */
.experience-section {
    padding: 100px 0;
    background-color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    background-color: transparent;
    border-style: none;
}

.experience-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 10px;
}

.years-box {
    width: 100%;
    padding: 0px 20px 20px 20px;
}



.section-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.experience-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.projects-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    align-items: left;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.welcome-content h1 {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.welcome-content h2 {
    font-size: 1.5rem;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.welcome-content p {
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.secondary-btn {
    background: var(--primary);
    color: var(--text);
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 10px;
    border: solid var(--primary);
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
}


.secondary-btn:hover {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 500;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0px 0px 0px 20px;
    }

    .experience-section {
        padding: 60px 0;
    }

    .years-box {
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.6rem;
        font-weight: 500;
    }

    .welcome-content {
        text-align: center;
        align-items: center;
    }

    .welcome-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        font-weight: 500;
    }

    .welcome-content h2 {
        font-size: 1.6rem;
    }

    .years-content .number {
        font-size: 3rem;
    }
}

/* Projects Section Styles */
.projects-section {
    padding: 100px 0;
    position: relative;
}

.projects-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.projects-wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 20px 0;
}

.projects-1 {
    justify-content: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 20px 0;
}

.projects-wcontent {
    display: flex;
    width: 250px;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.projects-wcontent h1 {
    font-size: 24px;
}

.projects-icontent {
    display: flex;
    flex-direction: column;
}

.projects-icontent h1 {
    padding-top: 30px;
    font-size: 128px;
    font-family: "Montserrat";
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--dark);
    text-stroke: var(--dark);
    width: 137px;
    height: 156px;
}

.projects-icontent h2 {
    padding-top: 30px;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 700;
    color: var(--dark);
}

.projects-icontent p {
    padding-top: 20px;
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 500;
    color: var(--dark);
}

.projects-icontent img {

    transform: translate(-120%);
    bottom: 0;
    position: absolute;
}

.projects-icontent img:hover {
    transform: translate(-120%);
    bottom: 0;
    position: absolute;
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}



.project-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #D2C9C0;
}



.projects-icontent {
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}


.project-card:hover .project-overlay {
    background: #D2C9C0;
    height: 80px;
    top: auto;
}

.project-card:hover .projects-icontent {
    transform: translateX(-10%);
    transition-delay: 0.2s;
}

/* Button styles remain unchanged but always visible */
.view-more {
    position: relative;
    z-index: 3;
    background: transparent;
    color: var(--text);
    border: none;
    padding: 20px;
    font-size: 0.9rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .view-more::after {
    width: 100%;
    transition-delay: 0.4s;
}

.project-card:hover .view-more i {
    transform: translateX(5px);
    transition: transform 0.4s ease;
}

/* Add smooth transition for initial state */
.project-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Project label (always visible) */
.project-title {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--text);
    font-size: 0.9rem;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 500;
}

/* Overlay with button */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #D2C9C0;
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
}

.view-more {
    background: transparent;
    color: var(--dark);
    border: none;
    padding: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-more i {
    font-size: 0.8rem;
    color: var(--dark);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}


@media (max-width: 480px) {

    .projects-1 {
        justify-content: left;
        display: block;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
        padding: 20px 0;
    }

    .projects-wcontent {
        display: flex;
        width: auto;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }
}


/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 0.3s;
    z-index: 2;
}

.scroll-btn.prev {
    left: 10px;
}

.scroll-btn.next {
    right: 10px;
}

.scroll-btn i {
    color: var(--box);
}

.scroll-btn:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .project-card {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .projects-container {
        padding: 0 30px;
    }

    .project-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .projects-container {
        padding: 0 20px;
    }

    .project-card {
        flex: 0 0 270px;
    }
}



/* Services Section Styles */
.services-section {
    width: 80%;
    margin: auto;
    background-color: var(--dark);
}



.services-header {
    max-width: 800px;
    margin: 0 auto 80px;
    align-items: center;
}

.services-svg {
    width: 20%;
    float: right;
    position: absolute;
    transform: translatey(-60%);
    right: 0px;
}

.subtitle {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.title {
    color: var(--text);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-item {
    background-color: transparent;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.ihres {
    font-family: 'Patrick Hand';
    font-weight: 300;
    /* Light weight */
    font-size: 26px;
    color: var(--primary);
    margin-top: 20px;
    text-align: center;
}

.service-icon {
    background-color: var(--box);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-item h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    color: var(--text);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        width: 80%;
        margin: auto;
        padding: 60px 20px;
    }

    .services-svg {
        width: 40%;
        float: right;
        position: absolute;
        transform: translatey(-30%);

    }

    .title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .service-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 5%;
    background-color: var(--dark);
    text-align: center;
}

.section-title {
    color: var(--text);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 500;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--box);
    padding: 40px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}


.testimonial-text {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 30px 0;
    position: relative;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.author-info p {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 5px 0 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .section-subtitle {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 30px;
    }

    .quote {
        font-size: 3rem;
        top: 20px;
        left: 30px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--dark);
}

.cta-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-title {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}



/* Footer Styles */
.footer {
    background-color: var(--box);
    padding: 80px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--primary);
    font-size: 0.7rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-column p {
    font-size: 0.7rem;
    padding-bottom: 20px;
}

.footer-logo {
    justify-self: center;
    margin-bottom: 20px;
    width: 200px;
}

.footer-contact {
    justify-self: center;
}

.footer-contact a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.3rem;
}

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



.footer-column ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 100%;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: var(--dark);
    color: var(--text);
    width: 100%;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text);
    opacity: 0.7;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 15px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 10px;
}

.newsletter-form button:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
    transform: translateY(-50%);
    transition: border-color 0.3s;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        position: static;
        transform: none;
        margin-top: 10px;
        width: 100%;
        padding: 12px 20px;
    }
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--primary);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
}

.footer-social {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px;
}

.social-icons a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.copyright {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Add these media queries for subheader */
@media (max-width: 768px) {
    .subheader {
        display: none;
        /* Hide subheader on mobile */
    }

    /* Adjust main header position when subheader is hidden */
    .main-header {
        top: 0;
    }

    /* Adjust hero section margin when subheader is hidden */
    .hero-section {
        margin-top: 60px;
        /* Reduce margin since subheader is hidden */
    }
}

/* Style the mobile contact info */
.mobile-contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.mobile-contact-info a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-contact-info i {
    color: var(--primary);
    font-size: 14px;
}

.mobile-contact-info .appointment-btn {
    margin: 10px 0;
    width: 100%;
    padding: 12px 20px;
}

.mobile-social-links {
    align-items: center;
    display: flex;
    gap: 20px;
    margin: 15px;
    justify-self: center;
}

.mobile-social-links a {
    color: var(--primary);
    font-size: 16px;
}

@media (max-width: 768px) {
    .mobile-menu nav {
        padding: 20px;
    }

    .mobile-contact-info {
        padding: 10 20px;
    }
}

/* Add at the start of the file */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Adjust based on your header height */
}

/* Update section styles to ensure proper spacing */
section[id] {
    scroll-margin-top: 100px;
    /* Matches scroll-padding-top */
}

/* Update the active link styles */
.desktop-nav a.active,
.mobile-menu a.active {
    color: var(--primary);
    position: relative;
}

.desktop-nav a.active::after,
.mobile-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Add this at the top of your CSS file for global section styling */
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

/* Update existing section styles */
.hero-section,
.experience-section,
.services-section,
.testimonials-section,
.projects-section,
.cta-section,
.contact-section {
    width: 100%;
}

/* Container styles for each section */
.hero-content,
.experience-container,
.services-container,
.testimonials-container,
.projects-container,
.cta-container,
.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {

    .section-container,
    .hero-content,
    .experience-container,
    .services-container,
    .testimonials-container,
    .projects-container,
    .cta-container,
    .contact-container {
        width: 95%;
    }
}

@media (max-width: 768px) {

    .section-container,
    .hero-content,
    .experience-container,
    .services-container,
    .testimonials-container,
    .projects-container,
    .cta-container,
    .contact-container {
        width: 90%;
        padding: 60px 0;
    }
}

/* Specific section fixes */
.services-section {
    width: 100%;
    /* Update from 80% to 100% */
}

.services-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section {
    padding: 100px 0;
    /* Remove percentage padding */
}

.projects-container {
    padding: 0;
    /* Remove the 50px padding */
    max-width: 1200px;
    margin: 0 auto;
    width: 85%;
}

.cta-section {
    padding: 100px 0;
    /* Remove percentage padding */
}

.footer {
    padding: 80px 0 30px;
    /* Remove percentage padding */
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Update scroll behavior settings */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Adjust based on your header height */
}

/* Ensure sections have proper margin/padding */
section[id] {
    scroll-margin-top: 100px;
    /* Should match scroll-padding-top */
}

/* Update modal styles */
body.modal-open {
    overflow: hidden;
}

/* When modal is closed, ensure scrolling is restored */
body:not(.modal-open) {
    overflow: auto !important;
}

/* Remove any scroll-behavior from html */
html {
    scroll-padding-top: 0;
    scroll-behavior: auto;
}

/* Reset body styles */
body {
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Only apply overflow hidden when modal is actually open */
body.modal-open {
    overflow: hidden !important;
}

/* Update section spacing */
section[id] {
    scroll-margin-top: 80px;
    /* Adjust based on your header height */
    position: relative;
}



/* Remove all scroll-related styles */
html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    height: auto;
}

/* Only block scroll for active modals */
body.modal-open {
    overflow: hidden;
}

/* Basic section spacing */
section[id] {
    padding-top: 80px;
    /* Adjust based on your header height */
}

/* Add these styles for the dropdown */
.desktop-nav .dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(92, 188, 166, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text);
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--box);
    color: var(--primary);
}

/* Mobile styles for dropdown */
@media (max-width: 768px) {
    .mobile-menu .dropdown-menu {
        position: static;
        background: var(--box);
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        display: none;
    }

    .mobile-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu .dropdown-trigger {
        justify-content: space-between;
    }
}

/* Updated Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Desktop Dropdown */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.desktop-nav .dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.desktop-nav .dropdown-menu a {
    padding: 12px 25px;
    display: block;
    color: var(--text);
    transition: all 0.3s ease;
    text-align: left;
}

.desktop-nav .dropdown-menu a:hover {
    background: var(--dark);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

/* Mobile Dropdown */
.mobile-menu .dropdown-menu {
    display: none;
    background: transparent;
    border: none;
    border-radius: 0;
    padding-left: 20px;
}

.mobile-menu .dropdown.active .dropdown-menu {
    display: block;
}

/* Updated Dropdown Styles for vertical stacking */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 300px;
    /* Increased width for better readability */
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    z-index: 1000;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .dropdown-menu li {
    width: 100%;
    /* Full width for each item */
    margin: 0;
    padding: 0;
}

.desktop-nav .dropdown-menu a {
    width: 100%;
    padding: 15px 25px;
    display: block;
    color: var(--text);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    /* Add border for hover effect */
}

.desktop-nav .dropdown-menu a:hover {
    color: var(--primary);
    padding-left: 30px;
    /* Slight indent on hover */
}

/* Ensure dropdown is centered under its trigger */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Updated Dropdown Styles - More Compact */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    /* Reduced width */
    padding: 8px 0;
    /* Reduced padding */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.desktop-nav .dropdown-menu a {
    width: 100%;
    padding: 8px 20px;
    /* Reduced padding */
    display: block;
    color: var(--text);
    font-size: 14px;
    /* Smaller font size */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Reduced letter spacing */
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1.4;
    /* Tighter line height */
}

.desktop-nav .dropdown-menu a:hover {
    color: var(--primary);
    padding-left: 25px;
    /* Smaller indent on hover */
}

/* Add/Update modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}



/* Filter buttons */
.category-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Update cursor styles */
@media (hover: hover) and (pointer: fine) {

    /* Only apply custom cursor on devices with hover capability (desktop) */
    body,
    a,
    button,
    .hover-target {
        cursor: none;
    }

    .cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
    background-color: var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body:hover .cursor {
        opacity: 0.5;
    }

    body .cursor.hovered {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.75;
    }
}

@media (hover: none) or (pointer: coarse) {

    /* Reset cursor styles for touch devices */
    body,
    a,
    button,
    .hover-target {
        cursor: auto;
    }

    .cursor {
        display: none;
    }
}

/* Project Modal Specific Styles */
.project-modal-content {
    background: var(--dark);
    color: var(--text);
    max-width: 900px;
    width: 90%;
    margin: 20px auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.project-modal-header {
    position: relative;
    overflow: hidden;
    display: flex;
}

.project-modal-header img {
    object-fit: none;
    margin: auto;
}

.project-modal-body {
    padding: 40px;
}

.project-modal-title {
    color: var(--text);
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-modal-title .price {
    color: var(--primary);
    font-size: 20px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: var(--box);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item i {
    color: var(--primary);
    font-size: 18px;
}

.project-description {
    margin: 30px 0;
    line-height: 1.6;
}

.project-features {
    margin: 30px 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary);
}

/* Modal Responsive Adjustments */
@media (max-width: 768px) {
    .project-modal-header {
        height: 500px;
    }

    .project-modal-body {
        padding: 20px;
    }

    .project-modal-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .project-details {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 80px;
    /* Adjust based on your header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark);
    padding: 20px;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* Mobile Dropdown Styles */
.mobile-menu .dropdown {
    position: relative;
}

.mobile-menu .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 18px;
    text-align: left;
}

.mobile-menu .dropdown-trigger i {
    transition: transform 0.3s ease;
}

.mobile-menu .dropdown-menu {
    display: none;
    overflow: scroll;
    height: 200px;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-menu .dropdown-menu.active {
    display: block;
}

.mobile-menu .dropdown-menu a {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text);
    opacity: 0.8;
}

.mobile-menu .dropdown-menu a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Button Active State */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

:root {
    --primary: #5CBCA6;
    --text: #E8DFD7;
    --dark: #23262D;
    --box: #121A21;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    cursor: none;
}

body,
a,
button,
.hover-target {
    cursor: none;
}

.cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary, var(--primary));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--dark);
}

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body:hover .cursor {
    opacity: 0.5;
}

body .cursor.hovered {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.75;
}

@font-face {
    font-family: 'MV Boli';
    src: url('/fonts/mvboli.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}




/* Fullscreen loader styling */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark);
    z-index: 9999;
}

/* SVG container styling */
#loader svg {
    width: 100px;
    /* Adjust size as needed */
    height: auto;
    transform-origin: center;
    animation: scaleIn 0.5s ease forwards;
}

/* SVG path animation styling */
.cls-1 {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawLogo 2s ease forwards;
}

.cls-w {
    fill: none;
    stroke: var(--text);
    stroke-width: 0.5px;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLogo 2s ease forwards;
}

.cls-f {
    fill: none;
    stroke: var(--primary);
    stroke-width: 0.5px;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLogo 2s ease forwards;
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Drawing animation */
@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

/* Fade out animation for loader */
.loader-fade {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader-fade.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Hide main content by default */
#main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#main-content.visible {
    opacity: 1;
}


/* Subheader */
.subheader {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);

}

.subheader .container {
    display: flex;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.social-links a {
    color: var(--primary);
    text-decoration: none;
    margin-right: 25px;
    font-size: 14px;
    display: grid;
    grid-template-columns: 1fr;

}

.social-links {
    display: flex;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--primary);
    font-size: 14px;
}

.appointment-btn {
    background: var(--primary);
    color: var(--text);
    border: none;
    padding: 20px;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    padding: 10px;

}

.appointment-btn i {
    color: var(--text);
    border: none;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;

}

/* Main Header */
.main-header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 41px;
    z-index: 999;
    transition: all 0.3s;
    position: fixed;
    backdrop-filter: blur(3px);

}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    order: 1;
}

.logo img {
    height: 70px;
    width: auto;
}



.desktop-nav {
    order: 2;
    margin-right: 6%;
}

.desktop-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.desktop-nav a,
.desktop-nav .dropdown-trigger {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.desktop-nav a:hover {
    color: var(--primary);
}

/* Restore Termin button styling */
.desktop-nav .termin-btn {
    background: var(--primary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.desktop-nav .termin-btn:hover {
    opacity: 0.9;
    color: var(--dark);
}

/* Add dropdown styles */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-nav .dropdown-menu {
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--box);
    min-width: 180px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .dropdown-menu a {
    padding: 8px 20px;
    display: block;
    width: 100%;
    text-align: left;
    border-left: 3px solid transparent;
    font-size: 13px;
}

.desktop-nav .dropdown-menu a:hover {
    background: var(--dark);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.desktop-nav .dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

/* Mobile Menu Dropdown */
.mobile-menu .dropdown-menu {
    display: none;
    background: var(--box);
    padding-left: 20px;
}

.mobile-menu .dropdown.active .dropdown-menu {
    display: block;
}

.mobile-menu .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
}

.mobile-menu .dropdown.active .dropdown-trigger {
    color: var(--primary);
}

.mobile-menu .dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    order: 3;
    display: none;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text);
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(23, 26, 31, 0.8), rgba(23, 26, 31, 1), var(--dark), var(--dark));
    padding: 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    max-height: 600px;
}

.mobile-menu nav {
    padding: 20px 40px;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu nav ul li:last-child {
    border-bottom: none;
}

.mobile-menu nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 15px 0;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
    color: var(--text);
    padding: 3%;
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-header .container {
        padding: 20px 40px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 30px;
    }

    .logo {
        grid-column: 1;
    }

    .logo img {
        height: 45px;
    }

    .mobile-menu-btn {
        grid-column: 2;
        padding: 10px;
        margin-right: 10px;
    }

    .mobile-menu-btn span {
        width: 35px;
        height: 2px;
        margin: 8px 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    .mobile-menu nav {
        padding: 20px;
    }

    .main-header {
        top: 0;
    }

    .main-header .container {
        padding: 20px 25px;
    }




}

body.menu-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1200px) {

    .subheader .container,
    .main-header .container {
        padding: auto;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {

    .contact-info .email,
    .contact-info .phone {
        display: none;
    }

    .social-links a {
        margin-right: 20px;
    }

    .contact-info {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .subheader {
        padding: 8px 0;
    }

    .appointment-btn {
        padding: 20px;
        font-size: 13px;
    }

    .social-links a {
        margin-right: 15px;
    }
}


/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 5%;
}


.team-section {
    padding-left: 20px;
    margin: auto;
}

.team-text {
    text-align: center;
    margin: auto;
}


/* Services Section */
.services-section {
    padding: 100px 0;
    width: 100%;
    background-color: var(--dark);
    text-align: center;
}

.services-header {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 30px;
}

.subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0.8;
}

.title {
    color: var(--text);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-icon {
    background-color: var(--box);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
}

.service-item h4 {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 250px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .title {
        font-size: 1.8rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
}

.testimonial-card {
    background: var(--box);
    padding: 30px;
    margin: 20px;
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}


#logo-scroll {
    display: none;
    /* Hidden by default */
}


/* Footer */
footer {
    background: var(--box);
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    background: var(--dark);
    border: none;
    color: var(--primary);
    flex: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .project-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 100px;
    background-color: var(--dark);
}

.hero-swiper {
    width: 100%;
    height: 110vh;
    top: -200px
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-content h1 {
    text-align: center;
        font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
    }

.slide-content p {
    text-align: center;
        font-size: 1rem;
    color: var(--text);
    max-width: 600px;
    margin-bottom: 30px;
}

.primary-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--text);
    padding: 15px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s;
    width: fit-content;
    border: solid var(--primary);
}

.primary-btn:hover {
    background: transparent;
    color: var(--text);
    border: solid var(--primary);
}



.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 85px;
    }

    .slide-content {
        padding: 0 25px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }


}

/* Experience Section Styles */
.experience-section {
    padding: 100px 0;
    background-color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    background-color: transparent;
    border-style: none;
}

.experience-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 10px;
}

.years-box {
    width: 100%;
    padding: 0px 20px 20px 20px;
}



.section-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.experience-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.projects-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    align-items: left;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.welcome-content h1 {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.welcome-content h2 {
    font-size: 1.5rem;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.welcome-content p {
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.secondary-btn {
    background: var(--primary);
    color: var(--text);
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 10px;
    border: solid var(--primary);
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
}


.secondary-btn:hover {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 500;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0px 0px 0px 20px;
    }

    .experience-section {
        padding: 60px 0;
    }

    .years-box {
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.6rem;
        font-weight: 500;
    }

    .welcome-content {
        text-align: center;
        align-items: center;
    }

    .welcome-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        font-weight: 500;
    }

    .welcome-content h2 {
        font-size: 1.6rem;
    }

    .years-content .number {
        font-size: 3rem;
    }
}

/* Projects Section Styles */
.projects-section {
    padding: 100px 0;
    position: relative;
}

.projects-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.projects-wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 20px 0;
}

.projects-1 {
    justify-content: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding: 20px 0;
}

.projects-wcontent {
    display: flex;
    width: 250px;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.projects-wcontent h1 {
    font-size: 24px;
}

.projects-icontent {
    display: flex;
    flex-direction: column;
}

.projects-icontent h1 {
    padding-top: 30px;
    font-size: 128px;
    font-family: "Montserrat";
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--dark);
    text-stroke: var(--dark);
    width: 137px;
    height: 156px;
}

.projects-icontent h2 {
    padding-top: 30px;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 700;
    color: var(--dark);
}

.projects-icontent p {
    padding-top: 20px;
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 500;
    color: var(--dark);
}

.projects-icontent img {

    transform: translate(-120%);
    bottom: 0;
    position: absolute;
}

.projects-icontent img:hover {
    transform: translate(-120%);
    bottom: 0;
    position: absolute;
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}



.project-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #D2C9C0;
}



.projects-icontent {
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}


.project-card:hover .project-overlay {
    background: #D2C9C0;
    height: 80px;
    top: auto;
}

.project-card:hover .projects-icontent {
    transform: translateX(-10%);
    transition-delay: 0.2s;
}

/* Button styles remain unchanged but always visible */
.view-more {
    position: relative;
    z-index: 3;
    background: transparent;
    color: var(--text);
    border: none;
    padding: 20px;
    font-size: 0.9rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .view-more::after {
    width: 100%;
    transition-delay: 0.4s;
}

.project-card:hover .view-more i {
    transform: translateX(5px);
    transition: transform 0.4s ease;
}

/* Add smooth transition for initial state */
.project-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Project label (always visible) */
.project-title {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--text);
    font-size: 0.9rem;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 500;
}

/* Overlay with button */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #D2C9C0;
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
}

.view-more {
    background: transparent;
    color: var(--dark);
    border: none;
    padding: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-more i {
    font-size: 0.8rem;
    color: var(--dark);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}


@media (max-width: 480px) {

    .projects-1 {
        justify-content: left;
        display: block;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
        padding: 20px 0;
    }

    .projects-wcontent {
        display: flex;
        width: auto;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }
}


/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 0.3s;
    z-index: 2;
}

.scroll-btn.prev {
    left: 10px;
}

.scroll-btn.next {
    right: 10px;
}

.scroll-btn i {
    color: var(--box);
}

.scroll-btn:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .project-card {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .projects-container {
        padding: 0 30px;
    }

    .project-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .projects-container {
        padding: 0 20px;
    }

    .project-card {
        flex: 0 0 270px;
    }
}


.milestone-section {
    background: url('../images/milestone.jpg') no-repeat center center / cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 30vh;
}

.milestone-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Left Side Text */
.milestone-text {
    max-width: 50%;
}

.milestone-text h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E8DFD7;
    margin-bottom: 10px;
}

.milestone-text h2 {
    line-height: 1.5;
    font-weight: bold;
}

/* Right Side Stats */
.milestone-stats {
    max-width: 40%;
    position: relative;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.milestone-item {
    text-align: center;
    position: relative;
}

.milestone-number-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.milestone-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
}

.milestone-symbol {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.milestone-item p {
    font-size: 14px;
    color: #E8DFD7;
    margin-top: 5px;
}

/* Divider Lines */
.milestone-divider::before,
.milestone-divider::after {
    content: '';
    position: absolute;
    background: #E8DFD7;
}

.milestone-divider::before {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.milestone-divider::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
/* Services Section Styles */
.services-section {
    width: 80%;
    margin: auto;
    background-color: var(--dark);
}



.services-header {
    max-width: 800px;
    margin: 0 auto 80px;
    align-items: center;
}

.services-svg {
    width: 20%;
    float: right;
    position: absolute;
    transform: translatey(-60%);
    right: 0px;
}

.subtitle {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.title {
    color: var(--text);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-item {
    background-color: transparent;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.ihres {
    font-family: 'Patrick Hand';
    font-weight: 300;
    /* Light weight */
    font-size: 26px;
    color: var(--primary);
    margin-top: 20px;
    text-align: center;
}

.service-icon {
    background-color: var(--box);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-item h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    color: var(--text);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        width: 80%;
        margin: auto;
        padding: 60px 20px;
    }

    .services-svg {
        width: 40%;
        float: right;
        position: absolute;
        transform: translatey(-30%);

    }

    .title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .service-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 5%;
    background-color: var(--dark);
    text-align: center;
}

.section-title {
    color: var(--text);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 500;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--box);
    padding: 40px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}


.testimonial-text {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 30px 0;
    position: relative;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.author-info p {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 5px 0 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .section-subtitle {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 30px;
    }

    .quote {
        font-size: 3rem;
        top: 20px;
        left: 30px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--dark);
}

.cta-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-title {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}



/* Footer Styles */
.footer {
    background-color: var(--box);
    padding: 80px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--primary);
    font-size: 0.7rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-column p {
    font-size: 0.7rem;
    padding-bottom: 20px;
}

.footer-logo {
    justify-self: center;
    margin-bottom: 20px;
    width: 200px;
}

.footer-contact {
    justify-self: center;
}

.footer-contact a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.3rem;
}

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



.footer-column ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 100%;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: var(--dark);
    color: var(--text);
    width: 100%;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text);
    opacity: 0.7;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 15px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 10px;
}

.newsletter-form button:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
    transform: translateY(-50%);
    transition: border-color 0.3s;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        position: static;
        transform: none;
        margin-top: 10px;
        width: 100%;
        padding: 12px 20px;
    }
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--primary);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
}

.footer-social {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px;
}

.social-icons a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.copyright {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-content {
        text-align: center;
    }
}

/* Add these media queries for subheader */
@media (max-width: 768px) {
    .subheader {
        display: none;
        /* Hide subheader on mobile */
    }

    /* Adjust main header position when subheader is hidden */
    .main-header {
        top: 0;
    }

    /* Adjust hero section margin when subheader is hidden */
    .hero-section {
        margin-top: 60px;
        /* Reduce margin since subheader is hidden */
    }
}

/* Style the mobile contact info */
.mobile-contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.mobile-contact-info a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-contact-info i {
    color: var(--primary);
    font-size: 14px;
}

.mobile-contact-info .appointment-btn {
    margin: 10px 0;
    width: 100%;
    padding: 12px 20px;
}

.mobile-social-links {
    align-items: center;
    display: flex;
    gap: 20px;
    margin: 15px;
    justify-self: center;
}

.mobile-social-links a {
    color: var(--primary);
    font-size: 16px;
}

@media (max-width: 768px) {
    .mobile-menu nav {
        padding: 20px;
    }

    .mobile-contact-info {
        padding: 10 20px;
    }
}

/* Add at the start of the file */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Adjust based on your header height */
}

/* Update section styles to ensure proper spacing */
section[id] {
    scroll-margin-top: 100px;
    /* Matches scroll-padding-top */
}

/* Update the active link styles */
.desktop-nav a.active,
.mobile-menu a.active {
    color: var(--primary);
    position: relative;
}

.desktop-nav a.active::after,
.mobile-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Add this at the top of your CSS file for global section styling */
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

/* Update existing section styles */
.hero-section,
.experience-section,
.services-section,
.testimonials-section,
.projects-section,
.cta-section,
.contact-section {
    width: 100%;
}

/* Container styles for each section */
.hero-content,
.experience-container,
.services-container,
.testimonials-container,
.projects-container,
.cta-container,
.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {

    .section-container,
    .hero-content,
    .experience-container,
    .services-container,
    .testimonials-container,
    .projects-container,
    .cta-container,
    .contact-container {
        width: 95%;
    }
}

@media (max-width: 768px) {

    .section-container,
    .hero-content,
    .experience-container,
    .services-container,
    .testimonials-container,
    .projects-container,
    .cta-container,
    .contact-container {
        width: 90%;
        padding: 60px 0;
    }
}

/* Specific section fixes */
.services-section {
    width: 100%;
    /* Update from 80% to 100% */
}

.services-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section {
    padding: 100px 0;
    /* Remove percentage padding */
}

.projects-container {
    padding: 0;
    /* Remove the 50px padding */
    max-width: 1200px;
    margin: 0 auto;
    width: 85%;
}

.cta-section {
    padding: 100px 0;
    /* Remove percentage padding */
}

.footer {
    padding: 80px 0 30px;
    /* Remove percentage padding */
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Update scroll behavior settings */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Adjust based on your header height */
}

/* Ensure sections have proper margin/padding */
section[id] {
    scroll-margin-top: 100px;
    /* Should match scroll-padding-top */
}

/* Update modal styles */
body.modal-open {
    overflow: hidden;
}

/* When modal is closed, ensure scrolling is restored */
body:not(.modal-open) {
    overflow: auto !important;
}

/* Remove any scroll-behavior from html */
html {
    scroll-padding-top: 0;
    scroll-behavior: auto;
}

/* Reset body styles */
body {
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Only apply overflow hidden when modal is actually open */
body.modal-open {
    overflow: hidden !important;
}

/* Update section spacing */
section[id] {
    scroll-margin-top: 80px;
    /* Adjust based on your header height */
    position: relative;
}



/* Remove all scroll-related styles */
html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    height: auto;
}

/* Only block scroll for active modals */
body.modal-open {
    overflow: hidden;
}

/* Basic section spacing */
section[id] {
    padding-top: 80px;
    /* Adjust based on your header height */
}

/* Add these styles for the dropdown */
.desktop-nav .dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(92, 188, 166, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text);
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--box);
    color: var(--primary);
}

/* Mobile styles for dropdown */
@media (max-width: 768px) {
    .mobile-menu .dropdown-menu {
        position: static;
        background: var(--box);
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        display: none;
    }

    .mobile-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu .dropdown-trigger {
        justify-content: space-between;
    }
}

/* Updated Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Desktop Dropdown */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.desktop-nav .dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.desktop-nav .dropdown-menu a {
    padding: 12px 25px;
    display: block;
    color: var(--text);
    transition: all 0.3s ease;
    text-align: left;
}

.desktop-nav .dropdown-menu a:hover {
    background: var(--dark);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

/* Mobile Dropdown */
.mobile-menu .dropdown-menu {
    display: none;
    background: transparent;
    border: none;
    border-radius: 0;
    padding-left: 20px;
}

.mobile-menu .dropdown.active .dropdown-menu {
    display: block;
}

/* Updated Dropdown Styles for vertical stacking */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 300px;
    /* Increased width for better readability */
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    z-index: 1000;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .dropdown-menu li {
    width: 100%;
    /* Full width for each item */
    margin: 0;
    padding: 0;
}

.desktop-nav .dropdown-menu a {
    width: 100%;
    padding: 15px 25px;
    display: block;
    color: var(--text);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    /* Add border for hover effect */
}

.desktop-nav .dropdown-menu a:hover {
    color: var(--primary);
    padding-left: 30px;
    /* Slight indent on hover */
}

/* Ensure dropdown is centered under its trigger */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Updated Dropdown Styles - More Compact */
.desktop-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    /* Reduced width */
    padding: 8px 0;
    /* Reduced padding */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-nav .dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.desktop-nav .dropdown-menu a {
    width: 100%;
    padding: 8px 20px;
    /* Reduced padding */
    display: block;
    color: var(--text);
    font-size: 14px;
    /* Smaller font size */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Reduced letter spacing */
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1.4;
    /* Tighter line height */
}

.desktop-nav .dropdown-menu a:hover {
    color: var(--primary);
    padding-left: 25px;
    /* Smaller indent on hover */
}

/* Add/Update modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}



/* Filter buttons */
.category-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Update cursor styles */
@media (hover: hover) and (pointer: fine) {

    /* Only apply custom cursor on devices with hover capability (desktop) */
    body,
    a,
    button,
    .hover-target {
        cursor: none;
    }

    .cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        background-color: var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body:hover .cursor {
        opacity: 0.5;
    }

    body .cursor.hovered {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.75;
    }
}

@media (hover: none) or (pointer: coarse) {

    /* Reset cursor styles for touch devices */
    body,
    a,
    button,
    .hover-target {
        cursor: auto;
    }

    .cursor {
        display: none;
    }
}

/* Project Modal Specific Styles */
.project-modal-content {
    background: var(--dark);
    color: var(--text);
    max-width: 900px;
    width: 90%;
    margin: 20px auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.project-modal-header {
    position: relative;
    overflow: hidden;
    display: flex;
}

.project-modal-header img {
    object-fit: none;
    margin: auto;
}

.project-modal-body {
    padding: 40px;
}

.project-modal-title {
    color: var(--text);
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-modal-title .price {
    color: var(--primary);
    font-size: 20px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: var(--box);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item i {
    color: var(--primary);
    font-size: 18px;
}

.project-description {
    margin: 30px 0;
    line-height: 1.6;
}

.project-features {
    margin: 30px 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary);
}

/* Modal Responsive Adjustments */
@media (max-width: 768px) {
    .project-modal-header {
        height: 500px;
    }

    .project-modal-body {
        padding: 20px;
    }

    .project-modal-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .project-details {
        grid-template-columns: 1fr;
    }
}
