/* Default (Light Theme) */
:root {
    --font-primary: 'MS PGothic', sans-serif;
    --font-secondary: 'MS PGothic', sans-serif;

    /* Light Theme Colors */
    --text-color: #ffffff;
    --bg-color: #000000;
    --heading-color: orange;
    --muted-color: #666;
    --link-color: #007bff;
    --link-hover-color: #0056b3;
    --border-color: #ddd;
    --blockquote-bg: #f9f9f9;
    --code-bg: #f4f4f4;
}

/* Dark Theme */
.dark-theme {
    --text-color: #ffffff;
    --bg-color: #000000;
    --heading-color: orange;
    --muted-color: #bbb;
    --link-color: #4da3ff;
    --link-hover-color: #1a73e8;
    --border-color: #444;
    --blockquote-bg: #1e1e1e;
    --code-bg: #2a2a2a;
}

/* Global Styles */
* {

    font-size: 16px;
    color: var(--text-color);
    background-color: black;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--heading-color) !important;

    font-weight: 700 !important;
}

h1 {
    font-size: 40px !important;
}

h2 {
    font-size: 32px !important;
}

h3 {
    font-size: 28px !important;
}

h2 span {
    font-size: 22px !important;
    color: var(--text-color);
}



h4 {
    font-size: 26px !important;
}

h5 {
    font-size: 20px !important;
}

h6 {
    font-size: 16px;
    font-weight: 600;
}

@media only screen and (max-width:768px) {
    h1 {
        font-size: 26px !important;

    }

    h2 {
        font-size: 22px !important;
        margin-top: 30px !important;

    }

    h2 span {
        font-size: 18px !important;

    }

    h3 {
        font-size: 20px !important;

    }

}

/* Paragraphs */
p {
    margin-bottom: 0 !important;
    font-size: 20px !important;
    font-weight: normal !important;
    font-family: var(--font-secondary) !important;

}

p span {
    font-size: 20px !important;
    color: orange;

}

li::marker {
    font-size: 20px !important;
    margin-right: 5px;
    font-family: 'MS PGothic', sans-serif;
}

@media only screen and (max-width:768px) {

    p,
    p span {
        font-size: 14px !important;
        margin-bottom: 1px !important;
        font-weight: 600 !important;

    }

    li::marker {
        font-size: 14px !important;
        padding-right: 5px;

    }


    ul {
        padding-left: 15px !important;
    }
}


/* Links */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;

}


/* Blockquotes */
blockquote {
    font-style: italic;
    color: var(--muted-color);
    background: var(--blockquote-bg);


}

/* Code */
code {
    font-family: 'Courier New', monospace;
    background: var(--code-bg);

    border-radius: 3px;
    color: var(--text-color);
}

/* Preformatted Code Blocks */
pre {
    font-family: 'Courier New', monospace;
    background: var(--code-bg);
    color: var(--text-color);
    border-radius: 5px;

}

/* Strong & Emphasis */
strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/* Small Text */
small {
    font-size: 0.875rem;
    color: var(--muted-color);
}

/* Muted Text */
.muted {
    color: var(--muted-color);
}

/* Theme Toggle Button */
.theme-toggle {

    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background: var(--link-color);
    color: white;
    transition: background 0.3s;
}

.theme-toggle:hover {
    background: var(--link-hover-color);
}

/* Responsive Typography */



.home-page-body-col-left {

    align-items: center;
    justify-content: center;
    align-content: center;
}



@media (max-width: 992px) {
    .home-page-body-col-left {
        min-height: 50vh;
    }
}

@media (max-width: 768px) {
    .home-page-body-col-left {
        min-height: 40vh;
    }
}

@media (max-width: 480px) {
    .home-page-body-col-left {
        min-height: 30vh;
    }
}


.home-page-body-col-left ul {

    list-style: none;
}

.home-page-body-col-left ul li {
    margin: 20px 0;
}

.home-page-body-col-left ul li a {
    text-decoration: none;
    color: white;
    font-size: 34px;
    padding: 0 20px;
    transition: color 0.3s ease;
    font-weight: 700;
    font-family: 'MS PGothic', sans-serif !important;

}

@media only screen and (min-width:1400px) {
    .home-page-body-col-left ul li a {
        font-size: 34px;
        font-family: 'MS PGothic', sans-serif;
    }


}

@media only screen and (min-width:1600px) {
    .home-page-body-col-left ul li a {
        font-size: 36px;
    }


}
@media only screen and (max-width:1000px){
    .service-header-body{
        margin-top: 30px;
    }

}


.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: grey;
    padding: 15px 20px;
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;

    background-color: grey;
}

.footer-content span {
    background-color: grey;
    font-size: 16px;
    font-weight: 700;

}

.footer-1 {
    display: block;
    width: 100%;
    background-color: grey;
    padding: 15px 20px;
}

.footer-mobile {
    display: none;
    width: 100%;
    background-color: grey;
    padding: 10px 20px;
}

.footer-content-1-col {
    background-color: grey;
    border: none;
    padding: 3px 5px;

}

.footer-content-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;

    background-color: grey;
}

