body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
  /*background: beige;*/
  /*background-image: url("./image/Clients Page.png");*/
  overflow-x: hidden;
}

/* Fix for white space/overflow issues */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* CSS Variables */
:root {
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --muted: #6c757d;
  --dark: #343a40;
  --accent: #007bff;
    --transition-speed: 0.4s;
}

/* Global content container */
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

a { text-decoration: none; }

.btn, .btn-quote {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover { background: #0056b3; }
/* ===== NAVBAR STYLING ===== */
.navbar {
    background:  #003;/* Dark Navy Blue #001f3f;*/
    color: #fff;
    padding: 0; /* Remove default padding, controlled by nav-container */
    position: fixed;
    top: 0;
    width: 100%; /* Full screen width for the background */
    z-index: 1000;
    /* Adjust height to control the thickness of the bar */
    height: 100px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    /* Pushes logo to the left, and menu/button to the right */
    justify-content: space-between; 
    align-items: center;
    /* Sets the maximum width for the content area */
    max-width: 1300px; 
    width: 100%;
    /* Centers the container horizontally within the navbar */
    margin: 0 auto; 
    /* Padding on the sides for smaller screens */
    padding: 0 20px; 
    height: 100%; /* Match parent height */
    box-sizing: border-box;
}

/* Logo and Image */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    /* Keep logo at the far left edge */
}

.logo-img {
    height: 65px; /* Adjust logo size */
    width: auto;
}



.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center; /* Vertically align items in the middle */
    height: 100%;
}

.navbar ul li {
    margin-left: 25px; /* Spacing between links */
    /* Adjust this margin to align the button correctly */
    margin-right: 0; 
}


/* Link Styling */
.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px; /* Slightly smaller font size */
    font-weight: 500; /* Medium weight */
    text-transform: uppercase;
    padding-bottom: 5px; 
    position: relative;
    transition: color 0.3s ease;
}

/* Link Hover/Active Underline (Cloning the image's look) */
.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Thicker line for emphasis */
    background: #0067FF; /* Light Blue color */
    transition: width 0.3s ease-out;
}

/* Active link style */
.navbar ul li a.active {
    color: #0067FF; /* Active text color */
}

.navbar ul li a.active::after {
    width: 100%; /* Active line persistence */
}

.navbar ul li a:not(.btn-quote):hover::after {
    width: 100%; 
}

.btn-quote {
    background: #0067FF; /* Light blue background */
    color: #ffffff !important; /* Dark navy text */
    padding: 10px 20px !important; /* Button size */
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    transition: background 0.3s ease;
    
    /* Remove the underline effect from the button */
    padding-bottom: 10px !important; /* Compensate for the removed padding */
    margin-bottom: 0 !important;
}

.btn-quote:hover {
    background: #0056b3; /* Slightly darker on hover */
      transform: translateY(-5px);
}

/* Ensure the quote button does not show the underline effect */
.btn-quote::after {
    display: none !important;
}

/* === MOBILE/HAMBURGER STYLES === */
.hamburger {
    display: none; /* Hide on desktop */
}

@media (max-width: 900px) {
    /* Hide menu and show hamburger on mobile */
    #nav-menu {
        
    }
    .hamburger {
        display: block;
        font-size: 28px;
        margin-right: 0;
    }
#nav-menu ul.show {
  display: flex;
}

