
/*Navbar Style - Start*/

/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem; /* 16px */
    z-index: 4;
}

/* Navbar Menu */
.nav-menu {
    display: flex;
    justify-content: space-evenly;
}

.nav-menu li {
    list-style: none;
}

/* Navbar Links */
.navbar a {
    font-size: 1rem; /* 16px */
    padding: 10px 15px; /* Spacing for desktop */
    text-decoration: none;
}

.nav-link {
    color: #ffffff;
}

.nav-link:hover {
    cursor: pointer;
    opacity: 0.8;
}

.nav-separator {
    width: 10px;
    border-left: #fff solid 1px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    padding-left: 24px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}

/* Mobile View Styles */
@media only screen and (max-width: 768px) {

    /* Navbar Adjustments */
    .navbar {
        justify-content: left;
    }

    .navbar a {
        padding: 6px 10px;
    }

    /* Nav Menu (Mobile) */
    .nav-menu {
        flex-direction: column;
        text-align: center;
        height: 100vh;
        padding: 12px 0;
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #333333;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    /* Active Nav Menu */
    .nav-menu.active {
        left: 0;
    }

    /* Nav Item (Mobile) */
    .nav-item {
        padding: 20px;
    }

    /* Hamburger Button (Mobile) */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 3;
    }
}

/* Small Screen Adjustments */
@media only screen and (max-width: 425px) {
    .bar {
        width: 20px;
        height: 2px;
    }
}
/*Navbar Style - End*/


/*Home - Start*/
.home {
    background: no-repeat center / cover;
}

.home .logo {
    text-align: center;
}

.home .logo img {
    width: 80%;
}

.home .logo .text {
}

/* Media Queries */
@media only screen and (max-width: 1024px) {
    .home .logo img {
        width: 70%;
    }
}

@media only screen and (max-width: 425px) {
    .home .logo .text {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 320px) {
    .home .logo .text {
        font-size: 1rem;
    }
}
/*Home - End*/

/*CEO - Start*/
.ceo {
    padding: 0 200px;
}

.ceo .text h1 {
    line-height: 1;
}

.ceo .text h3 {
    line-height: 1;
    padding-bottom: 40px;
}

.ceo .image {
    position: relative;
}

.ceo .image img {
    max-height: calc(100vh - 200px);
    width: auto;
    object-fit: contain;
}

.ceo .name-and-title {
    background: #A5232F;
    width: 80%;
    padding: 8px;
    text-align: center;
    position: absolute;
    bottom: 0;
}

.ceo .name-and-title .line {
    background: white;
    width: 90%;
    height: 1px;
    margin: 4px auto;
}

.ceo .name-and-title p {
    padding: 0;
}

/* Media Queries */
@media only screen and (max-width: 1024px) {
    .ceo {
        padding: 0 120px;
    }

    .ceo .image img {
        max-height: calc(100vh - 160px);
        width: auto;
        object-fit: contain;
    }
}

@media only screen and (max-width: 768px) {
    .ceo {
        padding: 0 80px;
    }

    .ceo .image img {
        max-height: calc(100vh - 300px);
        width: auto;
        object-fit: contain;
    }
}

@media only screen and (max-width: 425px) {
    .ceo {
        padding: 80px 40px;
    }
}
/*CEO - End*/

/*Quote - Start*/
.quote {
    text-align: center;
}

.quote .content {
    padding: 80px 160px;
    padding-bottom: 0px;
}

.quote .cta-link {
    text-decoration: none;
    font-weight: 900;
}

.quote .cta-button {
    display: inline-block;
    padding: 12px 24px;
    margin: 40px 0;
    background: #B71C1C;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote .cta-button:hover {
    background-color: #9b111e;
}

/* Media Queries */
@media only screen and (max-width: 1024px) {
    .quote .content {
        padding: 40px 80px;
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .quote .content {
        padding: 40px 80px;
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 425px) {
    .quote .content {
        padding: 40px 60px;
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 375px) {
    .quote .content {
        padding: 40px 40px;
    }
}
/*Quote - End*/

/*About Us - Start*/
.about-us {
    padding: 0 200px;
}

.about-us .text h1 {
    line-height: 1;
}

.about-us .text .description {
    text-align: center;
}

.about-us .text .description h2 {
    line-height: 1;
    padding-bottom: 20px;
}

/* Media Queries */
@media only screen and (max-width: 1024px) {
    .about-us {
        padding: 0 120px;
    }
}

@media only screen and (max-width: 768px) {
    .about-us {
        padding: 0 80px;
    }
}

@media only screen and (max-width: 425px) {
    .about-us {
        padding: 80px 40px;
    }

    .about-us .text .description {
        text-align: left;
    }

    .about-us .text .description h2 {
        line-height: 1;
        padding-bottom: 40px;
    }
}
/*About Us - End*/

/*Vision Mission - Start*/
.vision-mission {
    padding: 0 200px;
}

.vision-mission .text h1 {
    line-height: 1;
}

.vision-mission .text .description {
    padding: 40px;
    padding-bottom: 0px;
}

.vision-mission .text .description p {
    font-size: 1.3rem;
    margin-left: 20px;
}

/* Media Queries */
@media only screen and (max-width: 1024px) {
    .vision-mission {
        padding: 0 120px;
    }

    .vision-mission .text .description {
        padding: 28px;
        padding-bottom: 0;
    }

    .vision-mission .text .description p {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    .vision-mission {
        padding: 0 80px;
    }

    .vision-mission .text .description {
        padding: 28px;
        padding-bottom: 0;
    }

    .vision-mission .text .description p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 425px) {
    .vision-mission {
        padding: 80px 40px;
    }

    .vision-mission .text h1 {
        padding-bottom: 40px;
    }

    .vision-mission .text .description {
        padding: 0;
        padding-bottom: 20px;
    }

    .vision-mission .text .description p {
        font-size: 12px;
    }
}
/*Vision Mission - End*/
/* Gallery - Start */
.gallery {
    padding: 0 200px;
}

.gallery h1 {
    line-height: 1;
    padding-bottom: 40px;
}

.gallery .carousel-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.gallery .carousel-section .name {
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
}

.gallery .carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery .carousel-wrapper .carousel-images {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.gallery .carousel-images img {
    width: 315px;
    height: 210px;
    object-fit: contain;
    object-position: center;
}

.gallery .carousel-wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: white;
    border: none;
}

.gallery .carousel-wrapper i:hover {
    opacity: 0.8;
}

.gallery .carousel-wrapper .prev-button {
    left: 14px;
}

.gallery .carousel-wrapper .next-button {
    right: 14px;
}

.gallery .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery .modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.gallery .modal .modal-prev,
.gallery .modal .modal-next {
    position: absolute;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    z-index: 1001;
    background-color: rgba(0,0,0,0.3);
    border-radius: 5px;
}
.gallery .modal .modal-prev { left: 20px; }
.gallery .modal .modal-next { right: 20px; }

.gallery .modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Gallery - Media Queries */
@media only screen and (max-width: 1024px) {
    .gallery {
        padding: 0 120px;
    }

    .gallery .carousel-images img {
        width: 236px;
        height: 159px;
    }
}

@media only screen and (max-width: 768px) {
    .gallery {
        padding: 160px 80px;
    }

    .gallery .carousel-wrapper {
        width: 500px;
        height: 333px;
        margin: 0 auto;
    }

    .gallery .carousel-images img {
        width: 500px;
        height: 333px;
    }

    .gallery .modal .close {
        top: 10px;
        right: 25px;
        font-size: 30px;
    }
}

@media only screen and (max-width: 425px) {
    .gallery {
        padding: 80px 40px;
    }

    .gallery .carousel-wrapper {
        width: 320px;
        height: 213px;
    }

    .gallery .carousel-images img {
        width: 320px;
        height: 213px;
    }

    .gallery .modal .close {
        font-size: 25px;
    }
    
    .gallery .modal .modal-prev,
    .gallery .modal .modal-next {
        font-size: 1rem;
    }
    .gallery .modal .modal-prev { left: 5px; }
    .gallery .modal .modal-next { right: 5px; }
}

@media only screen and (max-width: 375px) {
    .gallery .carousel-wrapper {
        width: 240px;
        height: 160px;
    }

    .gallery .carousel-images img {
        width: 240px;
        height: 160px;
    }
}

@media only screen and (max-width: 320px) {
    .gallery .carousel-wrapper {
        width: 240px;
        height: 160px;
    }

    .gallery .carousel-images img {
        width: 240px;
        height: 160px;
    }

    .gallery .modal .close {
        top: 10px;
        right: 20px;
        font-size: 20px;
    }
}
/* Gallery - End */

/* Video Testimony - Start */
.video-testimony {
    padding: 0 200px;
}

.video-testimony h1 {
    line-height: 1;
    padding-bottom: 40px;
}

.video-testimony .description {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    column-gap: 20px;
}

.video-testimony .description .testimony {
    border: #E0AA3E solid 1px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.video-testimony .description .video {
    border: #E0AA3E solid 1px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
    min-height: 175px;
    overflow: hidden;
}

.video-testimony .description .video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Video Testimony - Media Queries */
@media only screen and (max-width: 1024px) {
    .video-testimony {
        padding: 0 120px;
    }
}

@media only screen and (max-width: 768px) {
    .video-testimony {
        padding: 160px 80px;
    }

    .video-testimony .description {
        align-items: center;
    }

    .video-testimony .description > * {
        width: 500px;
        margin: 0 auto 20px auto;
    }

    .video-testimony .description .video {
        height: 281px;
    }
}

@media only screen and (max-width: 425px) {
    .video-testimony {
        padding: 80px 40px;
    }

    .video-testimony .description .video {
        height: 194px;
    }
}

@media only screen and (max-width: 375px) {
    .video-testimony .description .video {
        height: 166px;
    }

    .video-testimony .description .video {
        height: 166px;
    }
}

@media only screen and (max-width: 320px) {
    .video-testimony .description .video {
        height: 135px;
    }
}
/* Video Testimony - End */

/* Our Services - Start */
.our-services {
    padding: 0 200px;
}

.our-services h1 {
    line-height: 1;
    padding-bottom: 40px;
}

.our-services .description {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.our-services .description .title {
    padding-bottom: 8px;
}

.our-services .description ul {
    border: #E0AA3E solid 1px;
    padding: 20px 20px 20px 32px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
    min-height: 315px;
}

.our-services .description ul li p {
    padding: 0 0 12px 0;
    font-size: 1rem;
}

.our-services .description ul li:last-child p {
    padding: 0;
}

/* Our Services - Media Queries */
@media only screen and (max-width: 1024px) {
    .our-services {
        padding: 0 120px;
    }

    .our-services .description ul li p {
        padding: 0 0 12px 0;
        font-size: inherit;
    }
}

@media only screen and (max-width: 768px) {
    .our-services {
        padding: 160px 80px;
    }

    .our-services .description > * {
        padding-bottom: 20px;
        width: 400px;
        margin: 0 auto;
    }

    .our-services .description ul {
        min-height: 0;
    }
}

@media only screen and (max-width: 425px) {
    .our-services {
        padding: 80px 40px;
    }
}
/* Our Services - End */

/* Contact Us - Start */
.contact-us {
    padding: 0 200px;
}

.contact-us .text h1 {
    line-height: 1;
}

.contact-us .text h3 {
    line-height: 1;
    padding-bottom: 20px;
}

.contact-us .form {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
}

.contact-us .form .input {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px 0;
}

.contact-us .form input,
textarea {
    width: 100%;
    margin-bottom: 15px;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 8px 5px;
    background: none;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

.contact-us .form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-us .form input:focus,
textarea:focus {
    border-bottom-color: #A5232F;
}

.contact-us .form button {
    padding: 10px 20px;
    background-color: #A5232F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 24px;
}

.contact-us .form button:hover {
    background-color: #9b111e;
}

/* Contact Us - Media Queries */
@media only screen and (max-width: 1024px) {
    .contact-us {
        padding: 0 120px;
    }
}

@media only screen and (max-width: 768px) {
    .contact-us {
        padding: 160px 80px;
    }
}

@media only screen and (max-width: 425px) {
    .contact-us {
        padding: 80px 40px;
    }

    .contact-us .form {
        padding: 14px;
    }

    .contact-us .form button {
        padding: 8px 16px;
    }
}
/* Contact Us - End */

/* Footer Styles */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #333333;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer .logo img {
    max-width: 140px;
    height: auto;
}

.footer .address p {
    margin: 0;
    font-size: 0.9rem;
}

.footer .social a {
    margin: 0 10px;
    font-size: 1.8rem !important;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .social a:hover {
    color: #A5232F;
}

/* Media Queries for Footer */
@media only screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}



