body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(59, 59, 59, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.header-full-opacity {
    background: rgba(59, 59, 59, 1); /* Full opacity */
    transition: background 0.3s ease; /* Smooth transition */
}

.logo img {
    width: 143px;
    height: 100px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }


        nav ul li {
            margin-left: 20px;
        }


            nav ul li a {
                text-decoration: none;
                color: #fff;
                font-size: 16px;
            }


.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}


section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
}


.content {
    max-width: 90%;
    z-index: 1;
    color: #333;
    padding: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

h1 {
    font-size: 50px;
    margin: 0px;
    text-align: center;
}

section#home {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}

    section#home .content {
        padding-top: 18%;
        padding-left: 50px;
        width: 900px;
    }

    section#home p {
        font-size: 1.15em;
        color: #000;
        line-height: 1.8;
    }

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255,196,0,0.5);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-size: 16px;
    text-align: center;
}

section#sectors {
    background-color: #f1f1f1;
    justify-content: center;
}

#sectors .content .sector-container:nth-of-type(n+2) {
    margin-top: 30px;
}


section#sectors .content {
    width: 100%;
    text-align: center;
    font-size: 0.95em;
}


.wrap-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 10px;
}
/* Hover effect */
.button:hover {
    background-color: #1079a2;
}

.background-slider {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-image {
    transition: opacity 2s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.first-image {
    background-image: url('/images/section_1_1.jpg');
    opacity: 0.4;
}

.second-image {
    background-image: url('/images/section_1_2.jpg');
    opacity: 0;
}

.third-image {
    background-image: url('/images/section_1_3.jpg');
    opacity: 0;
}

.fourth-image {
    background-image: url('/images/section_1_4.jpg');
    opacity: 0;
}



@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes zoomOut {
    0%, 100% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }
}


.first-image, .third-image {
    animation: zoomIn 20s infinite;
}

.second-image, .fourth-image {
    animation: zoomOut 20s infinite;
}

.sector-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sector {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px;
    justify-content: center;
}


    .sector img {
        width: 100%;
        max-width: 350px;
        height: auto;
        display: block;
        border-radius: 10px;
    }

#sectors h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

#sectors ul li {
    margin-bottom: 6px;
}

#sectors .description {
    text-align: left;
    margin-top: 10px;
    max-width: 600px;
}

.dashed-line {
    margin: auto;
    margin-bottom: 5px;
    margin-top: 5px;
    border: 0;
    border-top: 2px dashed #000;
    width: 950px;
}

section#contactus {
    width: 100%;
    display: block;
    min-height: calc(100vh - 250px);
}

    section#contactus .content {
        display: flex;
        max-width: 1200px;
        width: 100%;
        padding: 14px;
        margin: auto;
    }

#background-contactus {
    height: 220px;
    width: 100%;
    background-image: url('/images/contact-us.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: -2px;
}

.contact-info {
    flex: 1;
    padding-right: 20px;
}

    .contact-info h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .contact-info p {
        font-size: 1.2em;
        color: #666;
    }

.contact-info-items-wrapper {
    display: flex;
    row-gap: 25px;
    flex-direction: column;
}
.contact-item {
    display: flex;
    align-items: center;
}
.contact-item-col-1 img{height:80px;}
.contact-item-col-2 {
    margin-left: 10px;
    font-size: 1.2em
}


.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #007bff;
        }

.submit-btn {
    background-color: #fbc02d;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}


    .submit-btn:hover {
        background-color: #f9a825;
    }

.recaptcha-notice {
    font-size: 0.9em
}


section#aboutus {
    background-color: #fff;
    justify-content: center;
    display: flex;
    padding-top: 50px;
    position: relative;
    scroll-snap-align: start;
}

    section#aboutus ul li {
        margin-bottom: 10px;
    }


    section#aboutus .content {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 0.95em
    }

#footer {
    width: 100%;
    background-color: rgba(255,196,0,0.5);
    color: #fff;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    flex-wrap: wrap;
    padding-top:5px;
}

    #footer .content {
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
        #footer .content .links {
            display: flex;
            flex-wrap: wrap; 
            justify-content: center;
            gap: 15px; 
        }


        #footer .content a {
            color: #000;
            text-decoration: none;
            padding: 0 10px;
        }

            #footer .content a:hover {
                text-decoration: underline;
            }

        #footer .content .info {
            font-size: 0.9em; 
            line-height: 1.5;
        }
