/* =======================================
   🔹 Header Styling 🔹
   ======================================= */

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.custom-header {
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    z-index: 4000;
    transition: all 0.3s ease-in-out;
}
.cky-btn-revisit-wrapper {

    display: none;
}
/* Top Bar Fixed at the Top */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: #066D9F;
    color: white;
    font-size: 14px;
   z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: -10px 0;
}

/* Top Bar Container */
.top-bar-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

/* Each Top Bar Item */
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icons */
.top-bar-icon {
    font-size: 16px;
}

/* Text and Links */
.top-bar-text {
    color: white;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.top-bar-text a {
    color: white;
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.27px;
	    text-decoration: none;
}

.top-bar-text a:hover {
    text-decoration: none;
}

/* Hide address on mobile */
@media (max-width: 768px) {
       .top-bar-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: left;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
        justify-content: space-between;
	}

    .top-bar-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .top-bar-text,
    .top-bar-text a {
        font-size: 12px;
        
    }

    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    /* Hide the address block */
    .top-bar-item:last-child {
        display: none;
    }
}




/* Adjust header positioning */
.custom-header {
    margin-top: 36px; /* Adjust according to top bar height */
}

/* Navigation */
.primary-menu .menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.primary-menu .menu-items li {
    position: relative;
    padding: 15px;
	
}

.primary-menu .menu-items li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    min-width: 280px;
    display: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.primary-menu .menu-items li:hover .sub-menu {
    display: block;
}

.primary-menu .menu-items li .sub-menu li {
    width: 100%;
    padding: 0;
}

