*{
    margin: 0;
    padding: 0;
}
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }
    h1{
      font-size: 40px;
      color: #000;
      font-weight: 600;
      margin-top: 10px;
      font-family: Oswald;
      text-transform: uppercase;
    }
    h2{
      font-size: 30px;
      color: #000;
      font-weight: 700;
      margin-top: 10px;
            font-family: Oswald;
      text-transform: uppercase;
    }
    h3{
      font-size: 30px;
      color: #000;
      font-weight: 700;
      margin-top: 10px;
      text-align: center;
            font-family: Oswald;
      text-transform: uppercase;
    }
    h4{
      font-size: 25px;
      color: #000;
      font-weight: 700;
      margin-top: 10px;
    }
    .get{
        background-color: #0077b6;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 10px;
    }
    .top-bar {
  background: #0e6399;
  color: #fff;
  padding: 10px 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
   justify-content: center; 
  gap: 40px; 
  flex-wrap: wrap;
}

.top-bar-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.top-bar-contact a:hover {
  color: #fff;
}

.top-bar-contact span {
  font-weight: 600;
  margin-right: 5px;
}

/* Social icons inline */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
}

.social-icons a:hover {
  color: #fff;
}
.bar h1{
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.bar {
  position: relative; /* important for overlay */
  background-image: url('img/banner.webp');
  background-size: cover;
  background-position: center;
  background-color: #000;
  height: 550px; /* example height */
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Black overlay */
.bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.696); /* 0.5 = 50% black */
}
.bar-content {
  position: relative; 
  z-index: 1;  /* overlay ke upar */
  color: #fff; /* white text */
}
.bar p{
  color: #fff;
}
.bar p b{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.bar li{
  list-style: none;
}
.bar i{
  color: goldenrod;
}
.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.custom-form {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.custom-form h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #000;
}

.custom-form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.custom-form input:focus {
  box-shadow: 0 0 6px rgba(243,156,18,0.4);
}

.custom-form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: #0e6399;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.custom-form button:hover {
  background: #0e6399;
}
.fixed-buttons {
position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column; /* stack in column */
  z-index: 9999;
}

.fixed-buttons a {
    width: 100%;
  padding: 12px 60px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* Call Button */
.btn-call {
  background: #fff; 
  border: 2px solid #0e6399;
  color: #0e6399 !important;
}

.btn-call:hover {
  background: #fff;
}

/* Enquiry Button */
.btn-enquiry {
  background: #0e6399; 
  border: 2px solid #fff;
}

.btn-enquiry:hover {
  background: #0e6399
}
    /* Navbar */
    header {
  width: 100%;
  position: relative;
  z-index: 999; /* Keep header above all sections */
}

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 10px 40px;
      position: relative;
    }

    .navbar img {
      height: 50px;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }

    .navbar ul li {
      position: relative;
      margin: 0 15px;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #000;
      font-weight: bold;
      padding: 8px 0;
    }

    /* Dropdown */
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: -400px;
      width: 750px;
      background: #0077b6;
      padding: 10px;
      color: #fff;
    }

    .navbar ul li:hover .dropdown {
      display: flex;
      gap: 0px;
    }

    .dropdown .column {
      flex: 1;
    }

    .dropdown .column h3 {
      margin-bottom: 10px;
      border-bottom: 2px solid yellow;
      display: inline-block;
            font-size: 15px;
            font-weight: 700;
    }

    .dropdown .column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .dropdown .column ul li {
      margin: 8px 0;
      font-size: 15px !important;
    }

    .dropdown .column ul li a {
      text-decoration: none;
      color: #fff;
    }

    /* Image Section */
    .dropdown .image-box {
      flex: 1;
    }

    .dropdown .image-box img {
      width: 200px;
      height: 200px;
      border-radius: 10px;
    }
    .column ul{
      display: block;
    }
/* <header section end */

