:root {
  color-scheme: dark;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #e4ecf6;
  --text: #1f3345;
  --muted: #6a7b8f;
  --primary: #2a5d9e;
  --primary-soft: #dbe6f3;
  --border: #d5e1ed;
  --shadow: 0 24px 60px rgba(25, 53, 89, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'arial', sans-serif;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(2, 28, 48, 0.9)), url(assets/01.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #f4f7fb;
    color:#ffffff;
    line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 76, 120, 0.08);
  overflow:visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
   padding:4px 0;
}

/*
.brand {
  color: var(--primary);
  font-size: 2.1rem;
  font-weight: 700;
  text-decoration: none;
} */

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle-label span {
  width: 24px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
}

.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  font-size: 0.95rem;
  color: #2A5D9E;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: bold;
}

.main-nav a:hover {
  color: var(--primary);
}

.section {
  padding: 10px 20px 70px 20px;
}

..section-alt {
  background: #eef4fb;
}



.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color:#ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color:#ffffff;
}

h1 {
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0;
}

.hero {
  position: relative;
  padding: 20px 0 72px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(42, 93, 158, 0.22) 0%, rgba(246, 249, 253, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(42, 93, 158, 0.08), transparent 38%),
              radial-gradient(circle at bottom right, rgba(102, 141, 197, 0.06), transparent 30%);
  pointer-events: none;
}

.section-hero {
  position: relative;
  overflow: hidden;
}

.section-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid,
.split-grid,
.card-grid,
.location-grid,
.world-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/****************************************/

/* SERVICES 5 BOX ONE ROW */

#services .card-grid{
    display:flex !important;
    gap:15px;
    flex-wrap:nowrap !important;
}

#services .info-card{
    width:20%;
    min-width:20%;
}

#services .card-image{
    height:140px;
    object-fit:cover;
}

#services .info-card h3{
    font-size:16px;
    line-height:20px;
}

#services .info-card p{
    font-size:14px;
    line-height:22px;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    #services .card-grid{
        flex-wrap:wrap !important;
    }

    #services .info-card{
        width:48%;
        min-width:48%;
    }

}

@media(max-width:480px){

    #services .info-card{
        width:100%;
        min-width:100%;
    }

}

/****************************************/



.hero-grid {
  grid-template-columns: 1fr;
  align-items: flex-start;
}

.hero-copy {
  /* margin-top: -17px; */
  /* max-width: 758px; */
  color: #ffffff;
  font-size: 1.2rem;
  text-align:justify;
}

.hero-copyblock {
  display: grid;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 30px rgba(42, 93, 158, 0.18);
}

.btn-secondary {
  background: rgb(216 211 211);
  color: var(--primary);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(42, 93, 158, 0.12);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 18px 35px rgba(42, 93, 158, 0.05);

  /* remove fixed width */
  width: 100%;
  min-height: 170px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    width: 100%;
  }
}

.hero-feature-list {
  margin-top: 24px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(25, 53, 89, 0.12);
}

.hero-card,
.map-card,
.info-card,
.contact-card {
   background-size: cover;
   transform: scale(0.95);
     background-size: 50%;   /* image 25% smaller */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
  background:#d8d3d3;
  border: 0px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 12px 12px 35px 12px;
}

.hero-card h2 {
  margin-bottom: 16px;
  color:#ffffff;
}

.hero-card p {
  color: #ffffff;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.info-card h3 {
  margin-bottom: 12px;
}

#services .info-card h3,
#services .info-card p {
  color: #2a5d9e;
}

.info-card p {
  color:#ffffff;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color:#ffffff;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color:#ffffff;
  font-size: 1.2rem;
  line-height: 1;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.world-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.world-copy {
  max-width: 520px;
}

.map-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(42,93,158,0.14), rgba(123,154,195,0.08));
  border: 1px dashed rgba(42,93,158,0.3);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

..location-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  color: var(--text);
}

#locations .location-grid article h3,
#locations .location-grid article p {
  color: var(--text);
}

.location-grid h3 {
  margin-bottom: 18px;
}

.map-fullwidth .map-iframe-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  overflow: hidden;
  min-height: 420px;
}

