* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 135px;
  scroll-behavior: smooth;
}


.top-bar {
  background-color: #0b2c4d;
  color: #fff;
  font-size: 14px;
  padding: 12px 0;
}

.top-bar a {
  color: #fff;
    margin: 0px 10px;
  text-decoration: none;
  font-size: 24px;
}

.fab {
    font-size: 21px;
    padding: 3px;
    margin: 7px 11px;
}

.header-icon {
    padding-right: 81px;
    background: #0d85d1 none repeat scroll 0 0;
    height: 31%;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40%;
    text-align: right;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}
.header-icon i{
      margin-top: 10px;
}
.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-main {
  padding: 12px 0;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 75px;
  width: auto;
}

.navbar {
  background: transparent !important;
  padding: 0;
}

.navbar-nav {
  gap: 25px;
}

.nav-link {
  color: #0b2c4d !important;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 17px;
}

.nav-link:hover {
  color: #ff7a00 !important;
}

.navbar-toggler {
  border: none;
}
.d-flex{
    max-width: 1230px !important;
}
.dropdown-menu{
  height: 15vh;
}
.dropdown-item{
      font-size: 20px;
    margin-bottom: 2px;
}

/* hero  */

.hero {
    height: 100vh;
    background: url('image/bg_image.avif') center/cover no-repeat;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero h1{
        font-size: 58px;
    margin-top: 30px;
}


.Service-section {
  text-align: center;
  padding: 35px 20px;
      padding-bottom: 50px;
  background: #f5f7fa;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.Service-section h2, 
.top {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.pyramid {
    width: 95%;
    margin: 0 5%;
}
.branches {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
   align-items: flex-start;
}
.govt-item{
  display: flex;
    border-bottom: 1px solid black;  
}
.govt-item img{
      width: 28% !important;
    object-fit: contain !important;
    height: 10vh !important;
}
.govt-item p{
      margin: 16px 24px;
}
.branch {
  flex: 1 1 0%;
  max-width: 435px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  position: relative;
}

.branch img {
  width: 100%;
    height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.branch h3 {
    font-size: 25px;
    font-weight: 600;
    margin: 12px 0 15px;
    color: #007bff;
}

.branch .desc {
  display: none;
  font-size: 15px;
  color: #555;
  padding: 0 15px 15px;
  line-height: 1.6;
  text-align: justify;
  animation: fadeIn 0.5s ease;
}

/* Active state */
.branch.active {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.branch.active img {
  transform: scale(1.05);
}

.branch.active .desc {
  display: block;
}

/* Hover effect */
.branch:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}




/* about */
 
.About {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa, #e4ebf1);
    padding: 60px 0%;
    /* gap: 40px; */
    flex-wrap: wrap;
    overflow: hidden;
}
.about-text {
    flex: 1 1 500px;
    animation: fadeInLeft 1s ease-in-out;
}

.about-text h2 {
    text-align: left;
    font-size: 42px;
    font-weight: 700;
    font-weight: 700;
    margin: 0px 95px;
    margin-bottom: 32px;
    position: relative;
    color: #0b2c4d;
}
.about-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}
.about-text p {
        margin: 0px 70px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #333;
        font-size: 17px;
    text-align: justify;
}
.about-image {
    flex: 1 1 500px;
    text-align: center;
    animation: fadeInRight 1s ease-in-out;
}
.about-image img {
    width: 94%;
    height: 88vh;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}


.process-section {
    padding: 25px 20px;
    max-width: 1200px;
    margin: auto;
}
.process-text {
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 20px;
}
.process-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}
.process-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  gap: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}
.process-card.show {
  opacity: 1;
  transform: translateX(0);
}
.process-card:hover {
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transform:translateY(-5px);
}
.process-image {
  position: relative;
  flex-shrink: 0;
}
.process-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}
.process-content h2 {
  font-size: 26px;
  color: #f97316;
  margin-bottom: 8px;
}
.process-content p {
  font-size: 18px;
  line-height: 1.6;
}