#nav-menu ul.hide {
  display: none;
}
    /* Mobile menu styles would need to be added here */
}
/* ===== MOBILE MENU ===== */
@media (max-width: 900px) {
  .navbar ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -260px; /* hidden off-screen */
    height: 100vh;
    width: 250px;
    background: #000033;
    padding-top: 100px;
    text-align: center;
    transition: right 0.4s ease-in-out;
  }

  .navbar ul.show {
    right: 0;
    animation: slideInRight 0.4s ease forwards;
  }

  .navbar ul.hide {
    animation: slideOutRight 0.4s ease forwards;
  }

  .navbar ul li {
    margin: 20px 0;
  }

  .btn-quote {
    display: none;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 2001;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInRight {
  from {
    left: 260px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    left: 0;
    opacity: 1;
  }
  to {
    right: -260px;
    opacity: 0;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 55vh; /* smaller hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  margin-top: 100px; 
}

.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}


.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;  /* align to left */
  justify-content: center;
  text-align: center;         /* make sure text is left-aligned */
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 60px;
}

/* Make fonts larger and visually stronger */
.hero-left h2 {
    font-size: 2.3529411764706rem; /* Subtitle is a little smaller and uppercase */
 font-weight: 700; /* Lighter weight for the top line */
 color: #0067FF; /* White color */
 margin-bottom: 2px;

font-family: 'Montserrat', sans-serif;
}

.hero-left h1 {
 font-size: 3rem; /* This is the main, huge, bold headline */
 color: #ffffff;
 margin-bottom: 2px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 0.6em;
}

.hero-left p {
 font-size: 1rem;
 color: #ffffff; /* Slightly off-white for body text */
 line-height: 1.6;
 margin-bottom: 15px; /* Space before the new button wrapper */
 max-width: 600px; /* Constrain the width for readability */
}

/* Button (optional slight adjustment to match the new layout) */
.btn-diagonal {
  align-self: center;/* keep button aligned with text */
  margin-bottom: 10px;
}

/* Responsive scaling */
@media (max-width: 900px) {
  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-left p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }
}


/* Button with diagonal top-right cut */
.btn-diagonal {
  position: relative;
  background: #007bff;
  color: #fff;
  padding: 15px 35px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 85% 0, 100% 25%, 100% 100%, 0 100%);
}

.btn-diagonal:hover {
  background: #0056b3;
  transform: translateY(-3px);
}




/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .hero-left {
    max-width: 100%;
  }

  .btn-diagonal {
    align-self: flex-start;
  }

  .hero {
    height: 100vh;
  }
}

/* Fade/Slide animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Custom Blue Color (used in the image for the panel) */
.bg-blue {
  background-color: #0044BB; /* A vibrant, deep blue */
}

/* Info Panel Styling */
.info-panel {
  color: white;
  /* Key change: Set max width and center it */
  max-width: 1200px;
  margin: -150px auto 0 auto; /* Pull it up and center it horizontally */
  
  background-color: #0044BB; /* A vibrant, deep blue */
  padding: 40px 20px;
  position: relative; 
  z-index: 10;
}

/* Use your global .container for max-width/centering (added 'container' class to info-panel div in HTML) */
.info-panel .container {
 
  margin: 0 auto;
}

.info-grid {
  display: grid;
  /* Adjusting the column ratio to better match the visual in the photo */
  grid-template-columns: 1.2fr 1.8fr; 
  gap: 20px;
  align-items: flex-start; /* Align content to the top */
}

/* Info Text (Left Side) */
.info-text {
  padding-right: 20px;
}

.info-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  font-weight: 500; /* Lighter weight for "Build Your Dream" */
}

.info-text .tagline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem; /* Space before the values/button */
}

.info-text .values {
  /* This text is now above the button and not italic */
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 2rem; 
  padding-bottom: 10px; /* Space between the text and the button */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Separator line */
}