@media only screen and (max-width:1000px) {
    .footer-content-1 {
        display: block;
    }

    .footer-1 {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    .footer-content-1 span {
        font-size: 12px !important;

    }

    .footer-content-1 p {
        font-size: 12px !important;
        background-color: grey;
        padding-top: 5px;

    }
    .footer-content-1 p span{
        font-size: 12px !important;
        background-color: grey;
        padding-top: 5px;

    }

}

@media only screen and (max-width:768px) {
    .footer-content {
        display: block;
    }

    .footer {
        display: none;
    }

    .footer-mobile {
        display: block;
    }


    .footer-content p {
        font-size: 12px !important;
        background-color: grey;
        padding: 5px;

    }
    .footer-content p span{
        font-size: 12px !important;
        background-color: grey;
        padding: 5px;

    }

    .footer-content-col {
        background-color: grey;
    }

}

.footer-content-1 span {
    background-color: grey;
    font-size: 16px;

}

.home-page-body-col-left,
.home-page-body-col-right {
    height: 100vh;
}

.home-page-body-col-left ul {
    padding: 0;
}

.home-page-body-col-left ul li {
    margin: 10px 0;
}

/* Adjusting Image in Right Column */
.home-page-body-col-right img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .home-page-body-col-left,
    .home-page-body-col-right {
        height: auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width:800px) {
    .home-page-body-col-left ul li a {
        font-size: 18px;
        padding: 8px 0;

    }

    .home-page-body-col-left ul li {
        margin: 5px 0;
    }

    .home-page-body-col-right img {
        height: auto;
        margin: 20px 0;
        margin-left: 10px;

    }

}

#service-header-body-col-header-video {
    width: 58%;
    padding: 0;
}

@media only screen and (max-width:1000px) {
    #service-header-body-col-header-video {
        width: 99%;
        padding: 10px;

    }

    .emptyspace {
        display: none;

    }
}

.home-page-body-col-left ul li a:hover {
    color: #17a2b8 !important;
}

.home-page-body-col-right,
.home-page-body-col-right img {
    background-color: white;
}

.home-page-body-col-right {
    align-items: center;
    justify-content: center;
    align-content: center;

}

.service-body-con-area-1 {
    margin-top: 30px;
}

@media only screen and (max-width:768px) {
    .home-page-body-col-right {
        padding: 50px 0;
    }

    .service-body-con-area-1 {
        margin-top: 0px;
    }
}

.service-header-body-col-l {
    align-content: end;
}



/* Footer Styling */
.footer {
    color: white;

}

.footer-content span {
    cursor: pointer;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

#acknowledgements:hover,
#attributionTrigger:hover {
    color: orange;
}



/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 25%;
    top: 10%;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.modal-content {
    border: 3px solid orange;
    width: 50%;
    border-radius: 10px;
    position: relative;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
    margin-bottom: 1px;
    padding: 15px;
}

.modal-content p {
    margin: 0;
    text-align: justify;
}


.close {
    position: absolute;
    top: 11px;
    right: 18px;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    background-color: transparent;
}

.close:hover {
    color: red;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer Styling */
.footer-1 {
    color: white;

}

.footer-content-1 span {
    cursor: pointer;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
    font-family: 'MS PGothic', sans-serif;
    font-weight: bold;
}

#acknowledgements:hover,
#attributionTrigger:hover {
    color: orange;
}



/* Modal Styling */
.modal-1 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 25%;
    top: 10%;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.modal-content-1 {
    border: 3px solid orange;
    width: 50%;

    position: relative;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

@media only screen and (max-width:768px) {
    .modal-content-1 {
        width: 80%;
    }

    .modal-1 {
        left: 10%;
        top: 5%;
    }

}

.modal-content-1 h2 {
    margin-bottom: 1px;
    padding: 15px 0 10px 0;
}

@media only screen and (max-width:768px) {
    .modal-content-1 h2 {

        padding: 10px 8px;
        margin-top: 10px !important;
    }
}

.modal-content-1 p {
    margin: 0;
    text-align: justify;
}


.close-1 {
    position: absolute;
    top: 11px;
    right: 18px;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    background-color: transparent;
}

.close-1:hover {
    color: red;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-active {
    filter: blur(5px);
    /* Adjust the blur intensity */
    pointer-events: none;
    /* Prevent interaction with background content */
}


/* home-button */
.home-back-button {
    display: inline-block;
}

.home-back-button a {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    color: white;

    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.home-back-button a:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #FF4500, #FF8C00);
}

.home-back-button a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.home-back-button a:hover::before {
    left: 100%;
}

.home-back-button i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.home-back-button a:hover i {
    transform: rotate(-10deg);
}

#year,
#year-mobile {
    color: white;
}

.completed-project-imagesec-body {
    display: grid;
    grid-template-columns: 2fr;
    gap: 40px;
    margin-top: 10px !important;

    justify-items: center;

}
@media only screen and (max-width:1000px){
    .completed-project-imagesec-body{
        margin-top: 0 !important;
    }
}
.completed-project-imagesec img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:768px) {
    .completed-project-imagesec-body {
        gap: 20px;
    }
}

.contact-us-submit-btn {
    background-color: orange;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.contact-us-submit-btn:hover {
    background-color: #ff8800;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 136, 0, 0.5);
}

/* Click effect */
.contact-us-submit-btn:active {
    transform: scale(0.95);
}

/* Ripple effect */
.contact-us-submit-btn::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease-out;
    opacity: 0;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform-origin: center;
}

.contact-us-submit-btn:active::after {
    transform: scale(3);
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}