.about-barton {
    padding: 45px 60px;
    background: #f8f9fa;
}
.about-barton .containner {
  display: flex;
  flex-wrap: wrap;
    gap: 60px;
    max-width: 1300px;
  margin: auto;
}
.about-left {
  flex: 1 1 50%;
}
.about-left .tagline {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
}
.about-left h2 {
  font-size: 32px;
  line-height: 1.3;
  margin: 15px 0;
}
.about-left strong {
  color: #ff6600;
  font-size: 30px;
}

.highlights {
  margin: 20px 0 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.highlights .dot {
  width: 8px;
  height: 8px;
  background: #ff6600;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.about-left p {
  margin-bottom: 15px;
  color: #555;
  font-size: 17px;
  text-align: justify;
}

.btn-orange {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background: #e05500;
}


.about-right {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-box i {
  font-size: 35px;
  color: #ff6600;
  margin-bottom: 10px;
}
.service-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-box p {
  font-size: 15px;
  margin-top: 18px;
  color: #666;
}
.service-box:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}
.services-tabs {
  text-align: center;
  padding: 0px 20px;
}
.services-tabs h2 {
  font-size: 33px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 105px;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  color: #555;
  transition: color 0.3s ease;
}
.tab i {
  font-size: 70px;
  margin-bottom: 8px;
}
.tab.active {
  color: #f97316;
}
.tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #f97316;
  border-radius: 2px;
}
.tab-description {
     max-width: 953px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 18px;
    color: #555;
}
.service-text{
  display: flex;
      padding: 3% 11%;
      gap: 4%;
}
.service_para{
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   padding: 32px;
   text-align: center;

}
.service_para h2{
    font-size: 25px;
    margin-bottom: 18px;
}
.service-text :hover {
  transform: translateY(-5px);
}

.construction-process {
    padding: 60px 55px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
    height: 85vh;
}
.containerrr {
     max-width: 1277px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 8%;
  align-items: start;
}

.text-content .section-subtitle {
  color: #007bff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.text-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.text-content .highlight {
  font-weight: bold;
  margin: 20px 0;
  display: flex;
  align-items: center;
  font-size: 19px;
}
.highlight .dot {
  width: 8px;
  height: 8px;
  background: #007bff;
  border-radius: 50%;
  margin-right: 8px;
}
.text-content p {
  margin-bottom: 15px;
  color: #555;
      font-size: 17px;
}


.accordion-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.3s ease;
}
.accordion-header {
    background: #fff;
    border: none;
    padding: 19px 20px;
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header.active {
  background: #007bff;
  color: white;
}
.accordion-body {
  padding: 15px 20px;
  display: none;
  border-top: 1px solid #ddd;
  color: #555;
}
.accordion-body.show {
  display: block;
}

.construction-process {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.construction-process.show {
  opacity: 1;
  transform: translateY(0);
}
.stats-section {
  padding: 60px 20px;
  position: relative;
}
.stats-overlay {
     background: url('image/counters-bg.jpg') center/cover no-repeat;
    border-radius: 10px;
    padding: 30px;
    margin: 0 10%;
    margin-top: -11%;
    width: 84%;
}
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1100px;
  margin: auto;
  color: white;
  text-align: center;
}
.stat-item {
  flex: 1 1 200px;
}
.stat-item i {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 10px;
}
.stat-item h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 16px;
  opacity: 0.9;
}

/* contact */

.contact-container {
      max-width: 1200px;
    margin: 50px 77px;
  padding: 58px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}
.contact-header h1 {
      font-size: 35px;
    text-align: center;
    color: #1a2a44;
    margin-bottom: 10px;

}
.contact-intro p {
  text-align: center;
  color: #555;
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form h2 {
  font-size: 22px;
  color: #1a2a44;
  margin-bottom: 20px;
  border-left: 5px solid #007bff;
  padding-left: 10px;
}

.contact-form-group {
  margin-bottom: 30px;
  display:flex;
  gap: 4%;
}


.contact-form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-submit button {
  width: 100%;
  padding: 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 23px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.iti {
    position: relative;
    display: inline-block;
    width: 100% !important;
}

.contact-submit button:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    padding: 20px;
  }
  .contact-header h1 {
    font-size: 22px;
  }
  .contact-form h2 {
    font-size: 18px;
  }
}