/* "WORK WITH US" Button */
.btn-info-panel {
  display: inline-block;
  background-color: transparent; /* No background */
  color: white;
  border: 2px solid white; /* White border */
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-info-panel:hover {
  background-color: white;
  color: #0044BB; /* Text becomes blue on hover */
}

/* Stats Grid (Right Side) */
.stats-grid {
  display: grid;
  /* Use 2 columns as in the photo, no gap between stats boxes */
  grid-template-columns: repeat(2, 1fr); 
  gap: 0; 
  text-align: left;
  /* Use a grid for the rows to align them perfectly */
  grid-auto-rows: 1fr; 
}

/* Individual Stat Box */
.stat {
  background-color: transparent; /* No background on the stats */
  padding: 15px 25px;
  border: 1px solid #0F172A; /* Light border for separation */
  /* Ensure border is only on the inside edges */
  border-left: none;
  border-top: none; 
}

/* Define borders for the grid structure as seen in the photo */
.stat:nth-child(1), .stat:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat:nth-child(2), .stat:nth-child(4) {
  border-right: none;
}


.stat strong {
  /* The number is the main focus, larger font */
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.1rem; /* Tiny space under the number */
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .info-grid {
    /* Stack the two columns on mobile/tablet */
    grid-template-columns: 1fr;
  }
  
  .info-text {
    /* Remove vertical divider on mobile/tablet and add bottom padding */
    border-right: none;
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center; /* Center the text on smaller screens */
  }
  
  .btn-info-panel {
    display: block; /* Make button full width on small screens */
    margin: 0 auto;
  }
  
  .info-text .values {
    margin-bottom: 1.5rem;
    padding-bottom: 15px;
    text-align: center;
  }

  .stats-grid {
    text-align: center; /* Center the stats text on smaller screens */
  }

  /* Reset borders for vertical stacking */
  .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .stat:nth-child(even) {
     border-right: none; /* remove right border for last item in row of 2 */
  }
}
        /* Projects Section */
        .projects {
            padding: 10px 0;
      
        }

        .projects-container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: -1px 10px;
            background: #003;
            
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
            color: #fff;
            
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
             transition: opacity var(--transition-speed) ease-in-out; /* Add transition for projects grid */
             margin: 10px;

        }

     .project-card {
    /* Set up the transition for a smooth effect */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    /* Important for animation! */
    opacity: 1; 
    transform: translateY(0);
    display: block; /* Default state */
    animation: cardScaleIn 0.6s ease-out forwards;
}


        /* Animation delay for staggered effect */
        .portfolio-item:nth-child(1) { animation-delay: 0.1s; }
        .portfolio-item:nth-child(2) { animation-delay: 0.2s; }
        .portfolio-item:nth-child(3) { animation-delay: 0.3s; }
        .portfolio-item:nth-child(4) { animation-delay: 0.4s; }
        .portfolio-item:nth-child(5) { animation-delay: 0.5s; }
        .portfolio-item:nth-child(6) { animation-delay: 0.6s; }
        
        /* Keyframes for the scaling animation */
        @keyframes cardScaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            70% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .project-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 107%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-plus {
            width: 50px;
            height: 50px;
            background: white;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 300;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .project-plus:hover {
            background: #f5f5f5;
            transform: scale(1.1);
        }

        .project-info {
            margin-bottom: -27px;
        }

        .project-name {
            position: relative;
            display: inline-block;
            color: white;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            padding-bottom: 5px;
            margin: 20px;
        }

        .project-name:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: white;
            transition: width 0.3s ease;
        }

        .project-name:hover:after {
            width: 100%;
        }

        .project-name:hover {
            color: #ccc;
        }

 /* Clients Section */
        .clients {
            padding: 10px 0;
            background: #f5f5f5;
            overflow: hidden;
        }

        .clients-container {
            position: relative;
        }

        .clients-scroll {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 60px;
        }

        .client-logo {
            flex-shrink: 0;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .client-logo:hover {
            opacity: 1;
        }

        .client-logo img {
            max-width: 150px;
            height: 60%;
            justify-content: center;
            /*filter: grayscale(100%);*/
            transition: filter 0.3s ease;
        }

        .client-logo:hover img {
            filter: grayscale(0%);
        }
        .section-title{
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-150px * 8 - 60px * 8));
            }
        }
        .featured-projects-home{
            background: #003;
            display: block;
        }
        
  .featured-projects-home .projects-grid{
      grid-template-columns: repeat(3, 1fr);
  }      
  
  @media (max-width: 900px) {
.featured-projects-home .projects-grid {
 grid-template-columns: repeat(2, 1fr); /* Keeps 2 columns on most phones/tablets */
 }
}
  @media (max-width: 576px) {
 .featured-projects-home .projects-grid {
 grid-template-columns: 1fr;
 }
}
.featured-projects-home .projects-grid{
    
    margin: 10px;
}

.project-section .featured-projects-home {
    padding-left: 15px;
    padding-right: 15px;
}

.page-banner{
    position: relative;
  width: 100%;
  height: 20vh; /* smaller hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px!important;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  margin-top: 100px; 
 /* Background settings */
  background-image: url('/projects/Hotels/Milimani Hotel.png');
  background-size: cover;         /* Ensures full image coverage */
  background-repeat: no-repeat;   /* Prevents repetition */
  background-position: center;    /* Centers the image */
  background-attachment: scroll;  /* Change to 'fixed' for parallax effect */

  color: #fff;
}
.contact-banner{
    position: relative;
  width: 100%;
  height: 20vh; /* smaller hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px!important;
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  margin-top: 100px; 
 /* Background settings */
  background-image: url('/projects/Hotels/Dusit Princess.jpg');
  background-size: cover;         /* Ensures full image coverage */
  background-repeat: no-repeat;   /* Prevents repetition */
  background-position: center;    /* Centers the image */
  background-attachment: scroll;  /* Change to 'fixed' for parallax effect */

  color: #fff;
}
 /* Intro Section - Content on right, image on left */
