@font-face {
    font-family: 'LoewNextArabic';
    src: url('assets/fonts/LoewNextArabic-Regular.woff2') format('woff2'),
        url('assets/fonts/LoewNextArabic-Regular.woff') format('woff'),
        url('assets/fonts/LoewNextArabic-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LoewNextArabic';
    src: url('assets/fonts/LoewNextArabic-Medium.woff2') format('woff2'),
        url('assets/fonts/LoewNextArabic-Medium.woff') format('woff'),
        url('assets/fonts/LoewNextArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LoewNextArabic';
    src: url('assets/fonts/LoewNextArabic-Bold.woff2') format('woff2'),
        url('assets/fonts/LoewNextArabic-Bold.woff') format('woff'),
        url('assets/fonts/LoewNextArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LoewNextArabic';
    src: url('assets/fonts/LoewNextArabic-ExtraBold.woff2') format('woff2'),
        url('assets/fonts/LoewNextArabic-ExtraBold.woff') format('woff'),
        url('assets/fonts/LoewNextArabic-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'LoewNextArabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
button, textarea {
    font-family: 'LoewNextArabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(5, 64, 56, 0.80);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo img {
    width: 153.88px;
    height: 47.13px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-highlight {
    color: #a8d08d;
}

.tagline {
    color: #d4d4d4;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Sidebar Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #B9A779;
    position: relative;
}
.nav-links a:hover:after,
.nav-links a.active:after {
    font-size: 0;
    content: ' . ';
    position: absolute;
    bottom: -11px;
    width: calc(100% + 32px);
    left: -16px;
    background: #B9A779;
    height: 2px;
}

.lang-btn {
    box-shadow: none;
    background: transparent;
    border: none;
    font-size: 14px;
    font-family: 'LoewNextArabic' !important;
    line-height: 20px;
    padding: 0.5rem 1rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #1a4d4d 0%, #0d2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 38, 35, 0.00) 1.74%, rgba(5, 66, 57, 0.60) 50.87%), linear-gradient(0deg, rgba(0, 38, 35, 0.70) 0%, rgba(0, 38, 35, 0.70) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1220px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #c4a572;
}

.hero p {
    font-size: 26px;
    font-weight: 500;
    line-height: 32.5px;
    padding: 0 55px;
    color: #d4d4d4;
    margin-bottom: 2rem;
}

.cta-btn {
    background: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 10px 16px;
    justify-content: center;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-btn i {
    margin-top: 6px;
}

.cta-btn:hover {
    background: rgba(139, 115, 85, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(168, 208, 141, 0.5);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    z-index: 2;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #a8d08d;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0; }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    /* transform: translateX(-50px); */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    /* transform: translateX(0); */
}

.slide-in-right {
    opacity: 0;
    /* transform: translateX(50px); */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    /* transform: translateX(0); */
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Section */
.stats {
    background: #988561;
    padding: 32px 110px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: white;
    font-size: 48px;
    margin-bottom: 0;
    line-height: 48px;
}

.stat-item p {
    color: #f0f0f0;
    font-size: 1rem;
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
}

/* About Section */
.about {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), var(--Main-Colors-Secondary-Light, #EDEBE0);
    padding: 80px 110px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-content h2 .highlight {
    color: #c4a572;
}

.about-content h3 {
    margin-bottom: 1rem;
    color: #0F172A;
    font-size: 26px;
    line-height: 36px;
}

.about-content p {
    color: #0F172A;
    font-size: 16px;
    line-height: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 8px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #B9A779;
    font-size: 16px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Journey Section */
.journey {
    position: relative;
    padding: 0px 110px 80px 110px;
}

.journey-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #333;
}

.journey-header h2 .highlight {
    color: #c4a572;
}

.journey-header p {
    font-size: 18px;
    color: #0F172A;
    font-weight: 500;
    max-width: 600px;
}

.timeline {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-item {
    background: linear-gradient(135deg, #1a4d4d 0%, #0d2626 100%);
    background-image: url('./assets/journey/step-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 24px;
    border-radius: 14px;
    color: white;
    position: relative;
    transition: transform 0.3s;
}

.timeline-item:nth-child(1) {
    background-image: url('./assets/journey/step-1.png');
}
.timeline-item:nth-child(2) {
    background-image: url('./assets/journey/step-2.png');
}
.timeline-item:nth-child(3) {
    background-image: url('./assets/journey/step-3.png');
}
.timeline-item:nth-child(4) {
    background-image: url('./assets/journey/step-4.png');
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-item .arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--Main-Colors-Secondary-Dark, #988561);
    padding: 10px;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item .arrow i {
    font-size: 20px;
}

.timeline-year {
    background: #B9A779;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: bold;
}

.timeline-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.timeline-location i{
    color: #B9A779;
}

.timeline-item p {
    opacity: 0.9;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.client-journey{
    background: #f5f5f0;
    background-image: url('./assets/client-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Clients Section */
.clients {
    padding: 80px 110px;
    position: relative;
}


.clients-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #333;
}

.clients-header h2 .highlight {
    color: #c4a572;
}

.clients-header p {
    font-size: 18px;
    color: #0F172A;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 29.25px; 
}

.clients-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 120px;
    border-radius: 8px;
    border: 1px solid var(--Basic-Border-Divider, #D2D6DB);
    background: #FFF;
    padding: 24px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Waves Section */
.waves {
    padding: 80px 110px;
    background: #1a4d4d;
    background-image: url('assets/waves.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.waves::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002623F4;
    z-index: 0;
}

.waves-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.waves-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.waves-header h2 .highlight {
    color: #c4a572;
}

.waves-header p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
    max-width: 600px;
}

.waves-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.wave-item {
    padding: 24px;
    transition: all 0.3s;
    border-radius: 14px;
    background: rgba(5, 66, 57, 0.40);
    display: flex;
    flex-direction: column;
    align-items: start;
    border: 2px solid transparent;
}

.wave-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #428177;
}

.wave-item:hover h3{
    color: #B9A779;
}

.wave-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-item h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    min-height: 56px;
}

.wave-item p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 16px;
}

/* Certifications Bar */
.certifications {
    background: rgba(213, 216, 221, 0.90);
    padding: 40px 110px;
    margin-top: -1px;
}

.certifications-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1400px;
}

.cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.cert-logo:hover {
    opacity: 1;
}

.cert-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%)
}

/* Solutions Section */
.solutions {
    padding: 80px 0px 80px 110px;
    background: #f5f5f0;
    background-image: url('assets/solution.bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #EDEDED 27.71%, rgba(237, 237, 237, 0.00) 100%);
}

.solutions .line {
    position: relative;
}

.solutions-header {
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solutions-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
}

.solutions-header h2 .highlight {
    color: #c4a572;
}

.solutions-header-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-right: 110px;
    position: absolute;
    right: 0;
    top: 25px;
}

.solutions-header-nav .carousel-arrow {
    position: static;
    transform: none;
}

.solutions-subheader {
    font-size: 18px;
    color: #0F172A;
    margin-bottom: 48px;
    max-width: 800px;
    position: relative;
}

.solutions-container {
    margin: 0 auto;
    position: relative;
}

.carousel {
    position: relative;
}

.owl-carousel {
    position: relative;
    margin-bottom: 30px;
}

.owl-stage-outer {
    overflow: hidden;
}

/* Remove custom navigation arrows from carousel */
.carousel-nav-arrows {
    display: none;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.9);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    font-size: 20px;
}

.carousel-arrow:hover {
    background: rgba(139, 115, 85, 1);
    transform: scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    transform: scale(1);
}

.carousel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
    margin: 1rem;
}

.carousel-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #0d2626 0%, #1a4d4d 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 1;
}

.carousel-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.carousel-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

/* Hide default Owl Carousel navigation */
.owl-nav {
    display: none;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
    display: none;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(139, 115, 85, 0.3) !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
}

.owl-dot.active {
    background: rgba(139, 115, 85, 0.9) !important;
    width: 30px;
    border-radius: 10px;
}

.carousel-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Strategic Edge Section */
.strategic {
    padding: 80px 110px;
    background: #1a4d4d;
    background-image: url('assets/strategic-edge-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.strategic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002623D9;
    z-index: 0;
}

.strategic-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strategic-header h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.strategic-header p {
    max-width: 600px;
    line-height: 29.25px;
}

.strategic-header h2 .highlight {
    color: #c4a572;
}

.strategic-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.strategic-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.strategic-item {
    border-radius: 14px;
    background: rgba(5, 66, 57, 0.40);
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: start;
}

.strategic-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.strategic-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.strategic-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 28px;
}

.strategic-item p {
    opacity: 0.9;
    font-weight: 500;
    line-height: 28px;
}

/* Products Section */
.products {
    padding: 80px 110px;
    background: #f5f5f0;
}

.products-header {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-header h2 {
    font-size: 48px;
    line-height: 100%;
    color: #333;
}

.products-header h2 .highlight {
    color: #c4a572;
}

.products-subheader {
    text-align: center;
    font-size: 18px;
    color: #0F172A;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #d4d4d4 0%, #a8a8a8 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.product-image-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-inner {
    transform: scale(1.15);
}

.product-content {
    padding: 24px 16px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-subtitle {
    color: #988561 !important;
    margin-bottom: 1rem;
    border-radius: 3000px;
    background: rgba(185, 167, 121, 0.12);
    width: fit-content;
    padding: 10px 12px;
    font-weight: 700;
    line-height: 100% !important;
}

.product-content p {
    color: #0F172A;
    line-height: 1.8;
    font-size: 14px;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 110px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), var(--Main-Colors-Secondary-Light, #EDEBE0);;
}

.testimonial-content {
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px 80px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    max-width: 1400px;
}

.quote-left {
    position: absolute;
    top: 140px;
    left: 80px;
}

.quote-right {
    position: absolute;
    top: 50px;
    right: 80px;
}

.testimonial-text {
    font-size: 24px;
    padding: 0px 60px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(92deg, var(--Text-Body, #0F172A) 57.15%, var(--Main-Colors-Secondary, #B9A779) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.testimonial-text .highlight {
    color: #c4a572;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c4a572;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: center
}

.author-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #B9A779;
}

.author-title {
    font-size: 1rem;
    color: #6E6E6E;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a4d4d 0%, #0d2626 100%);
    color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -290px;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.contact-form-wrapper {
    margin: auto;
    max-width: 100%;
    width: 600px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.contact-header h2 {
    margin-bottom: 10px;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
}

.contact-header h2 .highlight {
    color: #c4a572;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: white;
    font-size: 1.1rem;
}

.input-icon.text-area{
    margin-top: -30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: transparent;
    border: 1px solid #ffff;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form textarea {
    padding: 0.5rem 1rem 1rem 3rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c4a572;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
    resize: vertical;
}

.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
    position: relative;
    background: transparent;
    border: 1px solid #ffff;
    border-radius: 8px;
}

.phone-input-wrapper input,
.phone-input-wrapper select,
.phone-input-wrapper .select2-container--default .select2-selection--single {
    border: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    display: none;
}

.country-select-wrapper {
    position: relative;
    width: 140px;
}

.country-select {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    padding-right: 2rem;
    padding-left: 50px;
}

.country-select option {
    background: #1a4d4d;
    color: white;
    padding: 0.5rem;
}

/* Select2 Custom Styling */
.select2-container--default .select2-selection--single {
    background: transparent !important;
    border: 1px solid #fff !important;
    border-radius: 8px !important;
    height: 56px !important;
    padding-left: 50px !important;
    color: white !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
    line-height: 56px !important;
    padding-left: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 54px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent !important;
}

.select2-dropdown {
    background: #1a4d4d !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.select2-container--default .select2-results__option {
    background: transparent !important;
    color: white !important;
    padding: 10px 15px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(196, 165, 114, 0.3) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: rgba(196, 165, 114, 0.5) !important;
}

.select2-results__option {
    font-size: 14px !important;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.country-flag {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
}

.flag-icon {
    width: 30px;
    object-fit: cover;
}

.dropdown-arrow {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.5);
}

.phone-input {
    flex: 1;
    padding: 1rem !important;
}

.submit-btn {
    background: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: rgba(139, 115, 85, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    min-height: 78px;
}

.captcha-error {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.captcha-error.show {
    display: block;
}

/* Footer */
footer {
    background: #054239;
    color: white;
    padding: 64px 110px 32px 110px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.footer-section h3 {
    margin-bottom:16px;
    color: white;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-section .chevron {
    font-size: 30px;
    color: #B9A779;
    line-height: 100%;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c4a572;
}

.contact-info h4 {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0.3rem;
    font-weight: normal;
    color: #94A3B8;
    line-height: 100%;
}

.contact-info p {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #054239;
}

.social-icon:hover {
    background: #c4a572;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
}

.line{
    width: 80px;
    height: 4px;
    background: var(--Main-Colors-Secondary, #B9A779);
    display: block;
}

/* ============================================
    RESPONSIVE STYLES - TABLET & MOBILE
    ============================================ */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1200px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 64, 56, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a:hover:after,
    .nav-links a.active:after {
        display: none;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
    }


    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        padding: 0 20px;
    }

    .stats {
        padding: 32px 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .about,
    .journey,
    .clients,
    .waves,
    .strategic,
    .products,
    .testimonial {
        padding: 60px 40px;
    }

    .solutions {
        padding: 60px 0px 60px 40px;
    }

    .certifications {
        padding: 40px 40px;
    }

    footer {
        padding: 48px 40px 32px 40px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-image img {
        height: 400px;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item .arrow {
        display: none;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .waves-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .carousel-card {
        min-width: 400px;
    }

    .solutions-header-nav {
        top: 100px;
        padding-right: 0px;
    }
}

/* Mobile Styles (Below 768px) */
@media (max-width: 767px) {
    /* Header & Navigation */
    header {
        padding: 1rem;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0;
    }

    .cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Stats Section */
    .stats {
        padding: 24px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 14px;
        margin-top: 8px;
    }

    /* All Sections Padding */
    .about,
    .journey,
    .clients,
    .waves,
    .strategic,
    .products,
    .testimonial {
        padding: 40px 20px;
    }

    .solutions {
        padding: 40px 20px;
    }

    .certifications {
        padding: 24px 20px;
    }

    footer {
        padding: 32px 20px 24px 20px;
    }

    /* Section Headers */
    .about-content h2,
    .journey-header h2,
    .clients-header h2,
    .waves-header h2,
    .strategic-header h2,
    .products-header h2,
    .solutions-header h2,
    .contact-header h2 {
        font-size: 32px;
    }

    .about-content h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .about-content p,
    .journey-header p,
    .clients-header p,
    .waves-header p,
    .strategic-header p,
    .products-subheader,
    .solutions-subheader,
    .contact-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-image img {
        height: 300px;
    }

    .about-features {
        padding-top: 20px;
        gap: 0.875rem;
    }

    .feature-item {
        font-size: 14px;
    }

    /* Journey/Timeline */
    .timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-item {
        padding: 24px 20px;
    }

    .timeline-item h3 {
        font-size: 20px;
    }

    .timeline-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .timeline-item .arrow {
        display: none;
    }

    /* Clients Grid */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-logo {
        min-height: 100px;
        padding: 16px;
    }

    /* Waves Grid */
    .waves-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wave-item {
        padding: 20px;
    }

    .wave-item h3 {
        font-size: 18px;
        min-height: auto;
    }

    .wave-item p {
        font-size: 14px;
    }

    /* Certifications */
    .certifications-container {
        gap: 2rem;
        justify-content: center;
    }

    .cert-logo img {
        max-width: 80px;
        max-height: 40px;
    }

    /* Solutions Carousel */
    .carousel {
        padding: 0 20px;
    }

    .solutions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .solutions-header h2 {
        font-size: 32px;
    }

    .solutions-header-nav {
        align-self: center;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-nav-arrows {
        display: none;
    }

    .carousel-image {
        height: 450px;
    }

    .carousel-content {
        padding: 1.5rem;
    }

    .carousel-content h3 {
        font-size: 1.5rem;
    }

    .carousel-content p {
        font-size: 0.9rem;
    }

    /* Strategic Grid */
    .strategic-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strategic-item {
        padding: 20px;
    }

    .strategic-item h3 {
        font-size: 24px;
    }

    .strategic-item h4 {
        font-size: 16px;
    }

    .strategic-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        margin: 0;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.25rem;
    }

    /* Testimonial */
    .testimonial-content {
        padding: 30px 20px;
    }

    .quote-left,
    .quote-right {
        display: none;
    }

    .testimonial-text {
        font-size: 18px;
        padding: 0;
        line-height: 1.6;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-title {
        font-size: 14px;
    }

    /* Contact Form */
    .contact {
        padding: 3rem 1.5rem;
        background: linear-gradient(135deg, #1a4d4d 0%, #0d2626 100%);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        max-width: 100%;
        width: fit-content;
    }

    .contact-header {
        margin-bottom: 32px;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .country-select-wrapper {
        width: 120px;
    }

    .country-select {
        padding-left: 40px;
        font-size: 0.9rem;
    }

    .select2-container--default .select2-selection--single {
        height: 52px !important;
        padding-left: 52px !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 52px !important;
        font-size: 0.9rem !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 50px !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        font-size: 0.875rem;
    }
}

/* Extra Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .carousel-card {
        min-width: 100%;
    }
}