.map-wrap .map-iframe-wrap,
.map-full .map-iframe-wrap {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  min-height: 420px;
}

.google-map-iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.map-topline {
  margin-top: 32px;
  margin-bottom: 20px;
}

.map-topline h3 {
  max-width: 760px;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
}

.map-label {
  position: absolute;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  box-shadow: 0 20px 40px rgba(25, 53, 89, 0.18);
  line-height: 1.5;
  font-size: 0.95rem;
}

.map-label strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.map-label span {
  display: block;
  color: var(--muted);
}

.map-label-canada {
  top: 14%;
  left: 6%;
}

.map-label-usa {
  bottom: 14%;
  right: 6%;
}

.map-label-iraq {
  top: 16%;
  right: 8%;
}

.map-label::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.map-label-canada::after {
  bottom: -8px;
  left: 24px;
}

.map-label-usa::after {
  top: -8px;
  right: 24px;
}

.contact-section {
  overflow-x: hidden;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.location-grid article {
  /*background: var(--surface);*/
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}


.contact-section p {
  max-width: 720px;
  color:#ffffff;
}

.site-footer {
  background: #203452;
  color: #e3edf8;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .hero-grid,
  .world-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .container {
    width: min(100%, calc(100% - 28px));
  }

  .hero-card,
  .info-card,
  .location-grid article,
  .map-card {
    padding: 24px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
  }

  .nav-toggle-label {
    display: flex;
    align-items: center;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(47, 76, 120, 0.08);
    gap: 10px;
    text-align: right;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
  }

  .nav-toggle:checked ~ .main-nav {
    max-height: 360px;
    opacity: 1;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Shared hero header used on locations, contact, services and about pages */
.locations-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 20px 0;
  text-align: center;
}
.locations-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 40px;
}
.locations-hero p {
  margin: 0;
  color:#ffffff;
  font-size: 1.2rem;
}


.location-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    padding:20px 0;
}

/* Header Logo */
.site-logo{
    height:160px;
    width:auto;
    display:block;
     /* important */
    margin-top:-22px;
    margin-bottom:-22px;
}



/* Responsive */
@media(max-width:768px){

    .site-logo{
        height:120px;
        margin-top:-10px;
        margin-bottom:-10px;
    }

}

/* Header */
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Brand */
.brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}



/* Text */
.brand-text{
    display:flex;
     margin-top:4px;
    text-align:center;
    flex-direction:column;
    line-height:1.2;
}

.brand-text h2{
    margin:0;
    font-size:15px;
    color:#000;
    font-weight:700;
     line-height:1;
}

.brand-text span{
    font-size:13px;
    color:#666;
    letter-spacing:0.5px;
}

/* Mobile Responsive */
/*
@media(max-width:768px){

    .site-logo{
        height:70px;
    }

    .brand-text h2{
        font-size:17px;
    }

    .brand-text span{
        font-size:11px;
    }

}*/



/* Header Compact */


.main-nav{
    display:flex;
    align-items:center;
}

.main-nav a{
    display:flex;
    align-items:center;
    height:auto;
}


/* Header Inner */
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
     height:78px;
    padding:0;
    /* min-height:70px !important; */
}

/* Navigation */
.main-nav{
    display:flex;
    align-items:center;
    gap:30px;
}

/* Nav Links */
.main-nav a{
    padding:0 !important;
    margin:0 !important;
    line-height:1;
}

/* Home page locations slider Styles */

/* ===== SLIDER WRAPPER ===== */
.location-grid{
    display:flex;
    gap:20px;
    overflow-x:auto;

    scroll-behavior:smooth;
    padding:20px 10px;

    scrollbar-width:none;
}

.location-grid::-webkit-scrollbar{
    display:none;
}

/* ===== CARD ===== */
.contact-card{
    min-width:280px; /* smaller card */
    height:310px;   /* 25% smaller */

    position:relative;
    overflow:hidden;

    border-radius:20px;

    background-size:cover;
    background-position:center;

    flex-shrink:0;

    cursor:pointer;

    transition:0.45s ease;

    box-shadow:
      0 10px 25px rgba(0,0,0,0.22);
}

