/* @import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Almarai:wght@300;400;700;800&family=Cairo:wght@200..1000&family=El+Messiri:wght@400..700&family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Noto+Kufi+Arabic:wght@100..900&family=Noto+Sans+Arabic:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Readex+Pro:wght@160..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap'); */
:root {
   --primary-color: #004d40;
   --gray-dark: #003630;
   --gray-light: #ebebeb;
   --white: #f3f3f3;
   --gray-text: #efeded;
   --accent-color: #38c49e;
   --extra-dark: #001f1c; 
   --question-bg: var(--white);
   --text-color: var(--extra-dark);
   --container-bg: var(--gray-light);
   --border-color: var(--gray-light);
   --icon-color: var(--extra-dark);
   --answer-text: var(--text-color);
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #07443e;
    /* border-radius: 5px; */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #0c6e5e;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #0e7766;
  }
  
  ::-webkit-scrollbar-corner {
    background: #f0f0f0;
  }
  @font-face {
 font-family: 'IBM-Local';
 src: url('fonts/ibm-plex-arabic-bold.woff2') format('truetype');
 }
  @font-face {
 font-family: 'IBM-Local-bold';
 src: url('fonts/ibm-plex-arabic-light.woff2') format('truetype');
 }
   @font-face {
 font-family: 'IBM-Local-li';
 src: url('fonts/ibm-plex-arabic-semibold.woff2') format('truetype');
 }
     @font-face {
 font-family: 'IBM-Local-btn';
 src: url('fonts/ibm-plex-arabic-medium.woff2') format('truetype');
 }
 li a{
      font-family:  'IBM-Local-li',sans-serif;
 }
p{
        font-family:  'IBM-Local-bold',sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "IBM Plex Sans Arabic", sans-serif ; */
        font-family:  'IBM-Local',sans-serif;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #001f1c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}


.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.pulsing-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}


.pulsing-loader div {
    width: 15px;
    height: 15px;
    margin: 0 6px;
    background-color: #004d40; 
    border-radius: 50%;
    animation: pulse-bounce 1.4s infinite ease-in-out both;
}

.pulsing-loader div:nth-child(1) {
    animation-delay: -0.32s;
}

.pulsing-loader div:nth-child(2) {
    animation-delay: -0.16s;
}

.pulsing-loader div:nth-child(3) {
    animation-delay: 0s;
}


@keyframes pulse-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}
body {
    background:linear-gradient(#011d1b,#023235);
    direction: rtl;
    color: var(--white);
    overflow-x: hidden;
    font-family:  'IBM-Local',sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    font-family:  'IBM-Local-li',sans-serif !important;
}

li {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
 button{
     font-family:  'IBM-Local-btn',sans-serif !important;
 }
.btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
font-family:  'IBM-Local-btn',sans-serif !important;

}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(9, 89, 65, 0.2);
    background-color: var(--accent-color);
    color: var(--white);
}

/* Reusable Components */
.circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #023f35;
    color: var(--white);
    border: 1px solid #023f35;
    border-radius: 50px;
    padding: 8px 20px;
    width: fit-content;
    position: relative;
    font-size: 0.9rem;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(2, 61, 30, 0.559);
    transition: transform 0.3s ease;
}

.circle:hover {
    transform: scale(1.05);
}

.circle .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-color);
    margin-left: 10px;
}

/* Header */
header {
    background:linear-gradient(#011d1b,#023235);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1b;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 50px;
}

.navbar .logo p {
    font-size: 1.1rem;
    margin-right: 10px;
}

.navbar nav ul {
    display: flex;
}

.navbar nav ul li {
    margin-left: 30px;
}

.navbar nav ul li a {
    color: var(--gray-text);
    font-size: 1rem;
    transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.navbar nav ul li a:hover {
    color: var(--white);
}

.navbar nav ul li a.active {
    background-color: #004d40;
    color: var(--white);
    border-radius: 50px;
    padding: 7px 25px;
}

/* .navbar .mobile-nav {
    display: none;
} */

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 15px;
}



/* Home Section */
.home {
    padding: 5rem 0;
    text-align: center;
}

.home .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.home h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #acacad;
    margin-top: 2rem;
    line-height: 1.2;
}

