@font-face {
    font-family: 'BasisGrotesqueArabicPro';
    src: url('fonts/BasisGrotesqueArabicPro-Regular.woff2') format('woff2'),
         url('fonts/BasisGrotesqueArabicPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BasisGrotesqueArabicPro';
    src: url('fonts/BasisGrotesqueArabicPro-Bold.woff2') format('woff2'),
         url('fonts/BasisGrotesqueArabicPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BasisGrotesqueArabicPro';
    src: url('fonts/BasisGrotesqueArabicPro-Light.woff2') format('woff2'),
         url('fonts/BasisGrotesqueArabicPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MySignatureFont';
    src: url('fonts/MySignatureFont-Regular.woff2') format('woff2'),
         url('fonts/MySignatureFont-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #005447;
    --secondary-color: #808285;
    --white: #ffffff;
    --bg-light: #f7f9f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'BasisGrotesqueArabicPro', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}


.full-wave-wrapper {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    position: relative;
}

header {
    background: transparent;
    padding: 25px 0;
    position: relative;
    z-index: 1000;
}

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

.logo img {
    height: 85px;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

.logo a {
    display: inline-block;
    border: none;
    outline: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    font-weight: 700;
    color: #4a4a4a;
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #4a4a4a;
    transition: color 0.3s ease, transform 0.2s ease;
}

.hamburger:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}


.hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: left;
    padding-top: 10px;
    animation: slideUpFade 1s ease-out forwards;
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 0;
    animation: slideUpFade 1.2s ease-out forwards;
}

.hero-main {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
    line-height: 1;
    animation: slideUpFade 1.4s ease-out forwards;
}


.intro-text-section {
    padding: 50px 0 30px 0;
    text-align: center;
}

.intro-text-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--secondary-color);
    line-height: 1.8;
}

.intro-text-section p strong {
    color: var(--primary-color);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--secondary-color);
    padding: 10px 30px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease, transform 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.stats-block {
    background-color: var(--primary-color);
    padding: 50px 0;
    color: var(--white);
    margin-top: 30px;
    animation: fadeInScroll 1s ease-out;
}

@keyframes fadeInScroll {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-group h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
}

.stat-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    display: block;
    font-weight: 300;
    font-size: 0.95rem;
    color: #cce3e0;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    margin-top: 5px;
}


.testimonial-section {
    padding: 80px 0;
    background-color: var(--white);
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.quote-mark {
    color: var(--primary-color);
    font-size: 3.5rem;
    position: absolute;
}

.quote-mark-left {
    top: -15px;
    left: -20px;
}

.quote-mark-right {
    bottom: 60px;
    right: -20px;
}

.quote-text {
    font-size: 1.15rem;
    color: var(--secondary-color);
    line-height: 2;
    margin-bottom: 40px;
    padding: 0 40px;
}

.signature-container {
    text-align: right;
    padding-right: 40px;
    margin-top: 30px;
}

.signature-name {
    font-family: 'MySignatureFont', 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: -5px;
}

.signature-title {
    font-size: 1rem;
    color: var(--secondary-color);
}


.partners-section {
    padding: 30px 0 80px 0;
    text-align: center;
    background-color: var(--white);
}

.partners-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.partners-subtext {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.partners-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    transition: transform 0.5s ease;
}

.partners-image-wrapper img:hover {
    transform: scale(1.02);
}


footer {
    background-color: var(--primary-color);
    padding: 25px 0;
    color: var(--white);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.footer-col {
    flex: 0 1 auto;
}


.footer-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: none;
}

.footer-logo {
    max-height: 60px; 
    width: auto;
    margin-bottom: 0;
    filter: brightness(0) invert(1); 
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-contact-info p {
    font-size: 0.75rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.footer-contact-info i {
    margin-top: 0;
    font-size: 0.7rem;
}

/* Footer Quick Links */
.footer-links-col {
    display: flex;
    align-items: center;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 0;
}

.footer-links li a {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    transition: opacity 0.3s, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}


.footer-social-col {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icons a {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.2s ease;
    line-height: 0;
}

.footer-social-icons a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.footer-social-icons img {
    height: 25px; 
    width: auto;
    display: block;
}

.footer-social-text {
    font-size: 0.75rem;
    margin: 0;
}




.page-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
	
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    margin-top: -100px;
    animation: slideUpFade 1.4s ease-out forwards;
}


.about-content {
    padding: 60px 0;
    background-color: var(--white);
}

.about-text-block {
    max-width: 900px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-text-block strong {
    color: var(--primary-color);
}


.vision-mission-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.vm-box {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vm-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.vm-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vm-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
}


.vm-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    opacity: 0.8;
    flex-shrink: 0;
}

.vm-arrow img {
    max-height: 120px;
    width: auto;
    display: block;
}




.services-intro {
    padding: 40px 0;
    text-align: center;
    background-color: var(--white);
}

.services-intro p {
    font-size: 1.5rem;
    color: var(--secondary-color);
}


.service-block {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    min-height: 500px;
    margin-bottom: 60px;
}


.service-text-box {
    background: rgba(0, 84, 71, 0.50);
    padding: 40px 50px;
    width: 55%;
    border-radius: 4px;
    position: relative;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.service-text-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.left-aligned {
    margin-right: auto;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.right-aligned {
    margin-left: auto;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}


.service-text-box h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-text-box p {
    color: #e0eeec;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-text-box p:last-child {
    margin-bottom: 0;
}



.contact-page-section {
    padding: 60px 0 100px 0;
    background-color: var(--white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-heading {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2col {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #b0b0b0;
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 84, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    background-color: #003d33;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 84, 71, 0.3);
}



.hero-small-label {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: -10px;
    text-transform: uppercase;
}

/* Projects Intro Text */
.projects-intro {
    padding: 40px 0;
    text-align: center;
    background-color: var(--white);
}

.projects-intro p {
    font-size: 1.1rem;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 500;
}



.hr-stat-block {
    background-size: cover;
    background-position: center bottom;
    padding: 80px 0 120px 0;
    min-height: 600px;
    position: relative;
}

.hr-stats-container {
    max-width: 1100px;
}

.hr-year-group {
    margin-bottom: 40px;
    position: relative;
    max-width: 400px;
}

.hr-year-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.hr-stat-line {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
}

.hr-number {
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 400;
    min-width: 40px;
}

.hr-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 300;
}

.hr-decorative-line {
    height: 6px;
    background-color: #3b9c8e;
    width: 120px;
    margin-top: 10px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    border-radius: 2px;
}



.telecom-intro p {
    color: var(--primary-color);
}

.telecom-details-block {
    padding: 40px 0 80px 0;
    background-color: var(--white);
}

.telecom-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1300px;
}

.telecom-left-col, .telecom-right-col {
    flex: 1;
    max-width: 350px;
}

.telecom-center-image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.telecom-center-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.telecom-client-group {
    margin-bottom: 40px;
}

.telecom-client-group h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.telecom-year {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0 5px 0;
}

.telecom-client-group ul {
    list-style: none;
    padding-left: 0;
}

.telecom-client-group ul li {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.4;
}



.hero-small-label {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: -10px;
    text-transform: uppercase;
}

.projects-intro {
    padding: 40px 0;
    text-align: center;
    background-color: var(--white);
}

.projects-intro p {
    font-size: 1.1rem;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 500;
}

.full-width-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--white);
    padding-bottom: 60px;
}

.full-width-image-container img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
}



.btn-signin {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff !important; 
    font-family: 'BasisGrotesqueArabicPro', 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 0 2px rgba(0,0,0,0.2); 
}

.btn-signin:hover {
    background-color: #003d33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 84, 71, 0.3);
    color: #ffffff !important; 
}


media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .footer-col {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .footer-branding {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer-links-col {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }
    
    .footer-social-col {
        justify-content: center;
    }
    
    .footer-social-icons img {
        height: 30px;
    }
}

@media (max-width: 768px) {
    
    nav {
        gap: 8px;
    }

    
    .logo img {
        height: 55px; 
    }

   
    .btn-signin {
        display: none; 
        width: auto; 
        padding: 4px 12px; 
        font-size: 0.7rem; 
        margin-top: 0;
        flex-shrink: 0; 
    }
   .mobile-signin-li {
        display: block; 
        margin-top: 15px; 
    }

    .mobile-signin-li .btn-signin {
        display: inline-block; 
        width: auto;
        padding: 8px 25px;
    }
    
        .hamburger {
        display: block !important;
        font-size: 1.8rem; 
        color: var(--secondary-color);
        cursor: pointer;
        z-index: 1001; 
        flex-shrink: 0;
        cursor: pointer !important;
        padding: 5px !important;
        z-index: 9999 !important;
        position: relative !important;
        min-width: 40px !important;
        min-height: 40px !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: transparent !importan;
    
    }

	
	 header {
        overflow: visible !important;
    }
    .nav-container {
        overflow: visible !important;
    }
    nav {
        overflow: visible !important;
        width: 100%;
        justify-content: flex-end; 
    }

   
    .nav-links {
   
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 25px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
        gap: 15px;
        z-index: 999;
    }
    
    .nav-links.active { display: flex; }

    
    .page-hero { height: 200px; }
    .page-hero h1 { font-size: 2.5rem; }
    .hero { height: 40vh; min-height: 300px; }
    .hero-sub { font-size: 1.5rem; }
    .hero-main { font-size: 3rem; }
    
    .quote-text { font-size: 1rem; padding: 0 10px; }
    .quote-mark { display: none; } 
    .signature-container { text-align: center; padding-right: 0; }
    
    .about-text-block { text-align: left; padding: 0 10px; }
    .vision-mission-container { flex-direction: column; gap: 50px; }
    .vm-arrow { display: none; }

    
    .service-block { padding: 60px 0; min-height: auto; background-position: right center; }
    .service-text-box {
        width: 100%;
        padding: 30px 20px;
        clip-path: none; 
        margin: 0; 
        border-radius: 0;
    }
    .left-aligned, .right-aligned { margin: 0; clip-path: none; }
    .service-text-box h2 { font-size: 1.8rem; }

    
    .contact-container { max-width: 100%; }
    .form-row-2col { flex-direction: column; gap: 20px; }
    .btn-submit { width: 100%; text-align: center; }

    /* Projects Mobile Adjustments */
    .telecom-container { flex-direction: column; align-items: center; }
    .telecom-left-col, .telecom-right-col, .telecom-center-image { flex: 1; max-width: 100%; width: 100%; }
    .telecom-center-image img { max-height: 300px; margin: 30px 0; }
    .hr-stats-container { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hr-decorative-line { margin: 10px auto 0; }
}


@media (max-width: 768px) {
    .service-image-block img {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover;
    }
}