* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      color: #26282b;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* reusable container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* top bar */
    .top-bar {
      background-color: #0a2b3c;
      color: #fff;
      padding: 8px 0;
      font-size: 0.9rem;
      border-bottom: 2px solid #f5a623;
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .top-bar .contact-info span {
      margin-right: 20px;
    }
    .top-bar .contact-info i {
      margin-right: 6px;
      color: #f5a623;
    }
    .top-bar .social-links a {
      color: #fff;
      margin-left: 15px;
      transition: color 0.3s;
    }
    .top-bar .social-links a:hover {
      color: #f5a623;
    }

    /* header */
    .header {
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0px 20px;
    }
    .logo h1 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #0a2b3c;
    }
    .logo span {
      color: #f5a623;
      font-size: 1rem;
      font-weight: 500;
      display: block;
      line-height: 1.2;
    }
    .nav-menu {
      display: flex;
      align-items: center;
    }
    .nav-list {
      display: flex;
      list-style: none;
      gap: 30px;
      align-items: center;
    }
    .nav-list a {
      text-decoration: none;
      color: #020d18;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-list a:hover {
      color: #f5a623;
    }
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: #0a2b3c;
    }
    /* mobile nav */
    @media (max-width: 768px) {
      .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 70%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
        visibility: hidden;
        margin: 5px auto;
        justify-content: center;
        border: 2px solid #eeb600;
      }
      .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        visibility: visible;
      }
      .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      .hamburger {
        display: block;
      }
    }

    /* hero */
    .hero {
      position: relative;
      width: 100%;
      overflow: hidden;
      min-height: 520px;
    }
    .hero img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-height: 570px;
      object-position: center;
    }
 .hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    110deg,
    rgb(3, 61, 95) 0%,
    rgba(4, 43, 94, 0.973) 54%,
    rgba(0, 0, 0, 0.1) 80%,
    rgba(0, 0, 0, 0.7) 100%
  ); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 23px;
}
  .hero_sec{
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    border-radius: 40px 0 40px 0;
    padding: 26px;
    /* border: 2px solid #e4da81; */
    box-shadow: 8px 7px 0px 0px #ffffff;
  }
  .hero_text{
    text-align: center;
    color: #fff;
  }
  

    .hero-overlay h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 4px 3px 5px rgba(0, 0, 0, 0.877);
      /* text-shadow: 1px 0 #0b0c0c, 0 1px #0b0c0c, -1px 0 #0b0c0c, 0 -1px #0b0c0c; */
    }
    .hero-overlay p {
      font-size: 1.1rem;
      max-width: 700px;
      margin-bottom: 30px;
      text-shadow: 0 0 8px #292727;
    }
    .btn {
      display: inline-block;
      background-color: #f5a623;
      color: #0d0d0e;
      padding: 12px 32px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s;
      border: none;
      cursor: pointer;
    }
    .btn:hover {
      background-color: #e09512;
    }

    /* sections general */
    section {
      padding: 60px 0;
    }
    .section-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #0a2b3c;
    }
    .section-subtitle {
      text-align: center;
      color: #5f6c7a;
      max-width: 700px;
      margin: 0 auto 50px;
    }

    /* about */
    .about-content {
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
    }
    .about_form {
  flex: 1; 
  background-color: #f0f0f0;
  padding: 20px;
}


    .about-text {
      flex: 3;
    }
    .about-text h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #0a2b3c;
    }
    .about-text p {
      margin-bottom: 20px;
      color: #1b1d1f;
      text-align: justify;
      hyphens: auto;
    }
    .about-image {
      flex: 1 1 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* services grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
     .service-card {
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 0px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: 8px 8px 0px #f5a623;
  transition: all 0.2s ease;
}
.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px #f5a623;
}
.service-card i {
  font-size: 3rem;
  color: #000000;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #000;
}
.service-card p {
  color: #222;
  font-weight: 500;
  line-height: 1.5;
}
.nav-list .nav_btn:hover{color: #000 !important;}
    @media (max-width: 992px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 576px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
      .hero img {
      width: 100%;
      object-fit: cover;
      height: 86vh;
      object-position: right;
    }
    .hero-overlay h2 {
      font-size: 2.4rem;
      line-height: 44px;
      margin-bottom: 30px;
    }
    .about-content{flex-direction:column;}
    }

    /* why choose us */
    /* Why choose us - two columns */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.why-item {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border: 1px solid #f3be6f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.why-item i {
  font-size: 2.5rem;
  color: #f5a623;
  margin-bottom: 20px;
}

.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #0a2b3c;
}

