* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 25px rgba(214, 219, 224, 0.8);
    /* position: fixed; */
    top: 0;
    background-color: #ffffff;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.nav-link {
    display: flex;
    gap: 4.5rem;
    align-items: center;
    padding-right: 30px;
}

.nav-link a {
    text-decoration: none;
    color: #75808A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.nav-link ul {
    list-style: none;

}

.nav-link ul li {
    float: left;
    padding-left: 60px;
}

.nav-link a:hover {
    color: #0077cc;
    transform: scale(1.15);
}

.nav-logo img {
    width: 173px;
    height: 46px;
    padding-left: 70px;
}

.nav-link button {
    background-color: #3C77C3;
    color: #ffffff;
    font-size: 18px;
    margin-right: 20px;
    padding: 12px 23.8px 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid;
}

.nav-link button:hover {
    background-color: #0077cc;
    color: #ffffff;
    border: 1px solid #0077cc;
}

@media screen and (max-width: 768px) {

    /* Navbar */
    nav {
        max-width: 100%;
        padding: 10px 15px;
        box-sizing: border-box;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-logo img {
        width: 124px;
        height: 43.97px;
        padding-left: 0cap;
    }

    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }

    .nav-link {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-link.active {
        display: flex;
    }

    .nav-link ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .nav-link ul li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-link a {
        font-size: 14px;
        color: #000;
        padding: 10px;
        display: block;
    }

    .nav-link button {
        margin: 15px auto;
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Hero-Section */
.hero-section {
    opacity: 0.9;
    background: linear-gradient(135deg, rgba(60, 119, 195, 0.00) 0%, #c6dfff 0%, rgba(60, 119, 195, 0.00) 50%);
    display: flex;
    justify-content: space-around;
    padding: auto;
}

.hero-text {
    padding-top: 50px;
}

#young {
    color: #414141;
    font-family: Poppins;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    /* 100% */
    letter-spacing: -2.4px;
    padding-left: 36.5px;
}

.hero-text h2 {
    padding-left: 36.5px;
    color: rgba(60, 119, 195, 0.70);
    font-family: Poppins;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    /* 100% */
    letter-spacing: -2.4px;
}

.hero-p {
    padding-top: 32px;
    padding-left: 36.5px;
}
#btn{
  text-decoration: none;
}
.hero-p p {
    color: #75808A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.5px;
    /* 162.5% */
}

.hero-btns {
    padding-top: 32px;
    padding-left: 36.5px;
    display: flex;
    gap: 32px;
}

#hero-btn1 {
    display: flex;
    padding: 9.5px 32.4px 10.5px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: none;
    background: #3C77C3;
    /* text */
    color: #FAFAFA;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
}

#hero-btn1:hover {
    border: 1px solid #3C77C3;
    background: none;
    /* text */
    color: #3C77C3;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
}

#hero-btn2 {
    display: flex;
    padding: 10.5px 31.68px 11.5px 33px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #3C77C3;
    background: none;
    /* text */
    color: #3C77C3;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
}

#hero-btn2:hover {
    background: #3C77C3;
    /* text */
    color: #FAFAFA;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.hero-right img {
    padding-top: 50px;
    width: 717px;
    height: 566px;
    flex-shrink: 0;
    aspect-ratio: 717/566;

}

@media screen and (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 10px 15px 0 15px;
    }

    .hero-text {
        padding-top: 40px;
    }

    .hero-btns {
        flex-direction: column;

    }

    .hero-btns {
        padding-left: 16.5px;
        padding-top: 10px;
        gap: 10px;
    }

    .hero-btns Button {
        width: 250px;
    }

    .hero-text h2 {
        font-size: 50px;
        line-height: normal;
        padding-left: 16.5px;
    }

    .hero-p {
        padding-left: 16.5px;
        padding-top: 10px;
    }

    .hero-p p {
        font-size: 16px;
    }

    .hero-right img {
        padding-top: 20px;
        width: 298px;
        height: 223px;
    }

}

/* About */
/* About Section */
.about {
  padding: 80px 5% 40px;
  background: #f9fafb;
}

