/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* Fallback for video */
    color: #000000;
    overflow-x: hidden;
}

/* Header */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px); /* Safari-compatible */
    -webkit-backdrop-filter: blur(8px); /* Add the webkit prefix */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, opacity 0.4s ease;
}

/* Split Background */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: linear-gradient(45deg, #fff 20%, #17946c 20%);
    padding: 1.5rem 5%;
    box-sizing: border-box; /* Ensures padding behaves consistently */
}

/* Logo */
.logo img {
    height: 40px;
    border-radius: 5px;
}

/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 0;
    padding: 0; /* Ensure consistent spacing */
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block; /* Ensures Safari handles padding and spacing properly */
}

.main-nav a:hover {
    color: #E67E22;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

/* Hide dropdown initially */
.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 0.5rem 0;
    overflow: hidden;
    z-index: 1000;
    min-width: 200px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-sizing: border-box; /* Fix spacing issues */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Dropdown Menu Items */
.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0; /* Ensure consistent spacing */
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid #eee;
    box-sizing: border-box; /* Prevent overflow */
}

.dropdown-menu li a:hover {
    background: #E67E22;
    color: #fff;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Inactive Links */
.inactive {
    pointer-events: none;
    color: #ccc;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    justify-content: flex-end; /* Align language switcher to the right */
}

.language-switcher a {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-size: 0.9rem; /* Adjusted font size for mobile */
    display: inline-block; /* Safari compatibility */
}

.language-switcher a.active {
    color: #E67E22;
}

.language-switcher a:hover {
    color: #E67E22;
}



/* Contact Button Styling */
.contact-btn {
    position: relative;
    background: #E67E22;
    border: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    width: 120px;
    text-transform: uppercase;
    cursor: pointer;
    transform: skew(-21deg);
    overflow: hidden;
    color: #fff;
}


.contact-btn span {
    display: inline-block;
    transform: skew(21deg);
}


.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: rgb(255, 255, 255);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.contact-btn:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
}

/* Align Button with Menu */
.main-nav li:last-child {
    margin-left: auto;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.menu-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.menu-btn span {
    width: 35px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.menu-btn:hover span {
    background: #E67E22;
}

/* Slide-in Mobile Menu */
.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #17946c;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
    transition: right 0.5s ease;
    z-index: 1500;
}

.slide-menu-content {
    padding: 3rem;
    text-align: center;
}

.slide-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.slide-menu a {
    display: block;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.4rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-menu a:hover {
    color: #E67E22;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Slide Menu Blur Fix */
body.blur {
    overflow: hidden;
}

.blur::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav ul {
        display: none;
    }
    .mobile-menu {
        display: block;
    }

    .slide-menu a {
        font-size: 0.9rem;
    }

    .language-switcher {
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .nav-container {
        background: linear-gradient(45deg, #fff 40%, #17946c 40%);
    }

}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Places video behind content */
    overflow: hidden;
    background: url('/res/hero_ct_bg.jpeg') no-repeat center center / cover; /* Fallback image */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video scales properly */
}

/* Hero Content */
.hero-content {
    display: flex;
    justify-content: flex-start; /* Aligns content horizontally to the left */
    align-items: flex-end; /* Aligns content vertically to the bottom */
    padding: 0 0 20px 20px; /* Adds padding: 20px from bottom and left */
    width: 90%;
    height: 100%;
    max-width: 90%;
    z-index: 1;

}

/* Left Orange Content */
.left-content {
    width: 2%; /* Left column 10% */
    height: 300px;
    margin-right: 20px;
    align-items: center;
    background: #E67E22; /* Orange background */
}

/* Right Text Content */
.right-content {
    width: 90%; /* Right column 90% */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    animation: fade-in 1.5s ease forwards; /* Fade-in animation */
    opacity: 0; /* Initial state for animation */
    transform: translateY(20px);
}

.right-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    padding-right: 30%;
    padding-bottom: 5%;

}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.animate-slide-in {
    animation: slide-in 1.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .right-content h1 {
        font-size: 2.5rem;
    }
    
}


/* Partner Section */
.partners-section {
    background-color: #ffffff;
    color: #000000;
    overflow: hidden;
    box-sizing: border-box;
}

.partners-carousel h2 {
    margin-right: 10%;
    font-weight: 400;
    text-align: right;
}

/* Carousel Container */
.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hide overflow for smooth scrolling */
}

.logos-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: infinite-scroll 15s linear infinite;
    will-change: transform;
}