.primary-menu .menu-items li .sub-menu li a {
    display: block;
    width: 260px;
    padding: 10px 15px;
    color: var(--Body, #656565);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 4px;
}

.primary-menu .menu-items li .sub-menu li a:hover {
    background: #f5f5f5;
    color: #333;
}


/* Mobile Friendly */
@media (max-width: 768px) {
    .primary-menu .menu-items {
        flex-direction: column;
    }

    .primary-menu .menu-items li .sub-menu {
        position: relative;
    }
}


/* Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1240px;
	padding: 0 100px;
}
/* Logo */
.logo img {
  width: 34px;
height: 48px;
}
/* Navigation Menu */
.primary-menu {
    flex: 1; 
    display: flex;
    justify-content: right;
}
.primary-menu .menu-items {
    list-style: none;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
.primary-menu .menu-items li {
    display: inline-block;
}
.primary-menu .menu-items li a {
    text-decoration: none;
 color: var(--Body, #656565);
font-family: 'Figtree', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
    padding: 10px 15px;
}

/* Active (current) menu item */
.primary-menu .menu-items li.current-menu-item a {
    color: black; 
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


/* Right Section (Button + Dropdown) */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-item-has-children > a {
    position: relative;
    padding-right: 20px; /* space for the arrow */
}

.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    top: 55%;
    right: 10;
    width: 20px;
    height: 16px;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="16" viewBox="0 0 20 16" fill="none"><path d="M9.99958 8.98333L14.0106 4.84999L15.1427 6.03333L9.99958 11.3333L4.85645 6.03333L6.00476 4.84999L9.99958 8.98333Z" fill="%23656565"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
  color: var(--Body, #656565);
	font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 22px; /* 157.143% */
	margin-bottom: 20px;
	
}
/* Hide default checkbox */
.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #757575;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    outline: none;
    background-color: white;
    transition: all 0.2s ease-in-out;
}

/* Change checkbox background color when checked */
.checkbox-group input[type="checkbox"]:checked {
    background-color: #066D9F;
}

/* Add checkmark (✔) when checked */
.checkbox-group input[type="checkbox"]:checked::after {
    content: '✔';
    font-size: 14px;
    color: white;
    position: absolute;
    left: 2px;
    top: -3px;
    font-weight: 400;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-group a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.checkbox-group a i {
    font-size: 14px;
    margin-left: 5px;
}


/* Apply Now Button */
.apply-button {
    background: #066D9F;
    color: white;
	font-family: 'Figtree', sans-serif;
    padding: 10px 28px; 
    border-radius: 8px;
    font-weight: 500;
	font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
	margin-left: 15px;
	 transition: background 0.3s ease-in-out; /* Smooth transition effect */

}
.apply-button:hover {
     background: #055280 !important; /* Change to the desired hover background color */
}

.page-id-1068 p {
    font-size: 15px !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 300;
}

.page-id-1066 p {
    font-size: 15px !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 300;
}
			.page-id-1068 strong {
font-size: 28px;
 }
			.page-id-1066 strong {
font-size: 28px;
 }

.mobile-menu { display: none;}
.mobile-menu-icon {
        display: none;
    }


/* =======================================
   🔹 Footer Styling 🔹
   ======================================= */
.custom-footer {
   background: var(--Light-gray, #F5F5F5) !important;
    color: black !important;
    padding: 60px 20px 20px;
    font-size: 16px;
}
	h2.first-footer{
		font-size: 40px !important;
font-style: normal;
font-weight: 500 !important;
line-height: normal;
		font-family: 'Outfit', sans-serif;

	}

.footer1{
	color: var(--Primary-color, #066D9F);
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 0; 
letter-spacing: 0.28px;
}

.footer2{
	color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 0; 
letter-spacing: 0.28px;
}

/* Footer Content */
.footer-content {
    padding: 50px 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer-column {
    width: 31%;
}
.footer-column1 {
    width: 30%;
	text-align: center;
}
.footer-column h3 {
color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 1.12px;
}

ul#menu-footer-menu1{
	margin-left: 170px;
}

.footer-column h4 {
color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 1.12px;
	text-align: center;
}


.footer-column p {
color: #2E2E2E;
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
}
.footer-column img {
    width: 150px;
    margin-bottom: 10px;
}
.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-column2 a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}
.footer-column a:hover {
    opacity: 1;
}
/* Footer Menu */
.footer-menu .footer-items {
    list-style: none;
    padding: 0;
	
}
.footer-menu .footer-items li {
    margin-bottom: 10px;
}
.email1 a,
.number1 a,
.map1 a {
color: #111;
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
}
.email1 a:hover,
.number1 a:hover,
.map1 a:hover {
    color: #333;
}
.footer-menu .footer-items li a {
color: #111;
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;

}
.footer-menu .footer-items li a:hover {
    opacity: 1;
}
/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #e0e0e0;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #656565;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
   font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
	color: var(--Gray, #2E2E2E);
	font-family: 'Poppins' , sans-serif;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* =======================================
   🔹 Home Page 🔹
   ======================================= */
.homepage-section {
    /* padding: 140px 0; */
    padding-top: 200px !important;
    padding-bottom: 120px;
    background: var(--Light-gray, #F5F5F5);
}



.container {
    max-width: 1250px !important;
    margin: 0 auto;
    padding: 0 10px !important; /* Remove padding */
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.text-content {
    max-width: 50%;
}

.subtitle1 {
    color: #066D9F !important;
  font-family: 'Outfit', sans-serif !important;
font-size: 14px;
font-style: normal;
font-weight: 400 !important;
line-height: normal;
letter-spacing: 0.3px;
}

h1 {
font-family: 'Outfit', sans-serif;
font-size: 46px;
font-style: normal;
font-weight: 500 !important;
line-height: 64px; /* 139.13% */
letter-spacing: 0.3px;
    margin: 10px 0;
}

.bullet-points {
    list-style: none;
    padding: 0;
}

.bullet-points li {
   color: var(--Gray, #2E2E2E);
font-family: 'Poppins', sans-serif;

font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
    margin-bottom: 5px;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 400 !important;
	   transition: background 0.3s ease-in-out; /* Smooth transition effect */

}
.primary-btn {
   background:#066D9F !important;
    color: #fff;
font-family: 'Outfit', sans-serif;
font-size: 14px !important;
font-style: normal;
font-weight: 400 !important;
line-height: 20px; /* 142.857% */
    margin-right: 10px;
		   transition: background 0.3s ease-in-out; /* Smooth transition effect */

}

.primary-btn:hover {
   background: #055280 !important; /* Change to the desired hover background color */
   
}

.secondary-btn {
    background: #066D9F1A !important;
	color: var(--Primary-color, #066D9F) !important;
font-family: 'Outfit', sans-serif;
font-size: 14px !important;
font-style: normal;
font-weight: 400 !important;
line-height: 20px; /* 142.857% */
 transition: background 0.3s ease-in-out; /* Smooth transition effect */

}

.secondary-btn:hover {
    background: rgba(6, 109, 159, 0.25) !important; /* Slightly darker on hover */
   
}

.statistics {
    display: flex;
    gap: 20px;
    margin-top: 50px !important;
}

/* Statistic Box */
.stat-box {
   text-align:left;
    display: flex;
    flex-direction: column;
    
}

/* Statistic Number */
.stat-number {
font-family: 'Outfit', sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 400 !important;
line-height: normal;
letter-spacing: 0.3px;
    color: #222; /* Darker text */
}

/* Statistic Label */
.stat-label {
  font-family: 'Outfit', sans-serif;
font-size: 14px !important;
font-style: normal;
font-weight: 300 !important;
line-height: normal;
letter-spacing: 0.3px;
    color: #666; /* Lighter text */
    margin-top: 4px; /* Small spacing */
}


.image-content img {
   width: 496px;
height: 564px;
    border-radius: 10px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.partner-logos img {
width: 50%;
height: 50%;
}

/* About Section */
.about-section {
    padding: 114px 0;
    background-color: #ffff;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-text {
    max-width: 35% !important;
	margin-bottom: 100px;
}

.subtitle {
  color:  #066D9F !important;
text-align: center;
font-family: 'Outfit', sans-serif !important;
font-size: 14px !important;
font-style: normal;
font-weight: 400 !important;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
}

h2 {
    font-size: 32px;
    font-weight: 400 !important;
    margin: 10px 0;
	font-family: 'Outfit', sans-serif !important;
}

.about-description {
    max-width: 50%;
	font-family: 'Outfit', sans-serif;

}

.about-description p {
	color: var(--Body, #656565) !important;
	font-family: 'Outfit', sans-serif;
font-size: 16px !important;
font-style: normal;
font-weight: 400 !important;
line-height: 26px; /* 162.5% */
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
	font-family: 'Outfit', sans-serif !important;

}

.primary-btn {
  font-family: 'Outfit', sans-serif !important;
    color: #fff;
    margin-top: 20px;
}

.about_heading{
	color: var(--Gray, #2E2E2E);
  font-family: 'Outfit', sans-serif !important;
	font-size: 39px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 140% */
letter-spacing: 0.3px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    
    /* Adjust Homepage Section */
    .homepage-section {
     
		padding-top: 40px !important;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: left !important;
        gap: 20px;
    }

    .text-content {
        max-width: 100%;
		margin-top: 10px;
    }

    h1 {
        font-size: 28px;
	
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
    }

    .bullet-points li {
        font-size: 14px;
    }
	.hero-text h1 {
		font-size: 32px !important;

	}
	.process-section{
		padding: 72px 0 !important;
	}

    .buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
		gap: 16px;
    }

    .btn {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        margin-bottom: 10px;
    }

    .primary-btn {
        margin-right: 0;
		margin-top: 0px !important;
    }
	
	.about_heading{
		font-size: 32px;
font-style: normal;
font-weight: 500 !important;
line-height: normal;
letter-spacing: 0.3px;
text-align: left;

	}
	.primary-btn{
		margin-top: 0;
	}
  
.statistics {
    display: flex;
    justify-content: space-between; /* Keeps them evenly spaced */
    align-items: center;
    text-align: left;
    gap: 50px; /* Adjust spacing */
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Prevents overflow issues */
	margin-bottom: 52px;
}

.stat-box {
    flex: 1; /* Ensures equal spacing */
    min-width: 90px; /* Prevents items from shrinking too much */
    text-align: left;
}

    .partner-logos {
        flex-wrap: wrap;
        gap: 15px;
    }

    .partner-logos img {
        width: 40%;
        height: auto;
    }

    /* About Section */
    .about-section {
        padding: 72px 0;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: left !important;
        gap: 30px;
    }

    .about-text {
        max-width: 100% !important;
		margin-bottom: 0;
    }

    h2 {
        font-size: 26px;
    }

    .about-description {
        max-width: 100%;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 120px 0;
    background: var(--Light-gray, #F5F5F5);
    overflow: hidden;
}

.services-svg-wrapper {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0; /* Stays on the right */
    width: 1050px;
    height: 950px; /* Full height */
    pointer-events: none; /* Prevents interaction */
    opacity: 1;
}

svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* Service Boxes Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Service Box */
.service-box {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88) !important; 
	backdrop-filter: blur(12px);
    position: relative;
    z-index: 2000;
    padding: 24px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Service Number (Will Move Out of View on Hover) */
.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

/* Circular Background on Right */
.service-box::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

/* Service Title & Description */
.service-title,
.service-description1 {
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}


/* Learn More Button (Initially Hidden) */
.service-box .learn-more {
    position: absolute;
    bottom: -40px;
    right: 50%;
    transform: translateX(-50%);
    background: rgba(6, 109, 159, 0.10);
    text-decoration: none;
    color: var(--Primary-color, #066D9F);
font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 8px 16px;
    border-radius: 5px;
    text-align: center;
    transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.learn-more:hover {
    background: rgba(6, 109, 159, 0.25) !important; /* Slightly darker on hover */
   
}


/* Hover Effects */
.service-box:hover .service-number {
    transform: translateY(-100px); /* Moves far up */
    opacity: 0;
}

.service-box:hover::after {
    transform: translateY(-100px); /* Moves far up */
    opacity: 0;
}

.service-box:hover .service-title,
.service-box:hover .service-description1 {
    transform: translateY(-20px);
}

/* Reveal Learn More Button */
.service-box:hover .learn-more {
    bottom: 20px;
    opacity: 1;
}

.section-header1 {
	padding-bottom: 24px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    /* Adjust Services Section */
    .services-section {
        padding: 72px 0;
    }

    /* Center Align Text */
    .section-header,
    .section-header1 {
        text-align: center;
    }

    .subtitle {
        font-size: 13px;
        text-align: center;
    }

    h2 {
        font-size: 28px;
        text-align: center;
    }

    .section-description {
       color: var(--Body, #656565);
text-align: center;
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
        text-align: center;
        max-width: 90%;
    }

    /* Adjust Services Grid */
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    /* Service Box */
    .service-box {
        padding: 20px;
        gap: 8px;
        text-align: center;
    }

    /* Adjust Service Icon */
    .service-icon {
        width: 24px;
        height: 24px;
        top: 12px;
        right: 12px;
    }

    /* Adjust Background Decoration */
    .services-svg-wrapper {
   display: none;
    }
}

/* Projects Section */
.projects-section {
    position: relative;
    padding: 80px 0;
    background-color: #ffff;
    overflow: hidden;
}
.section-header {
    margin-bottom: 40px;
	text-align: center;
	    position: relative; /* Ensure the section header acts as a reference */

}
.subtitle {
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.section-description {
  color: var(--Body, #656565);
text-align: center;
font-family: 'Outfit', sans-serif;

font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
       position: relative;
    z-index: 3000;
    margin: 0 auto;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Project Box */
.project-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

/* Project Image */
.project-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/* Dark Overlay (Initially Hidden) */
.project-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark Background */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* Image */
.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

/* Overlay Text (Initially Hidden) */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Show Overlay and Darken Image on Hover */
.project-box:hover .project-image::after {
    opacity: 1; /* Darken Background */
}

.project-box:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Project Title */
.project-overlay h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Project Location */
.project-overlay p {
    font-size: 14px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Hero Section */
.hero-section1 {
    background-color: #066D9F; /* Blue background */
    padding: 64px 0;
    color: #fff;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Text */
.hero-text {
    max-width: 80%;
    text-align: left;
}

/* Title */
.hero-text h1 {
font-family: 'Outfit', sans-serif;
font-size: 36px;
font-style: normal;
font-weight: 400 !important;
line-height: normal;
    margin-bottom: 10px;
}

/* Subtitle */
.hero-text .subtitle {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Description */
.hero-text .hero-description {
    color: var(--Light-gray, #F5F5F5);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
    margin-bottom: 20px;
}

/* Right Button */
.hero-button {
    flex-shrink: 0;
}

/* Button Styling */
.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff !important;
    color: #066D9F !important;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hero-btn:hover {
      background-color: rgba(255, 255, 255, 0.85) !important; /* Slightly dimmed white */
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-button {
        margin-top: 20px;
             align-self: flex-start !important; /* Moves it to the left inside flex */

    }
	.contact-info h2{
		text-align: left !important;
	}
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background-color: #fff;
	
}

@media (max-width: 767px) {
 
    .image-content {
        order: -1; /* Ensure image comes first */
    }
    .text-content {
        order: 2;
    }
}

.subtitle {
color:  #066D9F !important;
text-align: center;
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400 !important;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

/* Process Wrapper */
.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
}

/* Process Image */
.process-image {
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
}

.process-image img {
  width: 496px;
height: 564px;
    border-radius: 12px;
}

/* Swiper Container */
.process-steps {
    width: 50%;
    height: 400px; /* Adjust based on design */
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    flex-direction: column;
}

.swiper-slide {
    text-align: left;
    display: flex;
    flex-direction: column;
	align-items: center;
	align-content: center;
    justify-content: center;
    height: 100%;
}

.cta-box {
display: flex;
padding: 32px;
flex-direction: column;
align-items: flex-start;
gap: 10px;
align-self: stretch;
	border-radius: 20px;
background: var(--Primary-color, #066D9F);

}

.cta-box h3 {
  color: #FFF;
font-family: 'Outfit', sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 34px; /* 141.667% */
    margin-bottom: 10px;
}

.cta-box p {
color: var(--Light-gray, #F5F5F5);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
    margin-bottom: 15px;
}

.cta-button {
    background-color: white;
	font-family: 'Outfit', sans-serif;
    color: #066D9F;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
	width: fit-content;
    font-weight: 400;
    transition: 0.3s ease;
	margin: 15px 0;
	 transition: background 0.3s ease-in-out; /* Smooth transition effect */


}

.cta-button:hover {
    background-color: #fff;
    color: black;
}

/* Step Number */
.step-number {
color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

/* Step Title */
.step-title {
  color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif !important;
font-size: 20px;
font-style: normal;
font-weight: 500 !important;
line-height: 32px; /* 160% */
    margin: 5px 0;
}

/* Step Description */
.step-description {
color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
}


/* Responsive */
@media (max-width: 1024px) {
    .process-wrapper {
        flex-direction: column;
    }

    .process-image {
        width: 100%;
    }

    .process-steps {
        width: 100%;
        text-align: center;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 108px 0;
    background: url('https://d-alushaj.at/wp-content/uploads/2025/03/front-view-man-working-as-plumber.webp') center/cover no-repeat;
}

/* Background Overlay */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%),
                linear-gradient(0deg, rgba(6, 109, 159, 0.10) 0%, rgba(6, 109, 159, 0.10) 100%);
    z-index: 1; /* Ensures the overlay is above the background image */
}

/* Ensuring content stays above the overlay */
.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side: Contact Info */
.contact-info {
    width: 45%;
    color: #fff;
    background: url('/path-to-your-image.jpg') center/cover no-repeat;
    border-radius: 12px;
}

.contact-info h2 {
    font-family: 'Outfit', sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: normal;
    margin-bottom: 10px;
}

.contact-info p {
      font-family: 'Outfit', sans-serif;
font-size: 16px !important;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.27px;
    margin: 24px 0;
}

.contact-info a {
    color: #fff;
	      font-family: 'Outfit', sans-serif;
    text-decoration: none;
    font-weight: 400;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links img {
    border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.56);
    margin-top: 10px;
	
}

/* Right Side: Contact Form */
.contact-form {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: #2E2E2E !important;
font-family: 'Outfit', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500 !important;
line-height: 28px; /* 140% */
 margin-bottom: 24px;
}

h3 {
	font-family: 'Outfit', sans-serif !important;
	font-weight: 300 !important;
	font-size: 14px;

}


/* Form Fields */
.form-group {
    margin-bottom: 15px;
}

.form-group.half {
    display: flex;
    gap: 15px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0px 8px 16px 0px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 1px solid rgba(160, 160, 160, 0.32);
    border-top: none;
    border-left: none;
    border-right: none;
   color: var(--Gray, #2E2E2E) !important;
font-family:  'DM Sans', sans-serif;
font-size: 14px !important;
font-style: normal;
font-weight: 400 !important;
line-height: 20px; /* 142.857% */
letter-spacing: 0.28px;
    outline: none; /* Prevents blue outline when clicked */
    background: transparent;
}

/* Remove focus border */
.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 1px solid rgba(160, 160, 160, 0.32); /* Keep it the same on focus */
    outline: none; /* No extra border */
    box-shadow: none; /* Remove default browser styling */
}

/* Textarea Height */
textarea {
    height: 100px;
    resize: none;
}

p{

font-family: 'Outfit', sans-serif;font-size: 16px;
font-weight: 400;

}

/* Submit Button */
.btn {
    display: inline-block;
    background: #066D9F;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #004f7a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .contact-info {
        padding: 0px;
        border-radius: 12px;
    }

    .form-group.half {
        flex-direction: column;
    }
}

/* Suppliers Section */
.suppliers-section {
    padding: 60px 0;
    background-color: #fff;
   
}

/* Section Title */
.subtitle {
    color: #007bff;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
}

/* Wrapper to prevent overflow */
.suppliers-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;

}

/* Logo Container */
.suppliers1-logos {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    will-change: transform;
}
/* Logo Container */
.suppliers-logos {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    will-change: transform;
}

/* Individual Logo */
.supplier-logo {
    flex: 0 0 auto; /* Prevent logos from shrinking */
}

.supplier-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Animation for continuous left-to-right sliding */
@keyframes slideLogos {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}


/* Responsive */
@media (max-width: 768px) {
    .suppliers-logos {
        gap: 20px;
    }

    .supplier-logo img {
        max-height: 50px;
    }
}

/* =======================================
   🔹  About Page 🔹
   ======================================= */

/* About Section */
.about-section1 {
    position: relative;
	padding: 114px 0;
	
}

/* Hero Background */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center; 
	margin-bottom: 114px;
	margin-top: -10px;
}

.about-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.about-top-text {
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.3px;
    margin-bottom: 5px;
}

.about-overlay h1 {
font-family: 'Outfit', sans-serif;
font-size: 46px;
font-style: normal;
font-weight: 500;
line-height: 64px; /* 139.13% */
letter-spacing: 0.3px;
    margin: 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-text {
    max-width: 40%;
}

.subtitle {
    color: #007bff;
    font-weight: 300;
    font-size: 14px;
	font-family: 'Outfit', sans-serif;
}
.subtitle2 {
color: var(--Primary-color, #066D9F);
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.3px;
	text-align: left;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

/* About Description */
.about-description {
    max-width: 50%;
}

.about-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.primary-btn {
   
    color: #fff;
    margin-top: 20px;
}

.primary-btn:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }
	.about-section1{
		padding: 72px 0;
	}

    .about-text {
        max-width: 100%;
    }

    h2 {
        font-size: 32px;
    }

    .about-description {
        max-width: 100%;
    }
}
/* Stats Section */
.stats-section {
    background-color: #066D9F; /* Matching blue background */
    padding: 100px 0;
    color: #fff;
    text-align: left;
}



/* Subtitle */
.stats-subtitle {
	color: #fff;
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Individual Stat Box */
.stat-box1 {
    display: flex;
    align-items: left;
    text-align: left;
}

/* Stat Number */
.stat-number {
font-family: 'Urbanist', sans-serif;
font-size: 48px;
font-style: normal;
font-weight: 500 !important;
line-height: normal;
    color: #fff !important; /* Bright white for visibility */
}

/* Stat Label */
.stat-label {
	font-family: 'DM Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
    opacity: 0.9;
    margin-top: 18px;
	margin-left: 10px;
    color: #fff !important;
}

/* Stat Number */
.stat-number1 {
color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.3px;
}

/* Stat Label */
.stat-label1 {
width:144px; 
  font-family: 'Outfit', sans-serif;
font-size: 14px !important;
font-style: normal;
font-weight: 300 !important;
line-height: normal;
letter-spacing: 0.3px;
    opacity: 0.9;
    margin-top: 18px;
	color:  #2E2E2E;

}

/* Beautiful Vertical Divider */
.stat-divider {
   display: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .stats-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }
	.content-section{
		padding: 72px 0 !important;
	}
	
	.content-title{
		font-size: 32px !important;
font-style: normal;
font-weight: 500;
line-height: normal;
		text-align: left;
	}
}

/* Content Section */
.content-section {
    padding: 120px 0;
    background-color: #fff;
}

/* Wrapper */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Stat Number */
.stat-number1 {
color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.3px;
}

/* Stat Number */
.stat-label1 {
color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.3px;
}

/* Image Styling */
.content-image {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Text Styling */
.content-text {
    width: 50%;
    text-align: left;
}

.content-subtitle {
  color: var(--Primary-color, #066D9F);
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
}

.content-title {
   color: var(--Gray, #2E2E2E) !important;
font-family: 'Outfit', sans-serif !important;
font-size: 40px;
font-style: normal;
font-weight: 400 !important;
line-height: normal;
    margin: 10px 0;
}

.content-description {
 color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .content-image {
        width: 100%;
    }

    .content-text {
        width: 100%;
    }
}
/* =======================================
   🔹  Contact Page 🔹
   ======================================= */
/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
}

/* Background Image */
.contact-hero-bg {
     position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
	margin-top: 114px;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.contact-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

/* Subtitle */
.contact-subtitle {
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.3px;
    margin-bottom: 5px;
}

/* Title */
.contact-title {
font-family: 'Outfit', sans-serif;
font-size: 46px;
font-style: normal;
font-weight: 500;
line-height: 64px; /* 139.13% */
letter-spacing: 0.3px;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-hero-bg {
    height: 480px;
 object-fit: contain; /* Shows the full image without cropping */
}
    .contact-title {
        font-size: 24px;
    }
}
/* Map Section */
.map-section {
    padding: 120px 0;
    background-color: #f8f9fc;
    text-align: left;
}
/* Subtitle */
.map-subtitle {
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
    color: #066D9F;
    display: block;
    margin-bottom: 10px;
}

/* Title */
.map-title {
  font-family: 'Outfit', sans-serif !important;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: normal;
    margin-bottom: 30px;
}

/* Map Container */
.map-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Embedded Google Map */
.map-embed iframe {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    border-radius: 10px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .map-embed iframe {
        height: 300px;
    }
}


/* =======================================
   🔹  Services Page 🔹
   ======================================= */

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
	margin-top:114px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section .overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.subtitle_service {
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 0.3px;
}


/* Cooperation Section */
.cooperation-section {
    padding: 114px 0;
    background-color: #f8f9fc; /* Light gray background */
}

.container-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Left Text */
.cooperation-text {
    width: 35%;
}

.cooperation-subtitle {
   color: var(--Primary-color, #066D9F);
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
}

.cooperation-title {
   color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 56px; /* 140% */
letter-spacing: 2.3px;
}

.page-id-867 .stats-section {
    display: none !important;
}

/* Features Grid */
.cooperation-grid {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

/* Feature Box */
.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
}

/* Feature Number */
.feature-number {
 color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px; /* 150% */
letter-spacing: 0.3px;;
    position: absolute;
    top: 16px;
    left: 16px;
}

/* Feature Title */
.feature-title {
   color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 133.333% */
letter-spacing: 0.3px;
    margin-top: 30px;
}

/* Feature Description */
.feature-description {
  color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px; /* 150% */
letter-spacing: 0.3px;
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        text-align: center;
	
    }

    .cooperation-text {
        width: 100%;
        text-align: center;
    }

    .cooperation-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cooperation-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =======================================
   🔹  Projects Page 🔹
   ======================================= */

/* Service Description Section */
.service-description-section {
    padding: 114px 0 !important;
    background-color: #fff; /* White background */
}


/* Subtitle */
.service-subtitle {
color: var(--Primary-color, #066D9F);
font-family: 'Outfit', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
    margin-bottom: 10px;
}
.service-number{
	color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px; /* 150% */
letter-spacing: 0.3px;
}

/* Subtitle */
.service-title{
    color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400 !important;
line-height: 32px; /* 133.333% */
letter-spacing: 0.3px;
}

/* Description */
.service-description {
color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 40px; /* 166.667% */
}

/* Description */
.service-description1 {
color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px; /* 150% */
}

/* Project Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image Wrapper */
.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image Styling */
.project-image img {
    width: 388px;
    height: 480px;
    display: block;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Background Overlay (Gradient - Hidden Initially) */
.project-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.48) 100%),
                var(--Image-Overlay, rgba(0, 0, 0, 0.20));
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* Hover Effect: Darken Image & Show Gradient */
.project-card:hover .project-image img {
    opacity: 0.6; /* Darken the image */
    transform: scale(1.1); /* Slight zoom effect */
}

.project-card:hover .project-image::before {
    opacity: 1; /* Show the gradient overlay */
}

/* Overlay Text (Project Title & Description) */
.project-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
}

/* Show Overlay Text on Hover */
.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Title Styling */
.project-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Full-width section with light gray background */
.project-header-section {
    background: var(--Light-gray, #F5F5F5);
    padding-top: 160px;
    padding-bottom: 90px;
    width: 100%;
}

/* Style the back link */
.back-link {
   color: var(--Primary-color, #066D9F);
font-family: Outfit;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 128.571% */
letter-spacing: 0.28px;
	text-decoration: none;
}

/* Project title and description */
.project-header {
    text-align: left;
}

.project-header h1 {
color: var(--Gray, #2E2E2E);
font-family: 'Outfit', sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: normal;
    margin-bottom: 10px;
}

.project-subtitle {
   color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;

}


.project-details {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
}

.project-meta {
    width: 30%;
}

.project-meta p {
font-family: 'Outfit', sans-serif;font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
    margin-bottom: 10px;
}

.project-content {
    width: 65%;
}

.project-content h3 {
  color: var(--Body, #656565);
font-family: 'Outfit', sans-serif;font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
    margin-top: 20px;
}

.project-main-image img {
    width: 1224px;
height: 560px;
flex-shrink: 0;
    border-radius: 10px;
    margin-top: 40px;
}

.project-gallery {
    margin-top: 40px;
	
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    border-radius: 10px;
}


.related-projects {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f7f7f7;
  padding: 20px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
  font-size: 14px;
  z-index: 9999;
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cookie-consent-container p {
  margin-bottom: 15px;
}

.cookie-options {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-end;
}

.cookie-buttons button {
  padding: 8px 15px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

#accept-cookies {
  background-color: #119B9E;
  color: #fff;
}

#reject-cookies {
  background-color: #aaa;
  color: #fff;
}

#toggle-cookie-details {
  margin-top: 10px;
  cursor: pointer;
  color: #555;
  text-decoration: none;
}

.cookie-details {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

.cookie-category {
  background-color: #eaeaea;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.cookie-category table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.cookie-category th,
.cookie-category td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.cookie-category th {
  background-color: #f3f3f3;
  font-weight: bold;
}

.cookie-options input[type="checkbox"] {
    width: 25px;
    height: 25px;
    accent-color: #119B9E; /* matches the Allow button color */
    cursor: pointer;
}

/* =======================================
   🔹  Responsive Styles 🔹
   ======================================= */

@media (max-width: 768px) {
    /* Header */
    .custom-header {
        top: 35px;
        padding: 12px 20px;
        width: 90% !important;
        border-radius: 0;
		margin-top: 0 !important;
    }
    .primary-menu, .header-right {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .mobile-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    .mobile-menu.open {
        display: flex;
    }
    .mobile-menu-items {
        list-style: none;
        text-align: center;
    }
    .mobile-menu-items li {
        padding: 10px 0;
    }
    .mobile-menu-items li a:hover {
        color: red;
    }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer-column {
        width: 100%;
		text-align: left;
    }
    .footer-menu .footer-items {
        display: flex;
        flex-direction: column;
        align-items: left;
    }
	 .contact-info, .contact-form {
        width: 100%;
		 text-align: left;
    }
	.contact-form{
		width: 85% !important;
	}
	
	.btn {
		padding:10px 5px;
	}
	.footer-content{
		padding: 0 0;
	}
	.first-footer{
		text-align: left;
	}
	.image-content img {
height: 340px;
		width: 402px;
		object-fit: cover;
	 border-radius: 12px !important;
margin-top:120px;
		
}
	
	.container-services {
		display: grid;
		}
	.about-description p{
		font-size: 14px !important;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
	}
	
	.btn {
		padding: 10px 5px;
        width: 140px;
		margin-top: 20px !important;
	}
	
	/* Subtitle */
.service-title{
font-size: 20px;
line-height: 28px;
	text-align: left;
}
	.service-description1{
			text-align: left;

	}
	.service-box .learn-more {
		right: 45%;
	}
	.hero-text h1{
		font-size: 32px !important;
font-style: normal;
font-weight: 500;
line-height: normal;
	}
	.suppliers-section{
		padding: 72px 0;
	}
	.map-section{
		padding: 72px 0;
	}
	.service-description-section{
		padding: 72px 0 !important;
	}
	.service-description{
		font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
text-align: left;
	}
	
	.service-subtitle{
		text-align: left;
	}
	
	.cooperation-section{
				padding: 72px 0 !important;
	}
	
	.cooperation-title{
		font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.3px;
		text-align: left;
	}
	
	.cooperation-subtitle{
		text-align: left;
		display: flex;
	}
	
	.cooperation-text {
		width: 90%;
	}
	
	.feature-title{
		font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 140% */
letter-spacing: 0.3px;
	}
	.footer-bottom{
		padding: 0 0 !important;
		        align-items: revert;
	}
	
	.page-id-1068 p {
		text-align: left;
			font-size: 14px !important;
	}
	ul.wp-block-list{
		text-align: left;
	}
	
		.page-id-1066 p {
		text-align: left;
			font-size: 14px !important;
	}
		.page-id-1066 strong {
font-size: 24px;
 }
			.page-id-1068 strong {
font-size: 24px;
 }
	.stats-section{
		padding: 72px 0;
	}
	.about-hero {
		margin-bottom: 72px; 
		height: 480px;
	}
	.checkbox-group label {
		display: block;
	}
	.checkbox-group input[type="checkbox"]{
		width: 20px;
		height: 14px;
	}
	.service-box::after{
		top: 5px;
	}
	.hero-section{
		height: 480px;
    margin-top: 72px;
	}
	.map-subtitle{
		text-align: left;
	}
	.map-title{
		text-align: left;
		font-size: 32px;
font-style: normal;
font-weight: 500 !important;
line-height: normal;
letter-spacing: 0.3px;
	}
	h2.first-footer{
		font-size: 32px !important;
font-style: normal;
font-weight: 500;
line-height: normal;
	}
	
	.footer-column h4 {
text-align: left;
}

ul#menu-footer-menu1{
margin-left: 0px;
	}
	
	.footer-links{
		display: grid;
		justify-content: left;
		text-align: left;

	}
		.
	body{
		padding: 0 24px !important;
	}
}
  