#aboutus-map {
    border-radius: 40px;
    width: 600px;
    height: 496px;
}

#aboutus-description {
    padding-left: 80px;
    max-width: 600px;
    text-align: left;
}

#aboutus-map-2 {
    display: none;
}

@media (max-width: 576px) {
}


/* Responsive design */
@media (max-width: 768px) {
    header {
        padding: 5px;
        justify-content: center;
    }

    section p {
        text-align: justify;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(59, 59, 59, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
    }


        nav ul.active {
            display: flex;
        }

        nav ul li {
            margin: 10px 0;
            text-align: center;
        }

    .menu-icon {
        display: block;
    }

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        margin-left: 20px;
    }

        .logo img {
            width: 70px;
            height: 55px;
        }

    h1 {
        font-size: 35px;
    }

    section#home {
        justify-content: center;
        align-items: center;
    }

    section {
        min-height: auto;
    }

    #aboutus-map {
        width: 300px !important;
        height: 248px !important;
    }

    #aboutus-description {
        padding: 20px;
    }

    section#home .content {
        padding: 90px 0px 0px 0px;
        margin-bottom: 20px;
    }

    section#home .button {
        padding: 8px 16px;
        font-size: 0.8em;
    }

    .background-image.first-image {
        background-position-x: 75%;
    }

    .background-image.second-image {
        background-position-x: 75%;
    }

    .content {
        padding: 20px;
    }



    section#aboutus .content {
        flex-direction: column;
    }

    section#aboutus p {
        text-align: justify;
    }

    section#aboutus h1 {
        text-align: center;
    }

    section#contactus .content {
        flex-direction: column;
        max-width: 85%;
        padding: 20px;
        font-size: 0.95em;
    }

        section#contactus .content input, section#contactus .content textarea {
            max-width: 92%;
        }

    section#contactus {
        padding-bottom: 0px;
    }

        section#contactus .button {
            padding: 12px 16px;
        }

    #footer {
        height: auto;
        padding: 10px 0px 10px 0px;
        font-size: 0.7em
    }

    #background-contactus {
        height: 80px;
        top: -4px;
    }

    .contact-info p {
        font-size: 1.3em;
        color: #666;
    }

    #sectors .content .sector-container:nth-of-type(n+2) {
        margin-top: 0px;
    }

    .contact-item-col-1 img {
        height: 50px;
    }

    section#contactus {
        min-height: calc(100vh - 194px);
    }
}



@media (max-width: 1199px) {
    section#aboutus {
        padding-top: 0px;
    }

    #sectors h3 {
        text-align: center;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .dashed-line {
        margin: auto;
        margin-bottom: 20px;
        margin-top: 40px;
        border: 0;
        border-top: 2px dashed #000;
        width: 100%;
    }

    .sector-container {
        gap: 10px;
    }

    .sector {
        margin: 0 15px;
    }

    #aboutus-map-1 {
        display: none;
    }

    #aboutus-map-2 {
        display: block;
        text-align: center;
    }

    .disclaimer-wrapper {
        font-size: 0.8em;
        padding:10px!important;
        margin-top:70px!important;
    }
        .disclaimer-wrapper .title {
            font-size: 0.9em;
        }

}

@media (min-width: 1200px) {
    .sector-container {
        gap: 20px;
    }

    .sector {
        margin: 0 10px;
    }

    #background-contactus {
        position: relative;
        top: -38px;
    }
}


.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loading-spinner {
    display: none;
}

.recaptcha-badge-container {
    position: relative;
}

.grecaptcha-badge {
    position: absolute !important;
    left: 90px;
    top: 7px;
}
.disclaimer-wrapper {
    opacity: 0.9;
    opacity: 0.8;
    font-weight: 300;
    width: 1200px;
    box-sizing: border-box;
    border-radius: 20px 0 20px 0;
    -webkit-box-shadow: 0 2px 0px #777;
    -moz-box-shadow: 0 2px 10px #777;
    box-shadow: 0px 1px 2px #777;
    padding: 35px;
    background-color: rgba(255,255,255,1);
    margin-top: 125px;
    text-align: justify;
}
    .disclaimer-wrapper .title {
        font-weight: bold;
        text-decoration: underline;
        padding-bottom: 15px;
        color: #FF5722;
        text-align:left;
        font-size: 1.5em;
    }