.logos-wrapper img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logos-wrapper img:hover {
    transform: scale(1.1);
}

/* Keyframe for Smooth Infinite Scrolling */
@keyframes infinite-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logos-wrapper {
        gap: 20px;
    }

    .logos-wrapper img {
        height: 80px; /* Smaller logos on mobile */
    }

    .partners-header h2 {
        font-size: 2rem; /* Smaller heading */
    }
}


/* General Styling for the About Us Section */
#about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    background-color: #ffffff;
    color: #000;
}

/* Wrapper for Responsive Design */
.about-us-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 90%;
    flex-wrap: nowrap;
    justify-content: center;
}

/* Image Styling */
.about-us-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Text Content Styling */
.about-us-content {
    max-width: 1000px;
    color: #000;
    
}

.about-us-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
}

.about-us-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    font-size: 1rem;
    color: #e67f22;
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
    color: black;
    transform: translateX(5px);
}

.learn-more-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .reverse-layout-revers {
        flex-direction: column-reverse; /* Reverse order for mobile */
    }

    .about-us-image img {
        max-width: 300px;
    }

    .about-us-content h2 {
        font-size: 1.8rem;
    }

    .about-us-content p {
        font-size: 1rem;
    }
}

.separator {
    height: 5px; /* Fixed height */
    background-color: #e67f22; /* Line color */
    margin: 0 auto; /* Centers the separator by default */
    display: block; /* Ensures proper alignment */
}


/* Mobile: Center vertically and horizontally */
@media (max-width: 768px) {
    .separator {
        margin: 20px auto; /* Add space above and below on smaller screens */
    }
}

/* Tablet and PC: Adjust alignment if needed */
@media (min-width: 768px) {
    .separator {
        margin: 0; /* Reset for larger screens (can be adjusted inline) */
    }
}


/* Reverse Layout Specific Class */
.reverse-layout {
    display: flex; /* Ensures flex container for alignment */
    flex-direction: row-reverse; /* Reverses the order of child elements */
    gap: 2rem; /* Maintains spacing between elements */
    align-items: center; /* Centers items vertically */
    justify-content: center; /* Ensures proper spacing between items */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Reverse Layout Image */
.reverse-layout .about-us-image {
    flex: 1 1 50%; /* Sets the image to occupy half the width */
    max-width: 700px; /* Limits the image size */
    text-align: center; /* Centers the image */
}

/* Reverse Layout Content */
.reverse-layout .about-us-content {
    flex: 1 1 50%; /* Sets the content to occupy half the width */
    text-align: left; /* Aligns text to the left */
}

/* Responsive Adjustments for Reverse Layout */
@media (max-width: 768px) {
    .reverse-layout {
        flex-direction: column-reverse; /* Stacks items vertically on smaller screens */
        text-align: center; /* Centers content for smaller screens */
    }

    .reverse-layout .about-us-image,
    .reverse-layout .about-us-content {
        flex: 1 1 100%; /* Full width for both items on smaller screens */
    }

    .reverse-layout .about-us-content {
        
        text-align: center; /* Aligns text to the left */
    }
    .about-us-content{
        
        width: 90%;
    }
}






/* General Section Styling */
#services {
    padding: 2rem 0;
}

.section-title {
    text-align: right;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Service Card Styling */
.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

/* Service Button Styling */
.service-btn {
    position: absolute;
    bottom: -50px; /* Hidden initially */
    left: 50%;
    transform: translateX(-50%) skew(-21deg);
    background: #E67E22;
    border: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    width: 120px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    transition: all 0.3s ease;
}

.service-btn span {
    display: inline-block;
    transform: skew(21deg);
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: #17946c;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.service-btn:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
}

/* Show Button on Hover */
.service-card:hover .service-btn {
    bottom: 1rem; /* Slide up on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }

    .service-card:hover .service-btn {
        display: none; /* Disable hover button on smaller screens */
    }

    .section-title {
        text-align: center;
        
    }
}


