.main-nav {
    margin: 0 auto;
}
.main-nav li.active a {
    color: var(--accent-green);
}
.logo img {
    height: 70px;
}
.main-nav li a {
    color: var(--accent-purple);
}
.hero-title {
    font-size: 1.5rem;
}
.section-title {
    width: 100%;
    text-align: center;
}
.services-grid-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.services-grid-2  .service-card {
    max-width: 380px;
     box-sizing: border-box;
    flex-shrink: 0;
     flex: 0 0 380px;
}
.project-card .project-overlay {
    background-image: url('images/project_details.png');
    background-size: 100% 100%;
    width: 400px;
    height: 130px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100%;
    padding: 0;
    transition: bottom 0.3s;
}
.project-card:hover .project-overlay {
    bottom: -2px;
}
.project-card .project-overlay span.project-category {
    color: black;
    position: absolute;
    top: 30px;
    font-size: 1rem;
    left: 50%;
    transform: translateX(-50%) skew(-10deg);
    /* capital case */
    text-transform:uppercase
}
.project-card .project-overlay p.project-description {
    color: white;
    position: absolute;
    bottom: 15px;
    font-size: 0.7rem;
    left: 50%;
    margin: 0;
    transform: translateX(-50%) skew(-10deg);
}
.contact-subtitle {
    margin-top: 0;
    margin-bottom: 25px;
    max-width: 675px;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 30px;
}
#contactForm .form-group input {
    border:1px solid var(--accent-green) !important;
    padding: 15px 15px;
    border-radius: 25px;
    font-size: 14px !important;
    max-width: 100%;
    box-sizing: border-box;
}

/* Checkbox Styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--accent-green);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

input[type="checkbox"]:checked {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-col p {
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-col p i {
    width: 15px;
}
.footer-col img {
    height: 80px;
}
.footer-col {
    flex:1
}
.logo-col {
    text-align: center;
}
.main-footer {
    padding-bottom: 10px;
}

/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999999999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.cornea-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.cornea {
    position: relative;
    width: 120px;
    height: 120px;
    background: var(--accent-purple);
    border-radius: 50%;
    /* box-shadow: 
        0 0 20px rgba(74, 159, 255, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3); */
    animation: cornea-pulse 2s ease-in-out infinite;
}

.iris {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 50%;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(139, 69, 19, 0.3);
    animation: iris-expand 2s ease-in-out infinite;
}

.pupil {
    position: absolute;
    top: 35%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--accent-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    animation: pupil-dilate 2s ease-in-out infinite;
}

.reflection {
    display: none;
}

.loading-text {
    display: none;
}

/* Animations */
@keyframes cornea-pulse {
    0%, 100% {
        transform: scale(1);
        /* box-shadow: 
            0 0 20px rgba(74, 159, 255, 0.5),
            inset 0 0 30px rgba(0, 0, 0, 0.3); */
    }
    50% {
        transform: scale(1.05);
        /* box-shadow: 
            0 0 30px rgba(74, 159, 255, 0.8),
            inset 0 0 40px rgba(0, 0, 0, 0.4); */
    }
}

@keyframes iris-expand {
    0%, 100% {
        width: 70px;
        height: 70px;
    }
    50% {
        width: 75px;
        height: 75px;
    }
}

@keyframes pupil-dilate {
    0%, 100% {
        width: 15px;
        height: 15px;
    }
    50% {
        width: 18px;
        height: 18px;
    }
}



@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}
.project-mobile-info {
    display: none;
}