
/* ============================================
   CERTIA FONTS - Local (Latin)
   ============================================ */

@font-face {
    font-family: 'Certia';
    src: url('../fonts/Certia-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Certia';
    src: url('../fonts/Certia-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Certia';
    src: url('../fonts/Certia-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Certia';
    src: url('../fonts/Certia-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Certia';
    src: url('../fonts/Certia-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   ARABIC FONT - Google Cairo (with variable weight)
   ============================================ */

/* Best method: Preconnect + Import in CSS */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');


html{ scroll-behavior: smooth; }
:root {
    --white: #fff;
    --h-white:  rgba(255, 255, 255, 0.5);
    --cream: rgb(217, 212, 206);

    --sn-green: rgb(183, 255, 74);

    --sn-deep-teal: #113946;

    --sn-dark-teal: #10535b;
    --sn-steel-teal: #236c77;
    --sn-slate-teal: #35868e;
    --sn-warm-gray: #d8d4ce;
    --sn-peach: #e6a776;

    --font-primary: 'Certia', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Arabic Language ── */
html[lang="ar"] body,
html[lang="ar"] .arabic-content {
    font-family: 'Cairo', 'Certia', 'Segoe UI', sans-serif;
    direction: rtl;
    text-align: right;
}

/* ── German & Turkish (Latin) ── */
html[lang="de"] body,
html[lang="tr"] body {
    font-family: 'Certia', 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: var(--font-primary) ;
}
.elementor, #wpadminbar {
    display: none !important;
}
#logo span:first-child {
    border: .2px solid var(--h-white);
}
#header-btn > div , #header-btn > a {
    padding: 8px 20px;
    border: .5px solid var(--h-white);
    color: var(--h-white);
} 


#main-header {
  margin: 0;
  width: 100%;
  max-width: 100%;
}
#logo img {
    width: 64px;
    height: 64px;
}

.logo-text {
  letter-spacing: .22em;
  font-size: 1.12
}
.logo-radius {
  border-radius: 50%;

    --tw-backdrop-blur: blur(24px);
    -webkit-backdrop-filter: blur(24px) ;
}





/* ===== Nav link underline on hover ===== */
.nav-link{
  position: relative;
  transition: color .2s ease;
}
.nav-link:hover{ color: #ffffff; }
.nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #caa46c;
  transition: width .25s ease;
}
.nav-link:hover::after{ width: 100%; }

/* ===== Language switch inactive state ===== */
.lang-btn{ transition: color .2s ease; }
.lang-btn:not(.text-white){ color: rgba(255,255,255,0.5); }

/* ===== Header solid state after scrolling ===== */
#siteHeader.scrolled{
  background: rgba(16,57,70,0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.1);
}

/* ===== Mobile nav panel open state ===== */
#mobileNav.open{ 
    display: flex;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(10px);
}
#mobileNav .have-bg {
    background-color: var(--cream);
}
/* ===== Scroll cue under the hero ===== */

@keyframes scrollCue{
  0%   { transform: scaleY(0.3); opacity: .3; }
  50%  { transform: scaleY(1);   opacity: 1;  }
  100% { transform: scaleY(0.3); opacity: .3; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .scroll-cue span{ animation: none; }
}



/* section scroll globe */
/* ============================================
   HORIZONTAL SCROLL CONTAINER
   ============================================ */
.horizontal-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #EAE7E1;
}

.horizontal-track {
  display: flex;
  height: 100vh;
  width: 200vw; /* 2 sections = 200% width */
  will-change: transform;
}

.horizontal-track > * {
  flex: 0 0 100vw; /* Each child takes full viewport width */
  height: 100vh;
  overflow-y: auto; /* Allow vertical scroll inside if needed */
}

/* ============================================
   FIX INTERNAL SCROLLING
   ============================================ */
/* The globe section and process section should not scroll vertically */
#horizontalSection > .horizontal-track > * {
  overflow-y: hidden;
}

/* But if you want content inside to scroll, add this */
#process {
  overflow-y: auto;
}

/* back button */
#backToTop, #scrollProgress {
    bottom: 60px !important;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .horizontal-track {
    width: 200vw;
  }
}

/* ============================================
   PULSE GLOW ANIMATION
   ============================================ */
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}

@media only screen and (max-width: 1200px) {
.hero-title {
    font-size: 92px!important;
  }
}
@media only screen and (max-width: 1024px) {

  .hero-visual-panel {
    display: none !important;
  }
}

@media only screen and (max-width: 769px) {
    .hero-title {
        font-size: 62px!important;
    }
}






/* mobail icon */
.menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Active state ── */
.menu-toggle.active {
    background: rgba(183, 255, 74, 0.08);
    border-color: rgba(183, 255, 74, 0.25);
    box-shadow: 0 0 40px rgba(183, 255, 74, 0.08);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: #B7FF4A;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: #B7FF4A;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #103946;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    /* Auto-hide animation */
    /* animation: hideLoader 3.5s ease forwards;
    animation-delay: 0.5s */
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ============================================
   LOADER CONTENT
   ============================================ */
.loader-content {
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}
.loader-br {
    width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #c5cfd0
}
.loader-br2 {
    width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
border: 1px dashed #B7FF4A;

}
/* ── Subtitle ── */
.loader-subtitle {
    font-size: 12px;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}

/* ── Main Title ── */
.loader-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.05;
    display: flex;
    flex-direction: column;
}

.loader-title .loader-title-light {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Fade In Up (for loader content) ── */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@media ( max-width: 980px ) {
    #header-btn {
        display: none;
    }
    #mainNav {
        display: none !important;
    }
    #menuToggle {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    /* .loader-title {
        font-size: 48px;
    } */
    .menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .menu-toggle .bar {
        width: 20px;
        height: 2px;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .loader-subtitle {
        font-size: 10px;
        letter-spacing: 4px;
    }
    
    .loader-dots span {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    /* .loader-title {
        font-size: 32px;
    } */
    
    .loader-subtitle {
        font-size: 8px;
        letter-spacing: 3px;
    }
    .footer-bottom {
        flex-wrap: wrap;
    }
    .footer-bottom > div {
        width: 100%;
        padding: 9px 0;
    }
    .footer-bottom > span {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    #logo img {
        width: 40px;
        height: 40px;
    }
}


/* icons */
.social-icon {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.social-icon {
    padding: 0 6px;
    color: #d9d4ce;
}