/* References Section */
.references-section {
    padding: 50px 20px;
    background-color: #ffffff;
    color: #000;
}
.references-section a:hover{
    
    color: #000;
}

.references-container {
    max-width: 80%;
    margin: 0 auto;
}

.references-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
}

/* References Content Layout */
.references-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}



/* Reference Slider Section */
.reference-slider {
width: 40%;    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.slider-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.reference-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.reference-content-wrapper.show {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-up 0.6s ease-out;
}

.reference-content-wrapper img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.reference-content-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.reference-content-wrapper p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.reference-content-wrapper .reference-details {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.reference-content-wrapper .reference-details span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
}

.reference-content-wrapper .reference-details .location {
    color: #17946c;
    margin-right: 10px;
}

.leaflet-right{
    visibility: hidden;
}






/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .references-content {
        flex-direction: column;
        align-items: center;
    }

    .map-section {
        width: 100%;
    }

    .reference-slider {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .references-container {
        max-width: 90%;
    }

    .references-content {
        flex-direction: column;
    }

    .map-section {
        width: 100%;
    }

    .reference-slider {
        width: 100%;
    }

    .contact-btnn.references-all-btn--desktop {
        display: none;
    }

    .contact-btnn.references-all-btn--mobile {
        display: inline-block !important;
        margin-top: 15px;
        align-self: flex-start;
    }
}

.contact-btnn {
    position: relative;
    background: #E67E22;
    border: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    width: 150px;
    text-transform: uppercase;
    cursor: pointer;
    transform: skew(-21deg);
    overflow: hidden;
    color: #fff;
}

.contact-btnn.references-all-btn--mobile {
    display: none;
}

.contact-btnncenter {
    display: inline-block; /* Ensures the button respects text alignment */
    margin: 0 auto; /* For centering in flex or block-level containers */
}


.contact-btnn span  {
    display: inline-block;
    transform: skew(21deg);
}



.contact-btnn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: #17946c;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.contact-btnn:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
}

/* Map Section */
.map-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px 0;
    width: 100%;
}

#map {
    width: 100%;
    max-width: 800px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}





