
 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

 p {
      color: rgb(0, 0, 0);
      font-size: 16px;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      text-align: justify;
      margin-bottom: 20px;
    }

    h2 {
    font-size: 33px;
    margin-bottom: 12px;
    color: #0b5f8a;
}

    /* Top Bar */
    .topbar {
      background:#ffeb3b;
      color:#000000;
      padding:8px 20px;
      font-size:18px;
      display:flex;
      justify-content:space-between;
      flex-wrap:wrap;
    }

 
   /* NAVBAR */
nav {
  background: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.logo img {
  width: 200px;
}

/* Desktop Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  cursor: pointer;
  font-weight: bold;
}

/* Hamburger icon (hidden on desktop) */
.menu-toggle {
  font-size: 32px;
  cursor: pointer;
  display: none;
}

/* MOBILE MODE */
@media (max-width: 850px) {

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Hide menu by default */
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 1px solid #ddd;
  }

  /* Active class to show menu */
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
}



.hero {
    background: url('imges/banner.webp') center/cover no-repeat;
      height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      color: white;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .hero p {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      max-width: 700px;
      line-height: 1.6;
      opacity: 0.85;
      color: #ffffff;
      text-align: center;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }

    /* Search Bar */
    .searchbar {
      margin-top:30px;
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px;
    }
    select, button {
      padding:12px 15px;
      border-radius:4px;
      border:1px solid #ccc;
      font-size:16px;
    }
    button {
      background:#facc00;
      border:none;
      cursor:pointer;
      font-weight:bold;
    }

    /* Industry Grid Section */
.industry-section {
  text-align: center; /* Center section content */
  padding: 40px 20px;
  background: #f7f9fc; /* Optional light background */
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #00357a;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center; /* Center each card in the grid */
  max-width: 1200px;
  margin: 0 auto; /* Center the grid */
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 250px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  display: block;
}

.card h3 {
  padding: 12px;
  color: #00357a;
  font-size: 16px;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

    /* About Section */
    .about {
      padding:40px 20px;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:20px;
    }
    .about-text { max-width:600px; }
    .about-text h2 { font-size:28px; color:#00357a; font-weight:800; }
    .about-text p { margin-top:10px; line-height:1.6; }
    .about button { background:#facc00; padding:12px 20px; border:none; border-radius:4px; margin-top:20px; cursor:pointer; }

    /* Footer */
    footer {
      background:#002b5c;
      color:#fff;
      text-align:center;
      padding:20px;
      margin-top:40px;
    }

    @media (max-width:600px) {
      nav ul { flex-direction:column; gap:10px; }
    }



.about-section {
    display: flex;
    gap: 30px;
    padding: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT IMAGE */
.about-image img {
    width: 320px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* CENTER CONTENT */
.about-content {
    flex: 1;
    min-width: 280px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 12px;
}

.btn-yellow {
    display: inline-block;
    background: #ffcc00;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    border-radius: 6px;
    margin-top: 15px;
}

/* TESTIMONIAL RIGHT SIDE */
.about-testimonial {
    width: 260px;
    min-width: 260px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
}

.about-testimonial .quote {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-testimonial .author {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.dots span {
    height: 8px;
    width: 8px;
    background: #000;
    margin-right: 5px;
    display: inline-block;
    border-radius: 50%;
}

/* INFO BAR */
.info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 15px 25px;
    border-radius: 10px;
    gap: 20px;
    flex-wrap: wrap;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box i {
    font-size: 32px;
    color: #004aad;
}

.info-box strong {
    display: block;
    font-size: 15px;
}

.info-box span {
    font-size: 13px;
    opacity: 0.8;
}

.contact-btn {
    margin-left: auto;
    padding: 10px 20px;
    background: #004aad;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #00337a;
}


/* RESPONSIVE */
@media(max-width: 992px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-testimonial {
        width: 100%;
        max-width: 500px;
        margin-top: 20px;
    }

    .info-bar {
        justify-content: center;
        text-align: left;
    }
}

@media(max-width: 600px) {
    .about-image img {
        width: 100%;
    }

    .info-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-btn {
        align-self: center;
        margin-top: 15px;
    }
}

.testimonial-carousel {
    width: 100%;
    max-width: 320px;
    background: #f4f4f4;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.quote {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 15px;
}

.author {
    font-weight: bold;
    display: block;
}

/* Controls */
.carousel-controls span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    user-select: none;
}

.prev { left: 5px; }
.next { right: 5px; }

/* Dots */
.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dots span {
    height: 10px;
    width: 10px;
    display: inline-block;
    background: #bbb;
    border-radius: 50%;
    margin: 4px;
    cursor: pointer;
}

.carousel-dots .active-dot {
    background: #000;
}


.global-reach-section {
    background: #07365C; /* Dark blue background */
    color: #fff;
    padding: 60px 20px;
}

.title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.global-reach-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT BOX */
.reach-box {
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    min-width: 260px;
}

.reach-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.regions {
    list-style: none;
    padding: 0;
}

.regions li {
    background: #f5f5f5;
    padding: 12px;
    margin-bottom: 6px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.regions li:hover {
    background: #eaeaea;
}

.focus-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* MAP AREA */
.map-area {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.world-map {
    width: 100%;
    border-radius: 10px;
}

/* Location dots */
.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFEB3B;
    border-radius: 50%;
    box-shadow: 0 0 6px 3px rgba(255, 235, 59, 0.7);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .global-reach-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reach-box {
        width: 100%;
        max-width: 400px;
    }
}

   
/* Layout Wrapper */
.below{
  display: flex;
  gap: 36px;
  padding: 42px 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left Column */
.content-left{
  flex: 2;
  min-width: 280px;
}

.section-title{
  font-size: 32px;
  color: #0b5f8a;
  margin-bottom: 18px;
  font-weight: 700;
  
}

/* Team Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card{
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card img{
  width: 100%;
  border-radius: 4px;
  display: block;
}

.card h4{
  margin: 10px 0 0;
  font-size: 14px;
  color: #163e55;
}

/* Right Column: News Box */
.content-right{
  flex: 1;
  min-width: 280px;
}

.news-box{
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.news-box h3{
  margin-bottom: 12px;
  color: #0b5f8a;
  font-size: 26px;
}

.news-box .item{
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.news-box .item:last-child{
  border-bottom: none;
}

.news-box .item h4{
  margin: 0;
  font-size: 15px;
  color: #163e55;
}

.news-box .item p{
  margin-top: 6px;
  font-size: 13px;
  color: #5a6b73;
}

/* View All Button */
.view-all-wrapper{
  margin-top: 16px;
}

.view-all-btn{
  display: inline-block;
  padding: 10px 40px;
  background: #ffeb3b;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.view-all-btn:hover{
  background: #084766;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px){
  .cards{
    grid-template-columns: 1fr;
  }
}


    /* cookie box */
    .cookie{
      position:fixed;
      right:20px;
      bottom:16px;
      width:360px;
      max-width:calc(100% - 48px);
      background:linear-gradient(180deg,#fff,#f0f7fb);
      border-radius:6px;
      border:3px solid rgba(19,74,114,0.06);
      box-shadow: 0 10px 26px rgba(3,25,38,0.25);
      padding:18px;
      z-index:9999;
    }
    .cookie h4{ margin:0 0 6px 0; color:#134a72; }
    .cookie p{ margin:0 0 12px 0; color:#345b6f; font-size:13px }
    .cookie .actions{ text-align:right }
    .btn{
      display:inline-block;
      padding:10px 16px;
      border-radius:6px;
      text-decoration:none;
      font-weight:600;
    }
    .btn-primary{ background:#0b5f8a; color:white; border:0; }
    .btn-ghost{ background:transparent; color:#0b5f8a; border:1px solid rgba(11,95,138,0.12); }

    /* Footer Styles */
.footer {
  background-color: #0b5f8a;
  color: white;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer_logo img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.footer_links, .footer_address, .footer_contact {
  display: flex;
  flex-direction: column;
}

.footer_links h4,
.footer_address h4,
.footer_contact h4 {
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
}

.footer_links a,
.footer_contact a,
.footer_address a {
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer_links a:hover,
.footer_contact a:hover,
.footer_address a:hover {
  color: #ffcc00;
}

.footerBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  color: white;
  transition: background 0.3s;
}

.footerBtn:hover {
  background: rgba(255,255,255,0.2);
}

.social_icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  margin-top: 10px;
}

.social_icons img {
  width: 20px;
  height: 20px;
}

.footerBtn i {
  margin-right: 8px; /* space between icon and text */
}

.footer_address {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer_links, .footer_address, .footer_contact {
    align-items: center;
  }
}

    /* responsive rules */
    @media (max-width:900px){
      .hero-inner{ flex-direction:column; align-items:stretch; gap:18px; }
      .hero-left{ width:100% }
      .world-map{ height:260px; }
      .map-wrap{ padding:18px }
      .below{ padding:24px 16px; gap:18px }
      .cards{ grid-template-columns:1fr; }
      .news-box{ margin-top:12px }
    }
    @media (max-width:520px){
      h1.hero-title{ font-size:22px; }
      .hero-left h2{ font-size:20px }
      .world-map{ height:220px; background-position: 40% 30% }
      .marker{ width:12px; height:12px; border-width:2px }
      .cookie{ width:auto; left:12px; right:12px; bottom:12px; }
    }



 /* map section */
 /* MAP BACKGROUND AREA */
    .map-container {
        position: relative;
        width: 1585px;
        height: 600px;
        background: url("imges/middle-east-map.jpg") no-repeat center center;
        background-size: cover;
        overflow: hidden;
    }

    /* LEFT LIST OVER MAP */
    .regions {
        position: absolute;
        top: 50px;
        left: 160px;
        width: 320px;
        background: rgba(255, 255, 255, 0.9);
        padding: 12px;
        border-radius: 6px;
        z-index: 10;
    }

    .regions h3 {
        margin: 0 0 10px;
        font-size: 18px;
        color: #FFD700;
    }

    .region-item {
        background: rgba(255, 255, 255, 0.9);
        padding: 8px;
        margin: 4px 0;
        cursor: pointer;
        border-radius: 4px;
        transition: 0.2s;
    }

    .region-item:hover {
        background:#155A8A;
    }

    /* HIGHLIGHT CIRCLES */
    .highlight {
        position: absolute;
        background: rgba(255, 215, 0, 0.45);
        border: 2px solid #FFD700;
        border-radius: 50%;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .highlight.active {
        opacity: 1;
    }




    /* Main Layout */
.about-section {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.2fr;
    gap: 30px;
    padding: 40px;
    align-items: start;
}

/* Left Image */
.about-image img {
    width: 100%;
    border-radius: 6px;
}

/* Center Content */
.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0b5f8a;
}

.about-content p {
    margin: 15px 0 25px;
    line-height: 1.6;
    color: #333;
}

/* Yellow Button */
.btn-yellow {
    display: inline-block;
    padding: 12px 25px;
    background: #ffeb3b;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 20px;
}

/* Info Bar */
.info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #f3f3f3;
    margin-right: -365px;
    padding: 32px 20px;
    border-radius: 10px;
}

.info-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box i {
    font-size: 22px;
    color: #003da5;
}

.info-box strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.info-box span {
    font-size: 12px;
    opacity: 0.7;
}

/* CONTACT BUTTON BOX */
.contact-box {
    justify-content: center;
}

.contact-btn {
    padding: 8px 50px;
    background: #ffeb3b;
    color: rgb(0, 0, 0);
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #00337a;
}

/* Responsive for mobile */
@media(max-width: 768px) {
    .info-bar {
        flex-wrap: wrap;
    }

    .info-box {
        flex: 100%;
        justify-content: flex-start;
    }

    .contact-box {
        justify-content: flex-start;
        margin-top: 10px;
    }
}




/* Right Testimonial */
.testimonial-box {
    text-align: right;
    padding-right: 20px;
}

.big-quote {
    font-size: 22px;
    font-weight: 700;
    color: #063e8f;
    line-height: 1.4;
}

.quote-author {
    margin-top: 10px;
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

/* ---------------------------- */
/* RESPONSIVE DESIGN */
/* ---------------------------- */

@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-box {
        text-align: center;
        padding: 0;
        margin-top: 20px;
    }

    .info-bar {
        justify-content: center;
    }

    .contact-btn {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .big-quote {
        font-size: 18px;
    }
}