/* ===== DARK OVERLAY ===== */
.contact-card::before{
    content:'';
    position:absolute;
    inset:0;

    background:
      linear-gradient(
      to top,
      rgba(0,0,0,0.88),
      rgba(0,0,0,0.15));

    z-index:1;
}

/* ===== CONTENT ===== */
.contact-content{
    position:absolute;

    left:20px;
    right:20px;
    bottom:20px;

    z-index:2;

    color:#ffffff;
}

/* ===== TITLE ===== */
.contact-content h3{
    color:#ffffff;
    font-size:18px; /* smaller */
    font-weight:700;

    margin-bottom:12px;
    white-space:nowrap;
}

/* ===== TEXT ===== */
.contact-content p{
    color:#ffffff;
    font-size:13px; /* smaller font */

    line-height:1.5;

    margin:8px 0;

    opacity:0;
    transition:0.4s ease;
}

/* ===== EMAIL ===== */
.location-email{
    color:#ffffff;
    text-decoration:none;
}

.location-email:hover{
    color:#9fd4ff;
}

/* ===== ICONS ===== */
.contact-content i{
    margin-right:6px;
    color:#ffffff;
}

/* ===== STRONG ===== */
.contact-content strong{
    color:#ffffff;
    font-size:13px;
}

/* ===== HOVER ===== */
.contact-card:hover{
    transform:translateY(-8px) scale(1.02);

    box-shadow:
      0 20px 40px rgba(0,0,0,0.35),
      0 0 20px rgba(37,99,235,0.35);
}

/* ===== TEXT SLIDE EFFECT ===== */
.contact-card:hover .contact-content p{
    opacity:1;
    transform:translateX(0);
}

.contact-content p:nth-child(2){
    transform:translateX(-40px);
}

.contact-content p:nth-child(3){
    transform:translateX(40px);
}

.contact-content p:nth-child(4){
    transform:translateX(-40px);
}

/* ===== ARROW BUTTONS ===== */
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,0.9);

    color:#0b3d91;
    font-size:26px;
    font-weight:bold;

    cursor:pointer;
     display:flex;
    align-items:center;
    justify-content:center;

    z-index:99;

    transition:0.3s ease;

    box-shadow:0 8px 20px rgba(0,0,0,0.22);
}

.slider-btn:hover{
    background:#0b3d91;
    color:#ffffff;
    transform:translateY(-50%) scale(1.08);
}

.slider-prev{
    left:-8px;
}

.slider-next{
    right:-8px;
}

/* ===== SLIDER WRAPPER ===== */
.slider-wrapper{
    position:relative;
    width:100%;
}



/* ===== MOBILE ===== */
@media(max-width:768px){

       /* SLIDER */
    .location-grid{
        gap:14px;
        padding:20px 6px;
    }

    .contact-card{
        min-width:220px;
        width:220px;
        height:340px;
        border-radius:20px;
    }
      /* CONTENT */
    .contact-content{
        left:16px;
        right:16px;
        bottom:16px;
    }


    .contact-content h3{
         font-size:16px;
        line-height:1.3;
        white-space:normal;
    }

 .contact-content p{
        opacity:0;
        max-height:0;

        overflow:hidden;

        transition:0.4s ease;

        transform:translateY(10px);
    }

    /* SHOW ON TAP / TOUCH */
    .contact-card:active .contact-content p,
    .contact-card:focus-within .contact-content p{
        opacity:1;
        max-height:300px;

        transform:translateY(0);
    }

     /* ICON FIX */
    .contact-content p i{
        min-width:16px;
        margin-right:8px;
        font-size:13px;

        margin-top:3px;

        color:#ffffff;
    }

    /* EMAIL LINK */
    .location-email{
        display:inline-block;
        word-break:break-word;
    }

    /* PHONE */
    .contact-content p:last-child{
        align-items:center;
    }

    .contact-content strong{
        font-size:11px;
    }

    .slider-btn{
        width:42px;
        height:42px;
        font-size:18px;
        top:50%;
    }

    .slider-prev{
        left:4px;
    }

    .slider-next{
        right:4px;
    }
}