.footer {
    margin-top: 50px; /* Push footer to the bottom of the page if content is short */
    color: #fff;
    padding: 50px 0px 0;
    box-sizing: border-box;
    background: linear-gradient(45deg, #fff 35%, #17946c 35%);

}

/* Footer Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* Logo Section */
.footer-logo {
    flex: 1;
    text-align: left;
    min-width: 200px;
    padding-left: 20px;
}

.footer-logo img {
    max-width: 150px;
    display: block;
    margin-bottom: 10px;

}

.footer-logo p {
    font-size: 0.9rem;
    color: #ffffff !important;
    margin: 0;
}

/* Useful Links */
.footer-links {
    flex: 1;
    text-align: left;
    min-width: 150px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Contact Section */
.footer-contact {
    flex: 1;
    text-align: left;
    min-width: 200px;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 5px 0;
    color: #ffffff !important;
}

.footer-contact a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #17946c;
    padding: 10px 20px;

    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #ffffff !important;
}

.footer-bottom a.adyweb-link {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-bottom a.adyweb-link:hover {
    color: #fff;
}






/* Security and Certification Section */
.security-certificates-section {
padding-bottom: 50px;
    background-color: #ffffff;
    color: #333;
}

.security-container {
    max-width: 90%;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: right;
    margin-bottom: 30px;
    color: #000;
}

/* Content Layout */
.security-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Left Section */
.left-section {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-top: 20px;
}

.circle-arrow-btn {
    background-color: #e67e22;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.circle-arrow-btn:hover {
    background-color: #cf6819;
    transform: scale(1.1);
}

.left-section p {
    font-size: 1.2rem;
    color: #555;
    padding-top: 10px;
    padding-right: 20px;
}

/* Right Section */
.right-section {
    flex: 0 0 70%; /* Takes 70% of the available space */
    display: flex;
    flex-wrap: wrap; /* Ensures wrapping for smaller screens */
    gap: 20px; /* Spacing between boxes */
    justify-content: space-between; /* Equal space between boxes */
    align-items: flex-start;
    box-sizing: border-box; /* Includes padding and border in width/height calculations */
}

/* Security Boxes */
.security-box {
    flex: 0 0 calc(50% - 20px); /* Ensures two boxes fit in a row with proper gap */
    box-sizing: border-box; /* Prevents overflow due to padding or borders */
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.security-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.image-section {
    flex: 0 0 20%;
    border-right: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.content-section {
    flex: 0 0 90%;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-section a {
    color: #555;
}

.content-section ul li {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}
.content-section ul li:hover {
    color: #17946c; /* Green color on hover */
}
.content-section ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #17946c;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .security-content {
        flex-direction: column;
    }

    .left-section {
        align-items: center;
        text-align: center;
    }

    .right-section {
        gap: 20px;
    }

    .circle-arrow-btn {
        display: none; /* Hide arrow on tablet */
    }

    .section-header h2 {
        text-align: center; /* Center heading */
    }
}

@media (max-width: 768px) {
    .security-box {
        flex: 0 0 100%; /* Boxes stack on mobile */
    }

    .image-section {
        flex: 0 0 20%;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }

    .content-section {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .content-section ul li {
        text-align: left;
    }
    .content-section h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #000;
        text-align: left;
    }

    .footer {
        background: #17946c;
    }
    .footerfxx {
        padding-left: 5%;
    }
    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }
}


/* Image Section Fade Animation */
.image-section img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.image-section img.fade-out {
    opacity: 0.5;
    transform: scale(0.95);
}




.social-media-links {
    display: -webkit-box; /* For older Safari compatibility */
    display: -webkit-flex; /* Safari compatibility */
    display: flex;
    justify-content: start; /* Align to the left */
    gap: 5px; /* Space between links */
    margin-top: 1rem;
    padding-left: 0.5rem; /* Optional: Add extra padding for clarity */
}

.social-media-links a {
    text-decoration: none;
    color: #E67E22;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    margin-right: 1rem; /* Fallback for Safari versions without `gap` support */
}

.social-media-links a:last-child {
    margin-right: 0; /* Avoid extra margin on the last item */
}

.social-media-links a:hover {
    color: #17946c;
}


.full-width-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('/res/bg_par.jpg') no-repeat center center / cover;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed; /* Enables parallax scrolling */
    background-position: center;
    background-size: cover;
}

@media (min-width: 769px) {
    .full-width-section {
        min-height: 70vh;
        height: auto;
        padding: 4rem 1.5rem;
    }
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 148, 108, 0.6); /* Green overlay with transparency */
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 1500px;
    padding: 1rem;
}

.content-container h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.content-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



/* Responsive Design */
@media (max-width: 768px) {
    .content-container h2 {
        font-size: 2rem;
    }

    .content-container p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .content-container{
        width: 90%;
    }
    .full-width-section {
        height: 100%;
    }
}













.contact-hero {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    animation: fade-in 1s ease-in-out;
}

/* Contact Information Section */
.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center; /* Align content vertically in the center */

    padding: 2rem 10%;
    background: #ffffff;
    gap: 2rem;
    flex-wrap: nowrap;
}

.info-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
    flex: 1 1 calc(30% - 1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: slide-in-up 1s ease-in-out;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.info-card i {
    font-size: 2rem;
    color: #17946c;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #000000; /* Blue link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #e67e22;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.prompt {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    text-align: center; /* Centers text horizontally */
    gap: 1.5rem; /* Space between elements */
}

.prompt h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1rem;
    animation: fade-in 1.2s ease-in-out;
}

.prompt p {
    margin-bottom: 1rem;
    animation: fade-in 1.2s ease-in-out;
}

.form-wrapper {
    flex: 1 1 60%;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fade-in 1.5s ease-in-out;
    padding-right: 60px;
}

/* GDPR Checkbox */
.form-group label {
    display: flex; /* Aligns checkbox and text horizontally */
    align-items: center; /* Vertically centers the checkbox with the text */
    gap: 0.5rem; /* Space between checkbox and text */
    font-size: 0.9rem; /* Smaller text for GDPR */
    line-height: 1.4; /* Balanced line spacing */
    color: #333; /* Neutral color for text */
    flex-wrap: wrap; /* Ensures text wraps on small screens */
}