.intro {
  display: flex;
  align-items: stretch; /* Ensures both sides (image + text) align top to bottom */
  gap: 60px;
  padding: 0;
}

.intro-image {
  flex: 1;
  margin-top: 58px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure the image fills its area */
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Spreads content vertically */
}

    .subtle {
      color: #6b7280;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      margin: 15px;
    }

    .title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1e293b;
    }

    .lead {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #4b5563;
        margin-top: 0;
  margin-bottom: 0; 
       margin-left: 15px;
  margin-right: 15px;
    }

    /* Mission/Vision/Values - Horizontal layout */
    .about-boxes {
      display: flex;
      gap: 30px;
      padding: 60px 0;
    }

    .about-card {
      flex: 1;
      background-color: #000033;
      padding: 40px 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      margin: 0 20px;
    }

    .about-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .about-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .about-card p {
      color: #fff;
      line-height: 1.7;
    }

    /* Feature Cards with Background Images */
    .feature-cards {
      display: flex;
      gap: 30px;
      padding: 80px 0;
    }

    .feature-card {
      flex: 1;
      height: 400px;
      border-radius: 8px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 10px;
      margin: 10px;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .feature-card.dark-overlay::before {
      background: rgba(0, 0, 0, 0.6);
    }

    .feature-card.blue-overlay::before {
      background: rgba(30, 58, 138, 0.7);
    }

    .feature-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    .feature-content {
      position: relative;
      z-index: 2;
      color: white;
      padding: 0 40px;
      max-width: 80%;
    }

    .feature-content h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .feature-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .btn {
      display: inline-block;
      background-color: white;
      color: #1e3a8a;
      padding: 12px 25px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn:hover {
      background-color: #f1f5f9;
      transform: translateY(-2px);
    }

    /* Team Section */
    .team {
      padding: 80px 0;
    }

    .team .title {
      text-align: center;
      margin-bottom: 50px;
    }

    .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center; /* Center the grid items */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
    }

    .team-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .team-card:hover {
      transform: translateY(-10px);
    }

    .team-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .team-card .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(30, 58, 138, 0.9);
      color: white;
      padding: 20px;
      transform: translateY(100%);
      transition: transform 0.3s;
    }

    .team-card:hover .overlay {
      transform: translateY(0);
    }

    .team-card h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .team-card p {
      font-size: 0.9rem;
      opacity: 0.9;
    }