.section_bg {
    position: relative;
    height: 80vh;
    background: url('image/sec_bg.avif') no-repeat center center / cover;
    display: flex;
    background-attachment: fixed; 
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 2px;
}
.section_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
}
.section_content {
  position: relative;
  z-index: 2;
  max-width: 1045px;
  padding: 20px;
}
.section_content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.section_content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* footer */

.footer-img img{
  width: 100%;
}

.main-footer {
  background: url('./image/footer-background.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  text-align: center;
      height: 58vh;
}

.footer-container {
  border-bottom: 1px solid grey;
  padding-bottom: 20px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links h2{
      margin-top: 20px;
    margin-bottom: 25px !important;
    font-size: 36px;
    text-decoration: underline;
}
.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0px 40px;
    font-size: 28px;
    transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6600;
}

.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;   
  gap: 20px;         
  font-size: 16px;
  line-height: 1.6;
}

.footer-contact span {
    display: inline-block;
    font-size: 19px;
    margin-top: 23px;
}

.background {
    height: 32vh;
}
.about_nav a:after {
    bottom: 43px;
}
.passionate {
  flex-direction: column;
      margin-top: 0px;

}
.list-new{
  padding-left: 0rem;
}
.list-new li {
    margin: 0px 34px;
    text-align: justify;
    line-height: 1.7;
    font-size: 17px;
}
.footer-bottom p{
        text-align: center;
    margin-top: 35px;
    font-size: 20px;
    color: white;
}

.footer-col h3{
    margin-bottom: 21px;
}

.industry-section {
  position: relative;
  overflow: hidden;
}

.industry-bg {
  position: relative;
  width: 100%;
  height: 300px; 
}

.industry-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.industry-content {
  position: relative;
  background: #fff;
  max-width: 650px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     margin-left: 10%;
    margin-top: -34%;
    margin-bottom: 5%;

}
.industryy-bg {
    position: relative;
    width: 100%;
    height: 300px;
}
.industryy-bg img {
    width: 100%;
    height: 100%;
}
.industry-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.industry-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 15px;
}

.features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-box .icon {
  background: #ff6600;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
}

.content_bg {
    position: relative;
    height: 80vh;
    background: url('image/processs.webp') no-repeat center center / cover;
    display: flex;
    background-attachment: fixed; 
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 2px;
}
.content_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
}

.content{
  position: relative;
  z-index: 2;
  max-width: 1045px;
  padding: 20px;
      background: #fff;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 9px;
    line-height: 1.6;
    color: #555;
}
.content h6{
  color: #888;
    margin-top: 25px;
}