.form-group input[type="checkbox"] {
    margin: 0; /* Remove default margin for alignment */
    width: 16px; /* Standard checkbox size */
    height: 16px; /* Standard checkbox size */
    border: 1px solid #ccc; /* Optional: consistent border for checkbox */
    border-radius: 3px; /* Slight rounding for modern appearance */
}

.form-group a {
    color: #e67e22; /* Link color */
    text-decoration: none;
    font-size: 0.9rem; /* Smaller text for link */
    transition: color 0.3s ease;
}

.form-group a:hover {
    color: #e67e22; /* Link hover color */
}

/* Mobile-Specific Adjustments */
@media (max-width: 768px) {
    .form-group label {
        font-size: 0.8rem; /* Slightly smaller text for mobile */
        gap: 0.3rem; /* Reduce space between checkbox and text */
    }

    .form-group input[type="checkbox"] {
        width: 14px; /* Slightly smaller checkbox for mobile */
        height: 14px;
    }

    .form-group a {
        font-size: 0.8rem; /* Match smaller text size for links */
    }
}


input,textarea  {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 0px;
}

.contact-btn {
    background: #e67e22;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #17946c;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }

    .info-card {
        flex: 1 1 100%;
    }

    .contact-form-section {
        flex-direction: column;
    }

    .prompt, .form-wrapper {
        flex: 1 1 100%;
    }
}



/* New Contact Cards Container */
.new-contact-cards {
    display: flex;
    flex-direction: column; /* Stack cards vertically */
    gap: 1.5rem; /* Space between cards */
}

/* Individual Contact Card */
.new-contact-card {
    display: flex;
    align-items: center; /* Vertically centers items in the card */
    justify-content: flex-start; /* Aligns items to the left */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 1rem 1.5rem; /* Adjust padding for better spacing */
}

/* Icon Section */
.card-icon {
    flex: 0 0 30%; /* Fixed width for the icon section */
    display: flex;
    justify-content: center;
    align-items: center; /* Ensures icon is vertically centered */
    font-size: 2.5rem;
    color: #17946c; /* Default icon color */
    margin-right: 1rem; /* Space between icon and text */
    transition: color 0.3s ease;
}

/* Content Section */
.card-content {
    flex: 1; /* Occupies remaining space */
    display: flex;
    flex-direction: column; /* Stacks heading and text */
    justify-content: center; /* Vertically centers content */
    gap: 0.3rem; /* Space between heading and text */
}

.card-content h3 {
    font-size: 1.2rem;
    margin: 0; /* Remove margin to align with text */
    color: #000; /* Default text color */
    transition: color 0.3s ease;
}

.card-content p {
    font-size: 1rem;
    margin: 0;
}