/* Contact Info Cards - Horizontal Layout */
    .services {
      padding: 1px 0;
    }

    .service-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-bottom: 40px;
    }

    .service-card {
      flex: 1;
      min-width: 250px;
      background-color: #000033;
      color: #fff;
      padding: 40px 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .service-card h1 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #1e3a8a;
    }

    .service-card h4 {
      color: #ffffff;
      line-height: 1.7;
    }

    .service-card a {
      color: #1e3a8a;
      text-decoration: none;
    }

    .service-card a:hover {
      text-decoration: underline;
    }

    .map-container {
      margin-top: 2rem;
      text-align: center;
    }

    .map-container iframe {
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Contact & FAQ Section */
    .contact-faq-section {
      padding: 80px 0;
      background-color: #f8fafc;
    }

    .contact-faq-container {
      display: flex;
      gap: 60px;
    }

    /* Contact Form */
    .contact-form {
      flex: 1;
      background-color: white;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-form h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1e293b;
    }

    .contact-form p {
      color: #6b7280;
      margin-bottom: 30px;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      border: 1px solid #d1d5db;
      border-radius: 4px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #1e3a8a;
      box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    }

    .btn-primary {
      background-color: #1e3a8a;
      color: white;
      border: none;
      padding: 15px 25px;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
    }

    .btn-primary:hover {
      background-color: #0f2a6b;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .faq-section {
      flex: 1;
      margin: 10px;
    }

    .faq-subtitle {
      color: #6b7280;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .faq-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      color: #1e293b;
    }

    .faq-item {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
      width: 100%;
      background-color: white;
      border: none;
      padding: 20px;
      text-align: left;
      font-size: 1.1rem;
      font-weight: 600;
      color: #1e293b;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s;
    }

    .faq-question:hover {
      background-color: #f1f5f9;
    }

    .faq-icon {
      font-size: 1.5rem;
      font-weight: 300;
      transition: transform 0.3s;
    }

    .faq-answer {
      background-color: white;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s;
    }

    .faq-answer p {
      padding: 0 20px 20px;
      color: #4b5563;
      line-height: 1.7;
    }

    /* Active FAQ item */
    .faq-item.active .faq-question {
      background-color: #f1f5f9;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }
    
    
    .stats-section {
      background: #000033;
      color: white;
      padding: 40px 0;
      margin: -60px auto 40px;
      width: 90%;
      max-width: 1100px;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 10;
      margin-top: auto;
    }
    .stats-section-hero{
        margin: -110px auto 40px;
    }
    
    .stats-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 0 20px;
      padding-bottom: 40px;
    }
    
    .stat-card {
      text-align: center;
      padding: 7px 15px;
      border-radius: 8px;
      background: #263c71;
      transition: transform 0.3s ease, background 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }
    
    .stat-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.15);
    }
    
    .stat-icon {
      font-size: 2.2rem;
      margin-bottom: 15px;
      color: #66d9ff;
    }
    
    .stat-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }
    
    .stat-highlight {
      font-size: 1.6rem;
      font-weight: 700;
      margin: 10px 0;
      color: #66d9ff;
    }
    
    .stat-details {
      font-size: 0.9rem;
      line-height: 1.5;
      color: #e0e0e0;
      margin-bottom: 15px;
    }
    
    .stat-tags {
      font-size: 0.8rem;
      color: #b0b0b0;
      font-style: italic;
      line-height: 1.4;
    }
    
    .stat-btn {
      display: inline-block;
      background: #66d9ff;
      color: #001f3f;
      padding: 8px 16px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 15px;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }
    
    .stat-btn:hover {
      background: #000033;
      color: #fff;
      transform: translateY(-2px);
    }
    .client-title{
        color: #000;
    }
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      
      .stats-section {
        width: 95%;
        margin: -40px auto 30px;
      }
    }
    
    @media (max-width: 576px) {
      .stats-container {
        grid-template-columns: 1fr;
      }
      
      .stat-card {
        padding: 7px 15px;
      }
      
      .stat-highlight {
        font-size: 1.4rem;
      }
      
      .stats-section {
        width: 90%;
        margin: -30px auto 20px;
        padding: 30px 0;
      }
    }
        /* Footer */
        footer {
            background: #003;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-column p {
            margin-bottom: 20px;
            font-size: 14px;
            color: #aaa;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: #fff;
            color: #000;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 14px;
            color: #aaa;
        }
/* CONTACT GRID & FORM CONTAINER */
.contact-page-content {
    /* You may need a top margin here if the banner isn't enough */
    padding: 40px 0; 
}
.contact-page-content .container{
    max-width: 1300px !important;
}
.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 50% 50%; /* Adjust widths to your preference */
    gap: 30px;
    max-width: 1400px;
}

/* CONTACT INFO GRID (Left Side) */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr 1fr;
    gap: 1px; /* Minimal gap for the card-like separators */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #f7f7f7; /* Background for the overall grid */
}

.grid-header {
    grid-column: 1 / 3; /* Spans across both columns */
    background-color: #000033; /* Dark blue background */
    color: white;
    text-align: center;
    padding: 20px;
    margin: 0;
    font-size: 1.5rem;
}