.offer-section {
    padding: 60px 48px;
    background: #f7f8fa;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.offer-container {
  max-width: 1370px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.offer-left {
  flex: 1;
}

.offer-right {
  flex: 1;
}

.offer-right img {
    width: 100%;
    height: 136vh;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.offer-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.offer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 4px;
  background: #ff7a00;
  border-radius: 2px;
}

.offer-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
      margin-top: 20px;
  margin-bottom: 14px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.offer-card {
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border-color: #ffd9bf;
}

.offer-icon {
  width: 100px;
  height: 42px;
  border-radius: 50%;
  background: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.offer-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.offer-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.offer-callout {
  margin-top: 24px;
  background: #fff;
  border: 1px dashed #ffb07a;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.offer-callout i {
  color: #ff7a00;
  font-size: 32px;
}

.offer-callout h4 {
  margin: 0 0 4px;
}

.offer-callout p {
  margin: 0;
  color: #555;
  font-size: 15px;
}

.why-work-with-us {
    padding: 30px 0;
    background: #f9f9f9;
}

.why-work-with-us .cccontainer {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin: 0px 50px;
}
.why-text {
  flex: 1 1 500px;
}

.section-title {
  position: relative; 
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}
.why-point {
  margin-bottom: 25px;
}

.why-point h4 {
  font-size: 25px;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-point p {
  font-size: 17px;
      margin: 0px 40px;
  line-height: 1.6;
}

.why-image {
  flex: 1 1 450px;
}

.why-image img {
    width: 100%;
    height: 100vh;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 84px;
  height: 4px;
  background: #ff7a00;
  border-radius: 2px;
}

.infrastructure-section {
  padding: 15px 0;
  background: #f9f9f9;
  text-align: center;
}
.infrastructure-section .sectioonn-title {
  font-size: 32px;
  font-weight: bold;
  position: relative; 
  margin-bottom: 25px;
}
.infrastructure-section .section-introo {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}
.sectioonn-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 45%;
    width: 84px;
    height: 4px;
    background: #ff7a00;
    border-radius: 2px;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.infra-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.infra-box i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}
.infra-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.infra-box p {
  color: #666;
}
.infra-box:hover{
  transform: translateY(-4px);
}

/* Completed Project Section */
.project-section {
  padding: 35px 70px;
  background: #f8f9fa;
  text-align: center;
}

.project-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.project-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    /* padding: 20px; */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 78vh;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-name {
    font-size: 23px;
    color: #0056b3;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding: 4px;
}

.project-desc strong {
  color: #000;
}
.project-timeline {
    font-size: 15px;
    line-height: 1.7;
    margin: 0px 12px;
    text-align: left;
}
.project-timeline strong {
  margin: 7px;
}


/* Ongoing Projects Section */
.ongoing_projects {
  padding: 60px 20px;
  background: #f9f9f9;
}

.ongoing_title {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.ongoing_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  padding: 0px 56px;
}

.ongoing_card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.ongoing_card:hover {
  transform: translateY(-8px);
}

.ongoing_img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ongoing_content {
  padding: 20px;
}

.ongoing_card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #004080;
}

.ongoing_card-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.ongoing_details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ongoing_details li {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}



.faq-section {
    padding: 40px 50px;
    background: #f9f9f9;
}

.faq-container {
  max-width: 1300px;
  margin: auto;
}

.faq-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
  position: relative;
}

.faq-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #ff7a00;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 15px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* vendour */

.vendor-section {
  padding: 50px 20px;
  display: flex;
     margin: 0% 20%;
    margin-top: 9%;
}

.vendor-container {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.vendor-container h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #007BFF;
}
input,textarea:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.vendor-container p {
  text-align: center;
  margin-bottom: 25px;
  color: #555;
}

#vendorForm label {
  display: block;
      margin-top: 10px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
      font-size: 17px;

}

#vendorForm input,
#vendorForm textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

#vendorForm button {
  width: 100%;
  padding: 12px;
      margin-top: 30px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

#vendorForm button:hover {
  background: #0056b3;
}
#category, #subcategory{
  width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Career */

.career-container {
      max-width: 900px;
      margin: 0 auto;
      margin-top: 10%;
      padding: 40px 20px;
    }

    .career-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .career-header h1 {
      font-size: 32px;
      color: #2c3e50;
    }

    .career-intro {
      text-align: center;
      margin-bottom: 40px;
    }

    .career-intro p {
      font-size: 16px;
      color: #555;
    }

    .career-form {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

   .career-form h2 {
    margin-bottom: 20px;
    color: #007BFF;
    text-align: center;
    font-size: 33px;
}

    .career-form-group {
      margin-bottom: 20px;
    }

    .career-form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      font-size: 18px;
    }

    .career-form-group input, 
    .career-form-group select, 
    .career-form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 16px;
    }

    .career-form-group input[type="file"] {
      padding: 5px;
    }

    .career-submit {
      text-align: center;
    }

    .career-submit button {
      background: #007BFF;
      color: #fff;
      border: none;
      padding: 12px 30px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 20px;
      transition: background 0.3s ease;
    }

    .career-submit button:hover {
      background: #1a242f;
    }
    
.careerpage-growth {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.careerpage-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.careerpage-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.careerpage-timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  width: 90%;
  max-width: 900px;
}