.card-content a {
    color: #000; /* Default link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover Effects */
.new-contact-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.new-contact-card:hover .card-icon {
    color: #e67e22; /* Green icon on hover */
}

.new-contact-card:hover h3,
.new-contact-card:hover a {
    color: #e67e22; /* Orange text and link on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-contact-card {
        flex-direction: row;
        padding: 1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}




/* Project Section */
.project-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Gallery Section */
.project-gallery {
    max-width: 30% ;
    position: relative;
}

.gallery-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-image {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.gallery-controls button {
    background: #17946c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-controls button:hover {
    background: #e67e22;
}

/* Details Section */
.project-details {
    flex: 1 1 50%;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-details h2 {
    font-size: 2rem;
    color: #000;
}

.section-divider {
    border: 0;
    height: 2px;
    background: #e67e22;
    width: 50px;
    margin: 1rem 0;
}

.project-details p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Accordion Section */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.dot {
    width: 10px;
    height: 10px;
    background: #e67e22;
    border-radius: 50%;
}

.accordion-header h3 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.accordion-content {
    display: none;
    padding-left: 2rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.accordion-item.open .accordion-content {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-section {
        flex-direction: column;
    }

    .project-gallery, .project-details {
        flex: 1 1 100%;
    }
}






/* Section Layout */
.certifications-section {
    background: #ffffff;
    text-align: left;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Heading */
.section-heading {
    font-size: 2rem;
    color: #000;
    margin-bottom: 2rem;
}

/* Certifications Wrapper */
.certifications-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-bottom: 50px;
}

/* Certification Card */
.certification-card {
    flex: 1 1 calc(50% - 1rem); /* Two columns, responsive */
    text-align: center;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Certification Image */
.certification-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
}

/* Certification Title */
.certification-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certifications-wrapper {
        flex-direction: column; /* Stack items on mobile */
        gap: 1.5rem;
    }

    .certification-card {
        flex: 1 1 100%; /* Full width on smaller screens */
    }
}






/* Project Section */
#project-section {
    padding: 3rem 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    gap: 2rem;
}

.project-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1500px;
}

.custom-icon {
    width: 24px; /* Adjust size */
    height: 24px; /* Adjust size */
    display: inline-block;
    vertical-align: middle;
}

/* Left Column: Main Image */
.project-gallery {
    flex: 1 1 30%;
    text-align: center;
}

.gallery-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Reusing the About Us Button Style */
.open-gallery-btn {
    margin-top: 1rem;
    padding-bottom: 0;
    background: none;
    border: none;
}

/* Hidden Gallery (Initially Hidden) */
#gallery {
    display: none; /* Hidden initially */
}

/* Right Column: Details */
.project-details {
    flex: 1 1 20%;
}

.project-details h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.project-meta {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}



.project-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-wrapper {
        flex-direction: column;
    }

    .project-gallery, .project-details {
        flex: 1 1 100%;
    }
    .project-wrapper-rev {
        flex-direction: column-reverse; /* Reverse order for mobile */
    }
    .project-gallery {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .gallery-main-image {
        width: 100%;
    }
    .gallery-main-image img {
        display: block;
        width: 100vw;
        max-width: none;
        height: auto;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}


.why-us-section {
    padding: 50px 20px; /* Add padding for breathing room */
    background-color: #ffffff;
    overflow: hidden; /* Prevent overflow */
}

.why-us-container {
    max-width: 1200px; /* Restrict the container width */
    margin: 0 auto; /* Center the container */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for larger screens */
    gap: 20px; /* Space between boxes */
    justify-content: center; /* Center align grid content */
    align-items: stretch; /* Stretch boxes to the same height */
    padding: 0 20px; /* Add internal spacing */
    box-sizing: border-box; /* Ensure consistent sizing */
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .why-us-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .why-us-container {
        grid-template-columns: 1fr; /* 1 column for mobile screens */
    }
}

/* Section Styling */
.why-us-section {
    padding: 50px 20px;
    background-color: #ffffff;
    overflow: hidden;
}

/* Container Styling */
.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Section Header */
.why-us-left {
    text-align: center;
}

.why-us-left h1 {
    font-size: 2.5rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 20px;
}

.why-us-left p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}



/* Boxes Section */
.why-us-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 boxes per row for desktop */
    gap: 20px;
    justify-items: center; /* Center align boxes horizontally */
    align-items: stretch; /* Ensure boxes have equal height */
}

@media (max-width: 1024px) {
    .why-us-right {
        grid-template-columns: repeat(2, 1fr); /* 2 boxes per row for tablets */
    }
}

@media (max-width: 768px) {
    .why-us-right {
        grid-template-columns: 1fr; /* 1 box per row for mobile */
    }
}

/* Individual Box Styling */
.why-us-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute content evenly */
    align-items: center; /* Center align content */
    text-align: center;
    min-height: 300px; /* Consistent box height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.why-us-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.why-us-box h3 {
    font-size: 1.2rem;
    color: #17946c;
    margin-bottom: 10px;
}

.why-us-box p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    flex-grow: 1; /* Ensures paragraph expands evenly */
}

/* Responsive Adjustments for Section Header */
@media (max-width: 768px) {
    .why-us-left h1 {
        font-size: 2rem;
    }

    .why-us-left p {
        font-size: 0.9rem;
    }
}




  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Adjust background color if necessary */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#preloader .preloader-content img {
    width: 100px; /* Adjust size as needed */
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