.home > p {
    color: #cbcbcb;
    font-size: 1rem;
    margin-top: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.home  .main-p {
    color: #cbcbcb;
    font-size: 1rem;
    margin-top: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.home .btn {
    margin-top: 1.5rem;
}

/* Logo Carousel */
.logo-carousel{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .logo-carousel .logos-track{
    display: flex;
    animation: move 50s linear infinite;
  }
 .logo-carousel img{
    width: 65px;
    margin-left: 55px;
    margin-top: 90px;
    filter: grayscale(100%) opacity(50%);
    transition: filter 0.3s ease;
  }
  .logo-carousel img:hover{
    filter: grayscale(0%) opacity(100%);
  }
 .logo-carousel::after,
 .logo-carousel::before{
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
  }
 .logo-carousel::after{
    left: 0;
    background: linear-gradient(to right, var(--primary-colo), transparent);
  }
 .logo-carousel::before{
    right: 0;
    background: linear-gradient(to left, var(--primary-colo), transparent);
  }
  @keyframes move{
    0%{
       transform: translateX(0%);
    }
    100%{
       transform: translateX(-50%);
    }
  }
.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px; 
    margin: 2rem auto; 
}

.stats-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 5.4px;
    z-index: 10;
    margin-bottom: -16px; 
    width: 96%;
}

.stats-header::before, 
.stats-header::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, #05352f, #003630, #085f55); 
    margin: 0 2px;
}