.careerpage-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #0077b6;
  transform: translateX(-50%);
}

.careerpage-timeline-item {
  position: relative;
     width: 49%;
    padding: 20px 0px;
  box-sizing: border-box;
}

.careerpage-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.careerpage-timeline-item:nth-child(even) {
  left: 51%;
  text-align: left;
}



.careerpage-timeline-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: inline-block;
  max-width: 440px;
  transition: all 0.3s ease;
}

.careerpage-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.careerpage-timeline-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 8px;
}

.careerpage-timeline-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.5;
}

    

@media (max-width: 992px) {
    .About {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    .about-text h2 {
        text-align: center;
    }
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
     .offer-container {
    flex-direction: column;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 820px) {
  .header-icon {
    height: 31%;
    width: 45%;
  }
  .hero {
    height: 80vh;
  }
  .header-wrapper{
    height:13vh;
  }
  .header-main {
    background-color: white;
  }
  .service-part {
   flex-direction: column;
    margin: 24px 0px;
    gap: 45px;

}
.about-text p {
    margin: 0px 18px;
    font-size: 22px;
}
.services h2 {
    font-size: 35px;
}
.services p {
    font-size: 22px;
}
.section_bg {
    height: 50vh;
}
.section_content p {
    font-size: 25px;
}
.about-barton {
    padding: 45px 40px;
}
.about-left h2 {
    font-size: 40px;
}
.about-left p {
    font-size: 24px;
}
.about-left strong {
    font-size: 34px;
}
.highlights {
    margin: 20px 0 20px;
    font-size: 27px;
}
.service-box p {
    font-size: 25px;
}
.service-box h4 {
    font-size: 30px;
}
.service-box i {
    font-size: 55px;
}.process-content h2 {
    font-size: 35px;
}
.process-content p {
    font-size: 23px;
}
.offer-title {
    font-size: 38px;
}
.offer-sub {
    font-size: 25px;
}
.offer-icon {
    width: 57px;
    height: 50px;
    font-size: 24px;
}
.offer-card{
      gap: 40px;

}
.offer-card h3 {
    font-size: 30px;
}
.offer-card p {
    font-size: 24px;
}
.offer-callout {
      gap: 30px
}
.offer-callout i {
    font-size: 45px;
}
.offer-callout h4 {
  font-size: 30px;
}
.offer-callout p {
    font-size: 24px;
}
.offer-right img {
    height: 51vh;
}
.why-work-with-us {
    padding: 0px 0;
}
.why-work-with-us .cccontainer {
    margin: 0px 21px;
}
.why-image img {
    height: 102vh;
}
.section-title {
    font-size: 42px;
}
.section-title::after {
    width: 130px;
}
.why-point h4 {
    font-size: 34px;
    gap: 25px;
}
.why-point p {
    font-size: 20px;
    margin: 18px 59px;
    line-height: 1.6;
}
.services-tabs h2 {
    font-size: 37px;
    margin-top: 40px;
}
.tab-description {
    font-size: 25px;
}
.service-text {
  flex-direction: column;
  padding: 5% 4%;
}
.service_para h2 {
    font-size: 33px;
}
.service_para p{
  font-size: 23px;
}
.industry-content {
    max-width: 715px;
    margin-top: -55%;
}
.industry-content h2 {
    font-size: 32px;
}
.industry-content p {
    font-size: 21px;
    margin-bottom: 26px;
}
.feature-box h4 {
    font-size: 25px;
}
.containerrr {
    margin: 0px 20px;
    display: block;
}
.text-content .section-subtitle {
    font-size: 27px;
    margin-bottom: 18px;
}
.text-content .highlight {
    font-size: 24px;
}
.text-content p {
    margin-bottom: 30px;
    font-size: 24px;
}
.accordion-header {
    font-size: 20px;
}
.accordion-body.show {
  font-size: 20px;
}
.stats-container {
  flex-direction: column;
}
.content_bg {
    height: 55vh;
}
.content p {
    font-size: 23px;
    margin-bottom: 15px;
}
.project-grid {
    display: block;
}
.project-name {
    font-size: 35px;
    margin-top: 7px;
    margin-bottom: 15px;
}
.project-desc {
    font-size: 23px;
}
.project-timeline {
    font-size: 25px;
}
.project-card {
    height: 48vh;
    margin-bottom: 35px;
}
.ongoing_projects {
    padding: 10px 20px;
}
.ongoing_list {
    display: block;
}
.ongoing_card {
    margin-bottom: 35px;
}
.ongoing_card-title {
    font-size: 30px;
    margin-bottom: 20px;
}
.ongoing_card-desc {
    font-size: 21px;
    margin-bottom: 20px;
}
.ongoing_details li {
    font-size: 25px;
}
.section-introo{
  font-size: 23px;
}
.infra-box i {
    font-size: 60px;
}
.infra-box h3 {
    font-size: 29px;
    margin-bottom: 15px;
}
.infra-box p {
    font-size: 18px;
}
.form-container {
    margin: 0px 6%;
    width: 88%;
}
.col-md-8 {
    width: 100% !important;
}
.form-container h2 {
    font-size: 35px;
    margin-bottom: 15px;
}
.form-container p {
    font-size: 19px;
  }
  .main-footer {
    height: 120vh;
        background: url(./image/footer-background.jpg) repeat;
}
.footer-container {
  flex-direction: column;
}
.footer-col img {
    width: 28%;
    height: 15vh;
    margin-bottom: 20px;
}
.company-infoo p{
  width: 65%;
}
.quick-links ul {
    padding-bottom: 21px;
    text-align: left;
}
.footer-col h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    text-align: left;
}
.quick-links ul {
  padding-left: 0px !important;
}
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 35px;
    margin-top: 0px;
}
.Service-section {
    padding: 0px;
    margin: 15px;
}
.services p {
    margin-bottom: 25px;
}
.service-part{
  flex-direction: column;
      gap: 40px;
    margin: 25px 15px;
}
.services h2 {
    font-size: 23px;
}
.About{
  gap: 40px;
          padding: 25px 5%;
}
    .about-text h2 {
        margin: 0px 85px;
        margin-bottom: 20px;
        font-size: 40px;
    }
.about-text p {
    margin: 0px 0px;
}

.about-image img {
    width: 100%;
    height: 100%;
}
.section_content h1 {
    font-size: 29px;
}
.about-right {
  display: block;
}
.about-barton .containner {
    gap: 20px;
    flex-direction: column;
}
.service-box {
    padding: 15px;
    margin-bottom: 20px;
}
.about-barton {
    padding: 30px 20px;
}
.process-section {
    padding: 20px 20px;
}
.process-text {
    margin-bottom: 0px;
}
.offer-section {
    padding: 20px 25px;
}
.section-title::after {
    left: 22px;
}
.offer-sub {
    font-size: 16px;
    text-align: justify;
}
.offer-right img {
    height: 100%;
}
.why-work-with-us {
    padding: 30px 0;
}
.stats-overlay {
    margin: 0px 0%;
    margin-top: 0%;
    width: 100%;
}
.why-image img {
    width: 100%;
    height: 100%;
}
.form-container {
    margin: 0px 0%;
        padding: 25px;
}
.col-md-8 {
    width: 100% !important;
}
.cccontainer {
    margin: 0px 15px;
} 
.why-point h4 {
    font-size: 18px;
}
    .why-point p {
        font-size: 15px;
        margin: 0px 30px;
        text-align: justify;
    }
.tabs {
  flex-direction: column;
    justify-content: center;
    gap: 5px
}

.content h1 {
    font-size: 30px;
}
.service-text {
  flex-direction: column;
}
.service-text {
    padding: 3% 3%;
    gap: 15%;
}

    .industry-content {
        max-width: 372px;
        margin-left: 4%;
        margin-top: -110%;
        margin-bottom: 5%;
        padding: 20px;
    }
   .process-card,
  .process-card:nth-child(even) {
    flex-direction: column;
    text-align: center;
    transform: translateY(20px);
  }
  .why-work-with-us .cccontainer {
    flex-direction: column;
    text-align: center;
        margin: 0px 20px;
  }
  .why-point h4 {
    justify-content: left;
  }
  .footer-container {
    flex-direction: column;
        padding: 0px 0px 10px;
  }
  .quick-links ul {
    text-align: left;
    font-size: 15px;
    margin: 0px 4px;
}
.quick-links h3 {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 14px;
}
.main-footer {
    background: url(./image/footer-background.jpg);
    color: #fff;
    font-family: Arial, sans-serif;
    height: 62vh;
    text-align: left;
    padding: 25px 20px;
}
.footer-col h3 {
    margin-top: 28px;
    margin-bottom: 16px;
}
.footer-bottom p {
    margin-top: 20px;
    font-size: 18px;
}
.footer-links h2 {
    margin-top: 10px;
    margin-bottom: 15px !important;
    font-size: 25px;
    text-decoration: underline;
}
.footer-links a {
    display: flex;
    margin: 0px 0px;
    font-size: 20px;
}
.footer-contact span {
    font-size: 16px;
    margin-top: 0px;
}


.navbar {
        width: 100% !important;
        margin: 0 !important;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .nav-item {
        text-align: center;
    }

    .header-main {
    flex-direction: row;  
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 10px 0;
    background-color: #fff;
}

    .header-main img {
        max-height: 60px;
        width: auto;
    }
    .header-icon {
        width: 59%;
        padding-right: 5px;
        height: 28%;  
    }
.header-wrapper {
    height: 19vh;
}
.logo{
  height: 8vh;
}
.heading{
  font-size: 10px;
}
.container-fluid{
  justify-content: end !important;
}
.footer-col img {
    width: 40%;
    height: 13vh;
}
.project-section {
    padding: 35px 15px;
}
.project-title {
    font-size: 33px;
}
.project-subtitle {
    font-size: 20px;
    margin-bottom: 26px;
}
.ongoing_list {
    padding: 0px 10px;
}
.stats-section {
    padding: 0px 20px;
    padding-bottom:20px
}
.construction-process {
      padding: 35px 23px;
    height: 125vh;
}
.project-card {
    height: 65vh;
}
.faq-section {
    padding: 30px 15px;
}
.faq-question{
  text-align: left;
}
.vendor-section {
    padding: 40px 0px;
    display: flex;
    margin: 0% 4%;
    margin-top: 30%;
}
.career-container {
    margin-top: 30%;
}
.pyramid {
    margin: 0 0%;
}
.branches{
  flex-direction: column;
}
 .contact-container {
    margin: 0px 13px;
}
.contact-form-group {
  flex-direction: column;
}
input{
      margin-bottom: 30px;
}
.contact-form-group {
    margin-bottom: 0px;
  }
  #subject{
        margin-top: 30px;
  }
  .contact-submit{
    margin-top: 30px;
  }
.vendor-container {
    padding: 21px 23px;
}
/* #vendorForm input{
      width: 90%;
    padding: 6px;
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 9px;
} */

}

@media(max-width:320px){
  .header-icon {
    height: 38%;
  }
  .logo {
    height: 13vh;
  }
  .services-tabs h2 {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 5px;
  }
  .industry-content {
    max-width: 338px;
  }
  .features {
    gap: 5px;
    margin-top: 23px;
  }
  .accordion-header {
    font-size: 16px;
  }
  .accordion-item{
    width: 95%;
  }
  .construction-process {
    height: 175vh;
  }
  .stats-section {
    padding: 0px 0px;
  }
  .stats-overlay {
    margin: 0px 3%;
    width: 93%;
    height: 130vh;
  }
  .content_bg {
    height: 125vh;
  }
  .containerrr {
    gap: 2%;
  }
 .project-section {
   padding: 30px 15px;
  }
  .project-card {
    height: 90vh;
}
.ongoing_card{
  width: 98%;
}
  .main-footer {
    height: 230vh;
  }
  .ongoing_projects {
    padding: 10px 7px;
  }
  .form-container {
    margin: 0px 0%;
    padding: 20px;
  }
}