
  /* ===== Global Variables & Base Styles ===== */
  :root {
    --army-green: #2E3D2F;
    --egg-yolk: #FFD700;
    --third_color: #fff8d2;
    --light-bg: #F8F9FA;
    --text-color: #333;
    --textShadow:rgba(0,0,0,0.5);
    --border-radius: 10px;
    --linearGradient: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    --general-padding-y: 2rem;
    --general-padding-x: 4rem;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  /* ===== Loader (Optional) ===== */
  .loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--light-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
  }
  .spinner {
    border: 8px solid var(--light-bg);
    border-top: 8px solid var(--egg-yolk);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.2s linear infinite;
  }
  @keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* ===== Enhanced Header ===== */
  .header {
    background:var(--third_color); 
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px var(--text-color);
  }
  .logo {
    color:var(--army-green);
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .logo:hover {
    opacity: 0.9;
  }
  #logo-spaned{
    color: var(--army-green);
  }
  .logo-image {

   width: 100px;
   height: 100px;

  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  nav ul li a {
    color: var(--army-green);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
  }
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--army-green);
    transition: width 0.3s;
  }
  nav ul li a:hover::after {
    width: 100%;
  }
    /* ===== page-header Section ===== */
  .page-header {
    margin-top: 96px;
    background: var(--army-green);
    background: var(--linearGradient) , url('https://constructionreviewonline.com/wp-content/uploads/2014/05/arton27-1300x626.jpg');
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .page-header .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .page-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* ===== Enhanced Hero Section ===== */
  .hero {
    background: var(--linearGradient) ,
                url('https://constructionreviewonline.com/wp-content/uploads/2014/05/arton27-1300x626.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-bg);
    margin-top: 70px;
    padding: var(--general-padding-x) var(--general-padding-y);
    animation: fadeIn 1s ease-in;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px ;
  }
  .hero p {
    font-size: 1.2rem;
  }
  
  /* ===== Original Services Section (Maintained) ===== */
  .services {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
  }
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--army-green);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .service-card {
    padding: 2rem;
    border: 2px solid var(--army-green);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--light-bg);
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(75, 83, 32, 0.3);
  }
  .service-icon {
    font-size: 3rem;
    color: var(--army-green);
    margin-bottom: 1.5rem;
  }
  
  /* ===== Promotional Graphic Section ===== */
  .promo-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .promo-left {
    background-color: #2E3D2F; /* extracted left background */
    color: #F7E9A0;           /* highlighted text */
    padding: 2rem;
    padding: var(--general-padding-x) var(--general-padding-y);
  }
  .promo-right {
    background-color: var(--third_color); /* extracted right background */
    color: var(--text-color);
    padding: 2rem;
      padding: var(--general-padding-x) var(--general-padding-y);
  }

  @media (max-width: 768px) {
    .promo-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }}

  .promo-left h2,
  .promo-right h2 {
    margin-bottom: 1rem;
  }
  .promo-left ul,
  .promo-right ul {
    list-style: none;
    padding-left: 1rem;
  }
  .promo-left li,
  .promo-right li {
    margin-bottom: 0.5rem;
  }
  
  /* ===== Gallery Section ===== */
  .gallery {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
  }
  .gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--army-green);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  
  /* ===== About Section ===== */
  .about {
    padding: 5rem 5%;
    background: white;
  }
  .about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--army-green);
    text-align: center;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .about h3 {
    margin-top: 1rem;
    color: var(--army-green);
  }
  .about-image img {
    width: 100%;
    border-radius: 10px;
  }
  @media (max-width: 768px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* ===== Map Section ===== */
  .map-section {
    padding: 5rem 5%;
    background: var(--light-bg);
  }
  #worldMap {
    height: 500px;
    width: 100%;
    border-radius: 10px;
  }
  
  /* ===== Testimonials Section ===== */
  .testimonials {
    padding: 5rem 5%;
    background: white;
    text-align: center;
  }
  .testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .testimonial {
    flex: 0 0 80%;
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    scroll-snap-align: center;
  }
  

  /* ===== Enhanced Footer ===== */
  .footer {
    background: var(--army-green);
    color: white;
    padding: 16px 0%;
    text-align: center;
    position: relative;
  }
  #footer-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--third_color);
  }
  .social-links {
    margin: 2rem 0;
  }
  #copy-right {
    font-size: 0.9rem;
    background-color: var(--light-bg);
    color: var(--army-green);
  }
  .social-links a {
    color: var(--egg-yolk);
    margin: 0 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
  }
  .social-links a:hover {
    transform: translateY(-3px);
  }
  .contact-info {
    margin: 1.5rem 0;
    font-size: 1.1rem;
  }
  .contact-info p {
    margin: 0.5rem 0;
  }
  
  /* ===== Responsive Design ===== */
  @media (max-width: 768px) {
    .hero {
      height: 50vh;
      margin-top: 60px;
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    nav ul {
      gap: 1rem;
    }
    .services-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .service-card {
      padding: 2rem;
    }
    .about-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 480px) {
    .logo {
      font-size: 1.5rem;
    }
    nav ul li a {
      font-size: 1rem;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .services h2 {
      font-size: 2rem;
    }
  }

/* =====================================BOOKING =========================================================*/

  .booking-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    width: 85%;
    max-width: 500px;
  }
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .modal-header h2 {
    font-size: 1.4rem;
    color: #333;
  }
  .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  label {
    font-size: 1rem;
    color: #555;
    display: block;
    margin-bottom: 0.5rem;
  }
  input, select {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  select {
    max-height: 150px;
    overflow-y: auto; /* Scrollable dropdown options */
  }
  .form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
  }
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--light-bg);
    background: var(--army-green);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .cta-button:hover {
    background: var(--third_color);
  }
  .cta-button.secondary {
    background: #ccc;
    color: #333;
  }
  .cta-button.secondary:hover {
    background: #bbb;
  }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--light-bg);
      color: var(--text-color);
    }

    .map-section {
      padding: 4rem 5%;
      position: relative;
    }

    #worldMap {
      width: 100%;
      height: 600px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background: var(--light-bg);
    }

    /* Legend */
    .map-legend {
      margin-top: 1rem;
      font-size: 1rem;
      text-align: left;
      display: inline-block;
      background: white;
      border: 1px solid #ddd;
      padding: 1rem;
      border-radius: var(--border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .map-legend h3 {
      font-size: 1.2rem;
      color: var(--army-green);
      margin-bottom: 0.5rem;
    }

    .map-legend ul {
      list-style: none;
      padding-left: 0;
    }

    .map-legend li {
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .legend-icon {
      width: 15px;
      height: 15px;
      margin-right: 0.5rem;
      border-radius: 50%;
      display: inline-block;
    }

    /* Custom SVG Markers */
    .map-icon {
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 768px) {
      #worldMap { height: 400px; }
      .map-section h2 { font-size: 1.8rem; }
      .map-section p { font-size: 1rem; }
    }


    /* ===================================== END TOGGLE MOBILE =========================================================*/

    
  .menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .nav-links ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--army-green);
    font-weight: 500;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--third_color);
      width: 100%;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
  
    .nav-links ul {
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
    }
  
    .nav-links.show {
      display: block;
    }
  }
  