.why-item p {
  color: #191a1b;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: justify;
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
    /* counter */
    .counter-section {
      background: #0a2b3c;
      color: #fff;
    }
    .counter-grid {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      text-align: center;
    }
    .counter-item {
      flex: 1 1 180px;
    }
    .counter-item i {
      font-size: 2.8rem;
      color: #f5a623;
      margin-bottom: 15px;
    }
    .counter-item .number {
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .counter-item p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }
    .testimonial-card {
      background: #f8fafc;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.03);
      border: 1px solid #c3ccd5;
    }
    .testimonial-card .stars {
      color: #f5a623;
      margin-bottom: 15px;
    }
    .testimonial-card p {
      font-style: italic;
      margin-bottom: 20px;
      color: #2c3e50;
    }
    .testimonial-card h4 {
      font-weight: 600;
    }
    .testimonial-card span {
      color: #f5a623;
      font-size: 0.9rem;
    }
    @media (max-width: 992px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 576px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    img{max-width: 100%;}
    /* faqs */
    .faq_grid{
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px;
      align-items: center;
    }
    .faq-list {
      /* max-width: 800px;
      margin: 0 auto; */
    }
    .faq_img{padding: 5px;box-shadow: 0 0 5px rgba(0,0,0,0.3);}
    .faq-item {
      background: #fff;
      border: 1px solid #dee7ef;
      border-radius: 12px;
      margin-bottom: 15px;
      overflow: hidden;
    }
    .faq-question {
      padding: 18px 25px;
      background: #f4f8fc;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }
    .faq-question:hover {
      background: #e6edf4;
    }
    .faq-question i {
      transition: transform 0.3s;
    }
    .faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #fff;
      color: #3a4a58;
    }
    .faq-item.active .faq-answer {
      padding: 0 25px 20px 25px;
      max-height: 300px;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    /* contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      width: 100%;
    }
    .contact-info-box {
      background: #f4f8fc;
      padding: 30px;
      border-radius: 16px;
      border: 1px solid #c3ccd5;
    }
    
    .contact-info-box .info-item {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
    }
    
.contact-info-box .info-item:last-child {margin-bottom: 0;}
    .info-item i {
      font-size: 2rem;
      color: #f5a623;
      width: 50px;
      text-align: center;
    }
    .info-item h4 {
      margin-bottom: 5px;
    }
     .contact-info span a {color: #fff;text-decoration: none;}
    .contact-form {
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid #eef2f6;
    }
    .form-group {
      margin-bottom: 10px;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%;
      padding: 8px 16px;
      border: 1px solid #ccd9e4;
      border-radius: 4px;
      font-size: 1rem;
      outline: none;
      transition: border 0.3s;
    }
    .form-group textarea {
      border-radius: 4px;
      resize: vertical;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: #f5a623;
    }
    .contact-form .btn {
      width: 100%;
      border-radius: 40px;
    }
    .text-left{text-align: left !important;}
    .d_flex{display: flex;gap: 5px;}

    /* CTA SECTION */
.cta-section {
  background-color: #0a2b3c;
  padding: 60px 0;
  color: #fff;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.cta-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
}
.cta-phone i {
  color: #f5a623;
  font-size: 2.2rem;
}
.cta-btn {
  background-color: #f5a623;
  color: #1e2b37;
  font-size: 1.2rem;
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.cta-btn:hover {
  background-color: #e09512;
}
.cta-section a{color: #fff;text-decoration: none;}

/* Mobile styles */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-phone {
    justify-content: center;
  }
  .mobile-none{display: none;}
  .top-bar .contact-info span{display: block;}
  .contact-info-box {padding: 22px;}
    .contact-info-box .info-item {
      gap: 15px;
    }
    .info-item i {
    font-size: 1.8rem;
    width: 40px;
    }
    .contact-info-box .info-item div {
  min-width: 0;          
  word-break: break-word;
}
.logo_img img{height: 60px;}
section {padding: 45px 0;}
}

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .hero_sec {padding: 40px 26px;}
      
.faq_grid {
    grid-template-columns: 1fr;
}
    }

    /* footer / copyright */
    .copyright {
      background: #051f2b;
      color: #fcfeff;
      padding: 25px 0;
      text-align: center;
      border-top: 3px solid #f5a623;
    }
    .copyright a{text-decoration: none;color: #f5a623;}

    /* utility */
    .text-center {
      text-align: center;
    }
    iframe {
      width: 100%;
      height: 250px;
      border: 0;
      border-radius: 12px;
      margin-top: 0px;
    }
    .py-0{padding: 0 ;}