.stats-header::after {
    background: linear-gradient(to right, #05352f, #003630, #085f55); 
}

.happy-customers {
    padding: 8px 15px;
    background-color: #033c37; 
    color: #ededed;
    font-size: 1rem;
    border-radius: 25px;
    border: 1px solid #0d5f56;
    box-shadow: 0 0 10px #033c377a;
    backdrop-filter: blur(5px);
}

.dot-left, .dot-right {
    width: 6px;
    height: 6px;
    background-color: #ededed;
    border-radius: 50%;
    position: relative;
    z-index: 11;
}

.dot-left {
    left: -1px; 
}

.dot-right {
    right: 0.1px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    border: 1px solid #004d40;
    border-radius: 20px;
    width: 100%; 
    background: linear-gradient(135deg, #003630, #001f1c);
    border: 1px solid rgba(231, 229, 229, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .box {
    background: linear-gradient(135deg, #003630, #001f1c);
    border: 1px solid rgba(231, 229, 229, 0.2);
    border-radius: 15px;
    padding: 25px 15px;
    width: 25%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(2, 29, 7, 0.4); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.stats .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 112, 39, 0.5), 0 0 15px rgba(23, 112, 48, 0.1); 
}

.stats .box h3 {
    font-size: 2.5rem;
    color: #ffffff; 
}

.stats .box p {
    font-size: 1rem;
    color: #aaaaaa; 
    margin-top: 5px;
}
/* Services Section */
.services {
    padding: 5rem 0;
    text-align: center;
}

.services h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #acacad;
    margin-top: 2rem;
    line-height: 1.2;
}

.services > p {
    color: #acacad;
    font-size: 1rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.services  .main-p {
    color: #acacad;
    font-size: 1rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: auto;
    margin-top: 3rem;
}

.service-box {
    background: linear-gradient(135deg, #013e37, #001f1c);
    border: 1px solid #033832;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(6, 80, 48, 0.3);
}

.service-box i {
    font-size: 2.5rem;
    color: var(--white);
    background: linear-gradient(to bottom right, #01382f, #022124);
    border: 1px solid #b8b8b84e;
    border-radius: 10px;
    padding: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-box:hover i {
    color: var(--accent-color);
    background: #013e37;
    transform: scale(1.1);
}

.service-box h3 {
    font-size: 1.5rem;
    color: #ededed;
    margin-bottom: 10px;
}

.service-box p {
    color: #706e6e;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    text-align: right;
}

.about-content .circle {
    margin-right: 0;
}

.about-content h2 {
    font-size: 3.5rem;
    color: #acacad;
    margin-top: 2rem;
    line-height: 1.2;
}

.about-content > p {
    color: #acacad;
    font-size: 1rem;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.about-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-box {
    background: linear-gradient(135deg, #004d40, #003630);
    border: 1px solid #2c2c2c;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-box i {
    font-size: 2rem;
    color: var(--white);
    background: linear-gradient(to bottom right, #01382f, #022124);
    border: 1px solid #9e9e9e8f;
    border-radius: 10px;
    padding: 15px;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.about-box:hover i {
    color: var(--accent-color);
    background: #001f1c;
}


.about-box h3 {
    font-size: 1.2rem;
    color: #ededed;
}

.about-box p {
    font-size: 0.9rem;
    color: #bbbaba;
    line-height: 1.6;
}
/* start projct-us  Section */
.projct-us {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 1rem 5rem;
    margin-top: 70px;
  }
  
  .projct-us .content h1 {
    color: white;
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .projct-us .content > p {
    text-align: center;
    font-size: 18px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .projct-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
  }
  
  .projct-us .content {
    position: relative;
    z-index: 2;
  }
  .projct-us .boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .projct-us .boxes .box {
    border: 1px solid #013e37;
    background-color: #001f1c;
    border-radius: 20px;
    width: 550px;
    height: fit-content;
    margin-right: 20px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 10px;
 }
 .projct-us .boxes .box:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 35px #084844; 
 }
 .projct-us .boxes .box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent, #023f35, transparent);
    animation: rotateGlow 8s linear infinite;
    opacity: 0.5;
    z-index: 0; 
    transition: opacity 0.3s ease;
 }
 .projct-us .boxes .box:hover::before {
    opacity: 1;
    animation-play-state: running;
 }
 @keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
 }
 
 .projct-us img,
 .projct-us .text-box {
    position: relative;
    z-index: 1;
 }
 
 .projct-us img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 5px solid #003630;
    transition: transform 0.3s ease;
 }
 
 .projct-us .boxes .box:hover img {
    transform: scale(1.03);
 }
 
 .projct-us .text-box {
    padding: 0 10px;
 }
 
 .projct-us .text-box h3 {
    color: white;
    font-size: 20px;
    padding: 15px 0;
 }
 
 .projct-us .text-box p {
    color: #96b99c;
    line-height: 1.8;
    font-size: 17px;
    margin: auto;
 }
 .projct-us  .btn.center{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto;
    background: linear-gradient(135deg,#004d40,#013e37,#084844);
 }
 .projct-us  .btn.center i{
    color: #fff;
    margin-left: 12px;
    padding: 5px 0;
 }
 .projct-us .btn{
    position: relative;
    z-index: 500;
    margin: 10px 0;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #001f1c,#084844, #004d40);
    color: var(--white);
 
 }
 /* end projct-us  Section */

/* Work Section */
.work {
    padding: 5rem 0;
    text-align: center;
}

.work-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #acacad;
    margin-top: 2rem;
    line-height: 1.2;
}

.work-header  > p {
    color: #acacad;
    font-size: 1rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.work-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #2c2c2c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.05);
}

.large-card {
    grid-column: span 1;
    grid-row: span 2;
}

.small-card {
    grid-column: span 1;
    grid-row: span 1;
}

.work .btn {
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #acacad;
    margin-top: 2rem;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background:linear-gradient(#074a42,#0a342f);
    border: 1px solid #004d40;
    border-radius: 20px;
    padding: 30px;
    text-align: right;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--gray-text);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-card .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.testimonial-card h4 {
    font-size: 1.2rem;
    color: var(--white);
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0e4e49, #05282a);
    padding: 4rem 2rem; 
    width: 85%;
    text-align: center;
    margin: 5rem 1rem; 
    margin: auto;
    margin-bottom: 5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); 
    border-radius: 30px; 
    transition: transform 0.3s ease-in-out;
}

.contact:hover {
    transform: translateY(-5px);
}

.contact h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #e5f4f3;
    margin-top: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact  p {
    color: #c0c0c0;
    font-size: 1.15rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact .btn {
    margin-top: 2.5rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    background:linear-gradient(#0b4642,#023235);
    text-align: center;
    border-top: 1px solid #0c3930;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: right;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    width: 50px;
}

.footer-logo p {
    font-size: 1.1rem;
    margin-right: 10px;
}

.footer-nav, .footer-contact {
    text-align: right;
}

.footer-nav h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-nav ul li a {
    color: var(--gray-text);
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--gray-text);
    margin-bottom: 8px;
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a i {
    font-size: 1.5rem;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: var(--white);
    transform: scale(1.1);
}

footer hr {
    border: none;
    height: 1px;
    background-color: #0a413c;
    margin: 2rem 0;
}

.copyright {
    color: var(--gray-text);
    font-size: 0.9rem;
}
.mobile-toggle{
    display: none;
}
/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
    .navbar nav:not(.mobile-nav) { 
        display: none !important;
    }
   .main-p{
    padding-left: 10px;
    padding-right: 10px;
   }
   .stats-header {
    width: 90%;
}
    .mobile-toggle {
        display: block;
    }
    .navbar .btn{
        display: none;
    }
    .navbar .mobile-nav {
        display: flex;
        flex-direction: column;
        
        position: absolute;
        top: 100%; 
        right: 0;
        width: 100%;
        background-color: var(--gray-dark);
        border-top: 1px solid #004d40;
        
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        padding: 0;

        transition: all 0.4s ease-in-out; 
    }

    .navbar .mobile-nav.open {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        /* padding: 1rem 0; */
    }

    .navbar .mobile-nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .navbar .mobile-nav ul li {
        margin: 0;
        padding: 5px 0;
        border-bottom: 1px solid #0e4e49;
    }

    .navbar .mobile-nav ul li:last-child {
        border-bottom: none;
    }

    .navbar .mobile-nav ul li a {
        display: block;
        padding: 10px 20px;
        color: var(--gray-text);
        font-size: 1.1rem;
    }

    .navbar .mobile-nav ul li a:hover,
    .navbar .mobile-nav ul li a.active {
        background-color: #042a26;
        color: var(--accent-color);
        border-radius: 0;
    }

    /* General responsive adjustments */
    .container {
        padding: 0 15px;
    }
   .stats-container{
    padding: 20px ;
   }
  
    .home h2,
    .services h2,
    .about-content h2,
    .work-header h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    .stats .box {
        width: 100%;
        padding: 15px;
    }

    .services-grid,
    .about-grid,
    .work-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }

    .about-content .circle {
        margin: 0 auto;
    }

    .about-boxes {
        margin-top: 30px;
    }

    .work-grid {
        grid-template-rows: auto;
    }

    .large-card,
    .small-card {
        grid-column: span 1;
        grid-row: auto;
    }

    .testimonial-card {
        text-align: center;
    }

    .testimonial-card .client-info {
        justify-content: center;
    }

    .testimonial-card::before {
        left: 50%;
        transform: translateX(-50%);
        top: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-nav,
    .footer-contact {
        text-align: center;
    }
    .projct-us {
        padding: 1rem 0.5rem;
    }
      .projct-us .boxes .box {
        padding: 0;
        margin: 0;
        margin-top: 25px;
    }


}

.faq-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
}

h1 {
    text-align: center;
    color: var(--white); 
    margin-bottom: 35px;
    font-size: 2.5em;
    display: block; 
}

.faq-subtitle {
    text-align: center;
    font-size: 1em;
    color: var(--gray-text);
    margin-bottom: 40px;
    display: block;
    padding: 8px 18px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 12px;
    background: rgba(0, 29, 27, 0.7); 
    border-radius: 10px;
    border: 1px solid rgba(7, 93, 54, 0.1);
    overflow: hidden; 
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.faq-question {
    background-color: transparent; 
    color: var(--gray-light); 
    cursor: pointer;
    padding: 18px 22px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: rgba(56, 196, 158, 0.08); 
}

.faq-question.active {
    background-color: rgba(56, 196, 158, 0.12);
    color: var(--accent-color);
}

.icon {
    position: relative;
    width: 18px;
    height: 18px;
    color: #0c6e5e; 
    transition: transform 0.3s ease, color 0.3s ease;
    min-width: 18px;
    margin-left: 12px; 
}

.icon::before, .icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-question.active .icon {
    color: var(--accent-color); 
}

.faq-question.active .icon::after {
    transform: translateX(-50%) scaleY(0); 
    opacity: 0;
}

.faq-answer {
    padding: 0 22px; 
    background-color: rgba(0, 29, 27, 0.5);
    color: var(--white); 
    overflow: hidden;
    max-height: 0; 
    transition: max-height 0.5s ease-in-out, padding 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-question.active + .faq-answer {
    padding: 15px 22px 70px 22px;
}

.faq-answer p {
    line-height: 1.7;
    font-size: 1em;
    color: var(--gray-text);
}

/* // */
.partners-section {
    /* background-color: #022325; */
    padding: 60px 20px;
    text-align: center;
    direction: rtl; 
}

.partners-title {
    color: var(--white); 
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    max-width: 1300px; 
    margin: 0 auto;
}

.partner-logo {
    width: calc((100% / 6) - 15px); 
    min-width: 120px; 
    aspect-ratio: 5 / 2; 
    background-color: transparent; 
    border: 1.5px solid #194448; 
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    border-color: #004d40; 
    box-shadow: 0 0 15px rgba(18, 64, 52, 0.5); 
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    /* filter: invert(1) grayscale(100%) brightness(0.7) contrast(1.5);  */
    /* opacity: 0.8;  */
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 0.8; 
}


@media (max-width: 1200px) {
    .partner-logo {
        width: calc((100% / 5) - 15px); 
    }
}

@media (max-width: 992px) {
    .partner-logo {
        width: calc((100% / 4) - 15px);
    }
    .faq-question.active + .faq-answer {
    padding: 15px 22px 120px 55px;
}
}

@media (max-width: 768px) {
    .partner-logo {
        width: calc((100% / 3) - 15px);
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: calc((100% / 2) - 15px);
        aspect-ratio: 4 / 2;
    }
}

.main-title {
    font-size: 3rem;
    text-align: center;
    padding: 40px 0 30px;
    color: var(--main-color);
}
 
/* whatsapp icons */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #2cc263;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
  }
  
  .whatsapp-float.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #17ad4e;
  }
  

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  /* page About */

.content-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 50px 20px;
}

.quote-section {
    background: linear-gradient(135deg, #0b3531, #022325); 
    color: var(--gray-text);
    padding: 50px;
    margin-bottom: 70px;
    border-right: 4px solid var(--accent-color); 
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.quote-section:hover {
    transform: translateY(-5px);
    border-right-color: var(--white);
    box-shadow: 0 15px 40px rgba(8, 112, 95, 0.2);
}

.quote-section p {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
}

.quote-section h3 {
    font-size: 1.15rem;
    text-align: left;
    color: var(--accent-color);
    opacity: 1;
    margin-top: 20px;
}

.bio-and-gallery {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.bio-text {
    flex: 2; 
    line-height: 1.8; 
    color: var(--gray-text);
}

.bio-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--gray-text);
}

.section-text {
    margin-bottom: 50px;
    padding: 25px;
    border-radius: 12px;
    background-color: #011d1b;
    border: 1px solid rgba(0, 77, 64, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-text h3 {
    color: var(--accent-color);
    font-size: 2rem;
    border-bottom: 2px solid #07443e; 
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.bio-text ul {
    list-style: none;
    margin-top: 20px;
    padding-right: 0;
}

.bio-text li {
    margin-bottom: 12px;
    padding-right: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--white);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.bio-text li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-size: 0.9rem;
    top: 3px;
}

.image-gallery {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    min-width: 250px;
}

.image-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-color);
}



@media (max-width: 992px) {
    .bio-and-gallery {
        flex-direction: column;
        gap: 40px;
    }
    
    .quote-section {
        padding: 40px;
        margin-bottom: 50px;
    }

    .quote-section p {
        font-size: 1.4rem;
    }
    
    .section-text h3 {
        font-size: 1.6rem;
    }

    .image-gallery {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .image-gallery img {
        width: 48%; 
    }
}

@media (max-width: 600px) {
    .content-container {
        padding: 30px 15px;
    }
    .quote-section {
        padding: 25px;
        border-right-width: 5px;
    }
    .quote-section p {
        font-size: 1.2rem;
    }
    .image-gallery {
        flex-direction: column;
    }
    .image-gallery img {
        width: 100%;
    }
}


/* page projcet */
.home-projcet{
    width:100%;
    height: 50vh;
    background-image: url(images/banner.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home-projcet .home-title {
    font-size: 3.5rem;
    color:#FFFFFF;
    line-height: 1.4;
}
.home-projcet p{
    margin-top: 20px;
      color:#B0B0B0;
}
.projects-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.section-title {
    font-size: 3rem;
    color: #2d9f8c;
    line-height: 1.4;
    text-align: center;
    margin: 100px auto 30px auto;
}

.more-btn {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    align-self: flex-start; 
}

.link{
    margin-top: 30px;
}

.projects-wrapper {
    overflow: hidden;
    position: relative;
}

.projects-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    flex-wrap: wrap;
}

.project-card {
    flex: 0 0 calc(50% - 15px); 
    background: radial-gradient(#156558,#042220);
    border: 2px solid #003630;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 550px; 
}

.card-tag {
    background-color: var(--gray-light);
    color: var(--text-color);
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: 6px;
    align-self: flex-end;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.35rem;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.card-description {
    font-size: 1rem;
    color: #cecece;
    line-height: 1.6;
}

.details-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    margin-bottom: 25px;
}

.details-link:hover {
    color: var(--gray-dark);
}

.arrow {
    font-size: 1.2rem;
    line-height: 1;
    margin-right: 5px;
    transform: rotate(180deg);
    display: inline-block;
}

.card-image {
    width: 100%;
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s, width 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .project-card {
        flex: 0 0 100%; 
    }

    .header-content {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .more-btn {
        width: 100%;
        margin-bottom: 20px;
    }

    .project-card {
        min-height: auto;
    }
}