.info-boxes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
    gap: 20px;
}

.info-box {
    flex: 1 1 20%; /* Keep all four boxes in a single row on PC */
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 20px;
    text-align: center;
    color: white;
    background-color: transparent;
    transition: all 0.3s ease;
}

.info-box .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.info-box h3 {
    font-size: 18px;
    margin: 0;
}

.info-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}

/* Responsive styling */
@media (max-width: 768px) {
    .info-box {
        flex: 1 1 calc(30% - 10px); /* Switch to 2x2 layout on tablets and smaller screens */
    }
}

@media (max-width: 480px) {
    .info-box {
        flex: 1 1 calc(30% - 10px); /* Keep 2x2 layout for smaller phones */
    }
}

/* Project Form Section */
.project-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem 10%; /* Spacing around the form section */
    box-sizing: border-box; /* Prevents overflow from padding */
}

.project-form-section h2 {
    width: 100%;
    text-align: right; /* Align heading to the left */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333; /* Match heading color to website */
}

.project-form-section .form-wrapper {
    width: 100%;
    max-width: 1500px; /* Centered and constrained for readability */
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.project-form-section .form-row {
    display: flex;
    flex-wrap: wrap; /* Allows fields to wrap on smaller screens */
    gap: 1.5rem;
    margin-bottom: 1.5rem; /* Space between rows */
}

.project-form-section .form-group {
    flex: 1; /* Equal width for all fields in a row */
    min-width: 200px; /* Ensure fields don't get too small */
}

.project-form-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.project-form-section .form-group input,
.project-form-section .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Prevents overflow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-form-section {
        padding: 1.5rem 5%; /* Reduce padding on smaller screens */
    }

    .project-form-section .form-row {
        flex-direction: column; /* Stack fields vertically */
    }

    .project-form-section .form-group {
        width: 100%; /* Full-width fields on smaller screens */
    }
}


/* General Styling for the New About Us Section */
#about-us-new {
    padding: 3rem 0;
    background-color: #ffffff;
    color: #333;
}

.about-us-wrapper-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.zigzag-item {
    display: -webkit-flex; /* Safari compatibility */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Text Styling */
.zigzag-text {
    flex: 1;
    max-width: calc(70% - 1rem); /* Adjust based on gap */
}

.zigzag-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
    color: #000;
}

.zigzag-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

/* Separator Styling */
.separator-new {
    width: 100px;
    height: 4px;
    background-color: #e67f22;
    margin-bottom: 1.5rem;
}

/* Image Styling */
.zigzag-image {
    flex: 1;
    max-width: calc(30% - 1rem); /* Same width as text */
    text-align: center;
    overflow: hidden; /* Ensures the image respects container boundaries */
}

.zigzag-image img {
    display: block; /* Removes extra inline spacing */
    width: 100%;
    max-width: 100%; /* Ensures image doesn't exceed container width */
    height: auto; /* Proportional scaling */
    object-fit: cover; /* Adjust based on your needs */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .zigzag-item {
        flex-direction: column;
    }

    .zigzag-item.reverse {
        flex-direction: column-reverse; /* No reverse on mobile */
    }

    .zigzag-text h2 {
        text-align: center;
    }

    .zigzag-image {
        margin-bottom: 1.5rem;
    }

    .zigzag-text,
    .zigzag-image {
        max-width: 100%; /* Full-width on smaller screens */
    }
}



.section-service {
    width: 80%;
    margin: 0 auto;
}

.section-service .service-container {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.section-service .service-container.zigzag {
    flex-direction: row-reverse;
}

.section-service .service-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.section-service .service-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-service .service-image img {
    max-width: 80%;
    height: auto;
}

.section-service h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section-service p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.section-service a.learn-more-btn {
    font-size: 1rem;
    color: #ff6600;
    text-decoration: none;
}

.section-service a.learn-more-btn:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-service .service-container {
        flex-direction: column;
    }

    .section-service .service-container.zigzag {
        flex-direction: column;
    }

    .section-service .service-content,
    .section-service .service-image {
        text-align: center;
    }

    .section-service .service-image img {
        max-width: 100%;
    }
}