.about-heading h3 {
  color: #414141;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.about-p {
  margin-top: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-p p {
  color: #75808A;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 5px 0;
}

/* About Cards */
.about-boxs {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

.box1 {
  text-align: center;
  width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.box1 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.box1 h2 {
  color: #1E293B;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
}

.box1 p {
  margin-top: 8px;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .about-boxs {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .about-heading h3 {
    font-size: 32px;
  }

  .about-p p {
    font-size: 16px;
  }

  .about-boxs {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .box1 {
    width: 90%;
    max-width: 350px;
  }
}

@media screen and (max-width: 480px) {
  .about-heading h3 {
    font-size: 26px;
    line-height: 1.2;
  }

  .about-p p {
    font-size: 14px;
    line-height: 22px;
  }

  .box1 h2 {
    font-size: 18px;
  }

  .box1 p {
    font-size: 14px;
  }
}
.our-service {
  background-color: #e1f2ff;
  padding: 80px 20px;
}

.our-heading h3 {
  color: #414141;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.5px;
}

.our-p {
  margin-top: 20px;
  text-align: center;
}

.our-p p {
  color: #75808A;
  font-size: 18px;
  line-height: 29px;
}

.our-IT h4{
  color: #000;
  margin-top: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.our-IT-boxs {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.our-box1 {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25),
              0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.our-box1:hover {
  transform: translateY(-5px);
}

.our-box1 img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.our-box1 h2 {
  color: #414141;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.our-box1 p {
  color: #75808A;
  font-size: 16px;
  line-height: 24px;
}

/* 📱 Responsive */
@media screen and (max-width: 768px) {
  .our-heading h3 {
    font-size: 32px;
    line-height: 45px;
  }

  .our-box1 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* Ready Button */
.ready-btn-box {
    padding: 40px 0;
}

.btn-box {
    text-align: center;
    background-color: #3C77C3;
    padding: 40px 20px;
    border-radius: 12px;
}

.btn-box h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.btn-box p {
    color: #DBEAFE;
    margin-bottom: 30px;
}

.btn-box button {
    width: 200px;
    height: 48px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    background-color: #fff;
    color: #2563EB;
    cursor: pointer;
}

/* Our Projects */
.Our-pro-heading {
    text-align: center;
    padding-top: 40px;
}

.our-pro-p {
    text-align: center;
    color: #75808A;
    font-size: 18px;
    margin-top: 10px;
}

/* Filter Buttons */
.filter-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
}

.filter-buttons {
    display: inline-flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.filter-buttons button {
    background: transparent;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-buttons button.active {
    background: #2563EB;
    color: #fff;
}

.filter-buttons button:not(.active):hover {
    background: #f1f5f9;
}

/* Portfolio Grid */
.portfolio {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 25px;
    margin: 40px 20px;
}

/* Project Card */
.project-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Image Section */
.project-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2563EB;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.project-tag-civil {
    background: #0B8D21;
        position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

/* Content */
.project-content {
    padding: 16px;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}
.Our-pro-heading h3 {
  color: #414141;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
/* Responsive Grid */
@media (max-width: 1024px) {
    .portfolio {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .portfolio {
        grid-template-columns: 1fr; /* 1 column for mobile */
        gap: 20px;
    }

    .btn-box h2 {
        font-size: 22px;
    }

    .btn-box p {
        font-size: 14px;
    }

    .btn-box button {
        width: 150px;
        font-size: 16px;
    }
      .Our-pro-heading h3 {
    font-size: 32px;
  }
}
/* Wrapper */
.contact-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-header h4 {
  font-size: 36px;
  font-weight: bold;
}
.contact-header h4 span {
  color: #3C77C3;
}
.contact-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* Container Flex */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Left: Form Box */
.contact-form-box {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.contact-form-box h2 {
  margin-bottom: 20px;
  color: #3C77C3;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fcfcfc;
  font-size: 14px;
  box-sizing: border-box;
}
.form-group textarea {
  height: 120px;
  resize: none;
}
.contact-form-box button {
  width: 100%;
  padding: 12px;
  background: #3C77C3;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form-box button:hover {
  background: #2f5fa1;
}

/* Right Column */
.right-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

/* Contact Info & Social Boxes */
.contact-info-box,
.social-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
.contact-info-box h2,
.social-box h3 {
  margin-bottom: 20px;
  color: #3C77C3;
}
#email a{
  color: #555;
}
/* Info Blocks */
.info-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-block img {
  width: 48px;
  height: 48px;
  margin-right: 15px;
}
.info-block p {
  margin: 4px 0;
  color: #555;
}
#num{
  color: #555;
  display: flex;
  text-decoration: none;
}

/* Social Icons */
.social-icons img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Footer Styling */
.footer {
  background: #6f9ad2;
  color: #f0f0f0;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* About Section */
.footer-about {
  flex: 1;
  min-width: 260px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
#a{
  text-decoration: none;
  color: white;
  
}
#ab{
  text-decoration: none;
  color: white;
  display: flex;
}
.footer-socials a img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  transition: transform 0.3s;
}

.footer-socials a img:hover {
  transform: scale(1.1);
}

/* Links Section */
.footer-links {
  flex: 1;
  min-width: 180px;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #e6e6e6;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

/* Contact Section */
.footer-contact {
  flex: 1;
  min-width: 220px;
}

.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 15px;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: 14px;
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    margin-bottom: 30px;
  }

  .footer-socials {
    justify-content: center;
  }
  #ab{
    flex-direction: column;
    text-align: center;
  }
}
/* SEO */
/* CSS: .sr-only (common a11y pattern) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; /* legacy */
  clip-path: inset(50%) !important;   /* modern */
  white-space: nowrap !important;     /* keep it on one line */
  border: 0 !important;
}
.hide-link {
  display: none;
}