.clay{
    margin-top: 40px;
    margin-bottom: 40px;
}
.new{
    text-align: center;
}
    /* footer start */
        .footer {
      background: #222 !important;
      color: #fff;
      padding: 40px 60px 20px 60px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .footer-column h3 {
      margin-bottom: 15px;
      font-size: 20px;
      color: #fff;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin: 8px 0;
    }

    .footer-column ul li a {
      color: #fff;
      text-decoration: none;
    }

    .footer-column ul li a:hover {
      text-decoration: underline;
    }

    .show-more {
      margin-top: 15px;
    }

    .show-more button {
      background: #fff;
      color: #000;
      padding: 10px 20px;
      border-radius: 6px;
      border: 1px solid #000;
      font-weight: bold;
      cursor: pointer;
    }

    .footer-bottom {
      border-top: 1px solid #000;
      margin-top: 30px;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      text-align: center !important;
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      display: inline-block;
      /*background: #000;*/
      color: #fff;
      padding: 8px 12px;
      border-radius: 4px;
      font-size: 16px;
      text-decoration: none;
    }

    .copyright {
      margin-top: 10px;
      color: #fff;
      text-align: center !important;
    }
.show-more {
      margin-top: 15px;
    }

    .show-more button {
      background: #fff;
      color: #000;
      padding: 10px 20px;
      border-radius: 6px;
      border: 1px solid #000;
      font-weight: bold;
      cursor: pointer;
    }

    /* hidden links */
    .extra-links {
      display: none;
      margin-top: 10px;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media screen and (max-width: 480px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
    }
    /* footer end */
             /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
     bottom: 60px; 
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 

    @media screen and (max-width: 468px) {
      .navbar ul{
        display: none;
      }
      h1{
          font-size: 25px;
      }
      h2{
          font-size: 20px;
      }
      h3{
          font-size: 20px;
      }
      h4{
          font-size: 20px;
      }
      p{
          text-align: justify;
      }
      .footer {
        padding: 15px;
      }
      .top-bar-contact {
          gap: 10px;
      }
  .bar{
       height: auto;
  }
  .social-icons{
      display: none;
  }
    }

/* Desktop style */
@media (min-width: 769px) {
  .fixed-buttons {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    flex-direction: row; /* side by side on desktop */
    gap: 15px;
  }

  .fixed-buttons a {
    width: auto;
    border-radius: 30px;
    padding: 12px 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 16px;
  }
}
/* ---------- Steps ---------- */
.steps{
  padding:clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom:1px solid #eef2f7;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:var(--gap);
}
@media (max-width:900px){
  .steps-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:560px){
  .steps-grid{ grid-template-columns:1fr; }
}

.step{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}
.step2{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.badge{
  flex:0 0 auto;
  width:64px; height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-weight:800 !important;
  font-size:1.35rem !important;
  color:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  position:relative; isolation:isolate;
  background-color: rgb(245, 198, 79) !important;
}
/* subtle top divider like screenshot */
.badge::after{
  content:"";
  position:absolute; inset:-12px;
  border-top:2px solid #e9eef4;
  z-index:-1;
  transform:translateY(-34px);
}
.badge[data-n="1"], .badge[data-n="3"]{ background:var(--brand); }
.badge[data-n="2"], .badge[data-n="4"]{
  background:var(--brand-2); color:#111827;
}

.step h3{
  margin:.15rem 0 .25rem;
  font-size:1.05rem;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.step p{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
}

/* ---------- Stats strip ---------- */
.stats{
  color:#fff;
  padding:clamp(2rem, 4vw, 3rem) 0;
  background:url("img/bg.webp");
  background-position: center;
  background-size: cover;
    overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.stat { text-align: center; }
.stat-icon { font-size: 2rem; margin-bottom: .5rem; display:block; }
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  .stat-number { transition: none; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}


.stat{
  display:grid;
  grid-template-rows:auto auto auto;
  align-items:start;
  gap:.25rem;
}
.stat-icon{
  font-size:2rem;
  margin-bottom:.25rem;
  text-align: center;
}
.stat-number{
  font-weight:800;
  font-size:clamp(2rem, 1.1rem + 2.5vw, 3.25rem);
  line-height:1.1;
  text-align: center;
}
.stat-label{
  font-size:1rem;
  opacity:.95;
  text-align: center;
}

/* 🔥 Mobile slider effect */
@media (max-width: 560px) {
  .stats-grid {
    display: flex;                
    overflow-x: auto;             
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .stat {
    flex: 0 0 80%;               
    scroll-snap-align: center;    
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-icon {
    font-size: 1.8rem;
  }
}

.clue{
    margin-top: 10px;
    margin-bottom: 10px;
}
.view{
    padding: 10px 20px;
    background-color: #ffc107;
    text-transform: uppercase;
    border: none;
    color: #fff;
    border-radius: 10px;
}

/* ---------- OUR PROJECT SECTION ---------- */
.our-project-area {
  padding: 3rem 0;
  background: #f9fafb; /* light grey background */
}

.project_head {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project_desc {
  font-size: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #475569;
  line-height: 1.6;
}

/* ---------- PROJECT GRID ---------- */
.project-box ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-box li {
  list-style: none;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

/* ---------- IMAGE CONTAINER ---------- */
.img-container {
  position: relative;
  overflow: hidden;
}

.image-box {
  margin: 0;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  border-radius: 8px;
}

/* ---------- HOVER EFFECT ---------- */
.img-container:hover .image {
  transform: scale(1.1);
}

/* ---------- OVERLAY ---------- */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 62, 91, 0.75); /* dark blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.img-container:hover .overlay {
  opacity: 1;
}

/* ---------- OVERLAY TEXT ---------- */
.overlay .text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 768px) {
  .project_head {
    font-size: 1.6rem;
  }
  .project_desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .project-box ul {
    grid-template-columns: 1fr;
  }
}

.say{
    background-color: #2fa5e4;
    margin-top: 40px;
    margin-bottom: 40px;
}
.say li{
    color: #fff;
    font-size: 20px;
}
/* ---------- HAPPY CLIENT AREA ---------- */
.happy-client-area {
  padding: 3rem 0;
  background-image: url('img/happy-client-bg.jpg');
  background-size: cover;
  background-position: center;  
}

.happy-client-area .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Common box style */
.boxed-border, 
.boxed-inverse {
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* White box style */
.boxed-border {
  background: #0e3e5b; /* Dark blue background */
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Highlighted inverse box */
.boxed-inverse {
  background: #fff;
  color: #0f172a;
  border: 2px solid #0e3e5b;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Hover effects */
.boxed-border:hover,
.boxed-inverse:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Icon styling */
.s-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: #f2c21a; /* Accent yellow */
}

/* Text styling */
.s-txt {
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.big-txt {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.text-color {
  font-size: 2rem;
  font-weight: 700;
  color: #0e3e5b;
  margin-bottom: 0.25rem;
}

.no-margins {
  margin: 0;
  color: #475569;
  font-size: 1rem;
}

/* Button styling */
.btn-new1 {
  background: #f2c21a;
  color: #0f172a;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  border: none;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-new1:hover {
  background: #e5b718;
  color: #000;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .happy-client-area .row {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .boxed-border, .boxed-inverse {
    padding: 1.5rem 1rem;
  }
  .s-icon {
    font-size: 2rem;
  }
  .text-color {
    font-size: 1.6rem;
  }
}
/* ---------- CONTACT FORM SECTION ---------- */
.bottom-form-area {
  padding: 4rem 0;
  background: #f9fafb; /* Light gray background */
}

.bottom-form-area h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.bottom-form-area h3 span {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  color: #475569;
  margin-top: 0.5rem;
}

/* ---------- FORM CONTAINER ---------- */
.home-form2 {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ---------- FORM INPUTS ---------- */
.home-form2 input[type="text"],
.home-form2 input[type="email"],
.home-form2 textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background: #fdfdfd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-form2 textarea {
  min-height: 120px;
  resize: vertical;
}

.home-form2 input:focus,
.home-form2 textarea:focus {
  border-color: #0e3e5b;
  box-shadow: 0 0 0 3px rgba(14, 62, 91, 0.1);
  outline: none;
}

/* ---------- CAPTCHA TEXT ---------- */
.home_captcha_text {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: 600;
  color: #0f172a;
}

.captcha_txt_box {
  width: 80px !important;
  display: inline-block !important;
  margin-bottom: 1rem;
}

/* ---------- SUBMIT BUTTON ---------- */
.enq_frm_submit {
  display: inline-block;
  background: #0e3e5b;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.enq_frm_submit:hover {
  background: #0c324a;
  transform: translateY(-2px);
}

/* ---------- IMAGE STYLING ---------- */
.bottom-form-area img.image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .bottom-form-area h3 {
    font-size: 1.6rem;
  }
  .home-form2 {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .bottom-form-area {
    padding: 3rem 1rem;
  }
  .captcha_txt_box {
    width: 60px !important;
  }
}