.info-item {
    padding: 20px;
    background-color: white;
    text-align: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
/* Remove border for specific items if needed */
.info-item:nth-child(even) { border-right: none; }
.info-item.hours-col, .info-item.location-col { border-bottom: none; }

.info-item i {
    font-size: 2rem;
    color: #3498db; /* Blue color for icons */
    margin-bottom: 10px;
}

/* DETAILED CONTACT FORM (Right Side) */
.detailed-contact-form {
    background-color: #ecf0f1; /* Light gray background */
    padding: 30px;
    border-radius: 5px;
}

.form-header {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.8rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group {
    position: relative;
    flex: 1;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
}

.detailed-contact-form input,
.detailed-contact-form textarea {
    width: 100%;
    padding: 12px 12px 12px 40px; /* Adjust padding for icon */
    border: 1px solid #ccc;
    border-radius: 4px;
}

.detailed-contact-form textarea {
    padding-left: 12px;
}
.input-group.full-width {
    flex: none;
    width: 100%;
}


/* CONTACT FORM INPUT UNIFORMITY */
.detailed-contact-form input[type="text"],
.detailed-contact-form input[type="tel"],
.detailed-contact-form input[type="email"],
.detailed-contact-form textarea {
    /* Ensure all inputs have consistent padding and line height for visual size */
    padding: 12px 12px 12px 40px; /* Base padding with space for the icon */
    line-height: 1.5;
    height: 50px; /* Set a fixed height for all single-line inputs */
    box-sizing: border-box; /* Includes padding and border in the element's total width and height */
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}

.detailed-contact-form textarea {
    height: auto; /* Override fixed height for textarea */
    min-height: 120px; /* Give the message field adequate vertical space */
    padding: 12px; /* Remove left icon padding for textarea */
}

.detailed-contact-form input:focus,
.detailed-contact-form textarea:focus {
    border-color: #3498db; /* Highlight border on focus */
    outline: none;
}

/* SUBMIT BUTTON STYLING AND HOVER EFFECT */
.btn-submit {
    /* Assuming this class inherits some base styling, these override it */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto; /* Auto width based on content */
    min-width: 150px; /* Ensures the button is large */
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background-color: #0067ff; /* A primary blue color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-submit i {
    margin-left: 10px;
}

.btn-submit:hover {
    background-color: #2c3e50; /* Darker blue on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px); /* Slight lift effect */
}
/* ---------------------------------------------------- */

/* 2. FAQ AND MAP LAYOUT (Desktop) */
.faq-map-container {
    display: flex;
    gap: 30px;
    padding: 60px 20px;
}

.faq-section, .map-section {
    flex: 1;
}

.map-section {
    /* Ensures the map takes up vertical space */
    min-height: 400px; 
}
.map-title {
    /* Style this header appropriately */
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-container-inner {
    height: 100%;
    /* Set a specific height if flex is not enough */
    min-height: 350px; 
}

/* ---------------------------------------------------- */

/* 3. MOBILE/TABLET STACKING (Max-width 768px for all stacking) */
@media (max-width: 768px) {
    
    .intro-image{
        display: none;
    }
    /* Stacking the contact grid and form */
    .contact-grid-wrapper {
        grid-template-columns: 1fr; /* Stack into a single column */
    }

    /* Stacking the FAQ and Map sections */
    .faq-map-container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    /* Stacking the form inputs */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .input-group {
        margin-bottom: 15px;
    }
    .input-group:last-child {
        margin-bottom: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio {
    padding: 20px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    margin-top: 15px;
  }
}

/* Ensure all images don't cause overflow */
img {
  max-width: 100%;
  height: 50%;
  display: block;
  width: 100%;
}

/* MARGIN FOR FAQ AND MAP SECTION */
.faq-map-section {
    /* Add substantial margin to the bottom to separate from the footer */
    margin-bottom: 80px; 
}
     @media (max-width: 1200px) {
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .project-image {
                height: 200px;
            }
        }
     @media (max-width: 576px) {

            
            .project-image {
                height: 180px;
            }
        }
        
           @media (max-width: 992px) {
      .intro {
        flex-direction: column;
      }
      
      .intro-image, .intro-content {
        flex: none;
        width: 100%;
      }
      
      .about-boxes {
        flex-direction: column;
      }
      
      .feature-cards {
        flex-direction: column;
      }
                  .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
      
    }

    @media (max-width: 768px) {

      
      .title {
        font-size: 2rem;
        margin: 15px;
      }
      
      .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
    }
  @media (max-width: 992px) {
      .contact-faq-container {
        flex-direction: column;
      }
      
      .service-grid {
        flex-direction: column;
        margin: 24px;
      }
      
      .service-card {
        flex: none;
      }
  }
  
    @media (max-width: 768px) {

      .contact-form {
        padding: 30px 20px;
      }
    }
    
    
    @media (max-width: 576px) {
    /* 1. Prevent the logo container from shrinking below a functional width */
    .logo {
        /* Set a minimum width to prevent the image from being squished */
        min-width: 100px; /* Adjust this value if needed, but 100px is usually safe */
        flex-shrink: 0; /* Important: Prevents the logo from shrinking when space is tight */
    }

    /* 2. Ensure the image scales correctly within its container */
    .logo-img {
        /* Maintain aspect ratio and don't let it become too small */
        width: 100%;
        height: auto;
        /* Reiterate the height to prevent distortion from other styles */
        height: 40px; /* Or whatever your desired minimum height is for the logo */
        min-width: 100px;
        object-fit: contain; /* Ensures the whole image is visible without cropping */
    }
    .nav-container{
        gap: 0;
        
    }
}

/* slider section  */

.slider{
    height: 100vh;
    margin-top: -50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.slider .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item .content{
    position: absolute;
    top: 33%;
    width: 600px;
    height: 350px;
    max-width: 80%;
    left: 26%;
    transform: translateX(-50%);
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 20px;
}

.slider .list .item .content .title,
.slider .list .item .content .type{
    font-size: 56px;
    font-weight: bold;
    line-height: 1.3em;
}
.slider .list .item .content .type{
        font-size: 36px;
    font-weight: bold;
    line-height: 1.3em;
}
    
.slider .list .item .type{
    color: #14ff72cb;
}
.slider .list .item .button{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.slider .list .item .button button{
    border: none;
    background-color: #eee;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s;
    letter-spacing: 2px;
}


.slider .list .item .button button:hover{
    letter-spacing: 3px;
}
.slider .list .item .button button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}





/* Thumbnail Section  */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}


/* nextPrevArrows Section  */
.nextPrevArrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.nextPrevArrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0067ff;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}
.nextPrevArrows button:hover{
    background-color: #fff;
    color: #000;
}

/* Animation Part */
.slider .list .item:nth-child(1){
    z-index: 1;
}


/* animation text in first item */
.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.slider .list .item:nth-child(1) .content .title{
    animation-delay: 0.4s !important;
}
.slider .list .item:nth-child(1) .content .type{
    animation-delay: 0.6s !important;
}
.slider .list .item:nth-child(1) .content .description{
    animation-delay: 0.8s !important;
}
.slider .list .item:nth-child(1) .content .buttons{
    animation-delay: 1s !important;
}




/* Animation for next button click */
.slider.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.slider.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.slider.prev .list .item img{
    z-index: 100;
}


@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}


.slider.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}



/* Animation for prev button click */
.slider.prev .list .item:nth-child(2){
    z-index: 2;
}

.slider.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.slider.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.slider.next .nextPrevArrows button,
.slider.prev .nextPrevArrows button{
    pointer-events: none;
}


.slider.prev .list .item:nth-child(2) .content .title,
.slider.prev .list .item:nth-child(2) .content .type,
.slider.prev .list .item:nth-child(2) .content .description,
.slider.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {

    .slider .list .item .content .title{
        font-size: 50px;
    }
    .slider .list .item .content .title{
        font-size: 20px;
    }
}

@media screen and (max-width: 995px) {
        .slider .list .item .content{
        padding:33px;
        font-size:16px;
        left: 26%;
        width: 375px;
        height: 300px;
    }
        .slider .list .item .content .title{
        font-size: 24px;
        margin: 0;
    }
    .slider .list .item:nth-child(1) .content .type{
         font-size: 20px;
         margin: 0;
    }
        
    }
 


@media screen and (max-width: 721px) {
        .slider .list .item .content{

        left: 28%;

    }
}

@media screen and (max-width: 680px) {
        .slider .list .item .content{
            
        left: 27%;
        width: 277px;

    }
        .slider .list .item .content .title{
        font-size: 24px;
        margin: 0;
    }
    .slider .list .item:nth-child(1) .content .type{
         font-size: 20px;
         margin: 0;
    }
        
    }
    
 @media screen and (max-width: 529px) {
        .slider .list .item .content{
        left: 50%;
        top: 25%;
        width: 277px;

    }
    .thumbnail{
        bottom: 0px;
    }
    .thumbnail .item img{
        height: 80%;
    }
        .slider .list .item .content .title{
        font-size: 24px;
        margin: 0;
    }
    .slider .list .item:nth-child(1) .content .type{
         font-size: 20px;
         margin: 0;
    }
        
    }
 
 


