body {
  font-family: 'Poppins', sans-serif;
}

.hero {
  height: 90vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.section {
  padding: 60px 0;
}

.btn-primary {
  background-color: #1A237E;
  border: none;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0d1b5e;
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: #1A237E;
}

.section p {
  font-weight: 500;
  color: #555;
}

.icon-box i {
  font-size: 40px;
  color: #1A237E;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon-box i:hover {
  transform: scale(1.2);
  color: #2962FF;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: #1A237E;
}

.logo {
  height: 50px;
  width: auto;
}

.infra-section {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.corporate-btn {
  background-color: #ffffff;
  color: #1A237E;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.30s ease;
  border: 2px solid #ffffff;
}

.corporate-btn:hover {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.infra-title {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.modern-btn:hover {
  background: #ffffff;
  color: #1A237E;
  transform: translateY(-3px);
}

.footer-section {
  background: linear-gradient(135deg,#f47435,#ee7037);
  padding:25px 0;
  color:#fff;
}

/* Contact area */
.footer-contact p {
  margin:5px 0;
  font-size:15px;
}

.footer-contact i {
  margin-right:8px;
}

/* Divider */
.footer-divider {
  margin:12px auto;
  width:60%;
  border-color:rgba(255,255,255,0.3);
}

/* Copyright */
.footer-copy {
  margin:0;
  font-size:14px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
}

.infra-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: none;
}

.infra-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .infra-title {
    font-size: 2rem;
  }

  .infra-subtitle {
    font-size: 1rem;
  }
}

.infra-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../images/middle-image.jpg') center/cover no-repeat;

  z-index: -1;

  animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

/* Hover effect */
.nav-link:hover {
  color: #1A237E;
}

/* ACTIVE TAB */
.nav-link.active {
  color: #1A237E !important;
}

.nav-link.active {
  color: #ffffff !important;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #ffffff;
}

/* ===== NAVBAR LINKS ===== */

.navbar-custom .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 30px;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Hover */
.navbar-custom .nav-link:hover {
  color: #ee7037 !important;
  background-color: rgba(238,112,55,0.12);
}

/* ACTIVE PAGE PILL */
.navbar-custom .nav-link.active {
  background-color: #ee7037;
  color: #ffffff !important;
  font-weight: 600;
}

.navbar-nav .nav-item {
  margin-left: 8px;
}

.navbar-custom {
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-custom .nav-link.active {
  background-color: #ee7037;
  color: #ffffff !important;
  border-radius: 30px;
}

.navbar-custom {
  background-color: #fff6f2;
}

.section {
  padding: 70px 0;
}

/* Card Design */
.about-card,
.value-card {
  background: #f5f5f5;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  height: 100%;
}

.icon-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg,#f47435,#ee7037);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle i {
  color: white;
  font-size: 22px;
}
/* Value cards center */
.value-card {
  text-align: center;
}

.about-text {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  color: #555;
}

.value-card {
  background:#f5f5f5;
  padding:35px;
  border-radius:12px;
  box-shadow:0 5px 18px rgba(0,0,0,0.08);
  text-align:center;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

/* Card Hover */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content Area */
.service-body {
  padding: 30px;
  position: relative;
  text-align: left;
}

/* Icon Circle */
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,#f47435,#ee7037);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;

  position:absolute;
  top:-30px;

  transition: all 0.4s ease;
}

/* icon */
.service-icon i {
  color:#fff;
  font-size:22px;
  transition: all 0.4s ease;
}

/* Hover Effect */
.service-card:hover .service-icon {
  background: #ffffff;
  transform: rotate(10deg) scale(1.1);
}

.service-card:hover .service-icon i {
  color:#ee7037;
}

.service-img {
  transition: transform 0.6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

/* PROJECT CARD */
.project-card {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  transition:0.35s;
  text-align:left;
}

.project-card:hover {
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.project-img {
  width:100%;
  height:230px;
  object-fit:cover;
  transition:0.6s;
}

.project-card:hover .project-img {
  transform:scale(1.05);
}

/* Content */
.project-content {
  padding:25px;
}

.project-location {
  color:#ee7037;
  font-size:14px;
  margin-bottom:10px;
}

.career-icon {
  font-size:40px;
  color:#ee7037;
  margin-bottom:15px;
}

/* Job Card */
.job-card {
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.job-card:hover {
  transform:translateY(-6px);
}

.job-card .btn {
  background:#ee7037;
  border:none;
}

/* CAREER CARD */
.career-card {
  background:#ffffff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  transition:0.35s;
  height:100%;
}

.career-card:hover {
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* Icon Circle */
.career-icon-circle {
  width:65px;
  height:65px;
  background:linear-gradient(135deg,#f47435,#ee7037);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.career-icon-circle i {
  color:#fff;
  font-size:24px;
}

/* Contact Card */
.contact-card {
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.contact-card:hover {
  transform:translateY(-6px);
}

.contact-icon {
  font-size:35px;
  color:#ee7037;
  margin-bottom:15px;
}

/* Contact Form */
.contact-form {
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.contact-btn {
  background:#ee7037;
  color:#fff;
  padding:10px 30px;
  border:none;
}

/* VALUE STRIP */
.value-strip {
  background:#f8f8f8;
  padding:20px 0;
}

.value-text {
  font-weight:700;
  letter-spacing:4px;
  margin:0;
}

.value-text span {
  margin:0 10px;
}

/* Colors */
.orange {
  color:#ee7037;
}

.yellow {
  color:#f4b400;
}

.divider {
  color:#000;
}

@media(max-width:768px){
  .value-text{
    font-size:14px;
    letter-spacing:2px;
  }
}

/* Fade Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 1.2s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation-delay: 0.5s;
}

.value-strip {
  background:#f8f8f8;
  padding:20px 0;
}

.value-text {
  font-weight:700;
  letter-spacing:4px;
}

/* Initial hidden state */
.reveal {
  opacity:0;
  transform:translateY(15px);
  display:inline-block;
  animation: wordReveal 0.10s ease forwards;
}

/* Animation */
@keyframes wordReveal {
  to {
    opacity:1;
    transform:translateY(0);
  }
}

/* Sequential delay */
.reveal:nth-child(1){ animation-delay:0.2s; }
.reveal:nth-child(2){ animation-delay:0.4s; }
.reveal:nth-child(3){ animation-delay:0.6s; }
.reveal:nth-child(4){ animation-delay:0.8s; }
.reveal:nth-child(5){ animation-delay:1s; }
.reveal:nth-child(6){ animation-delay:1.2s; }
.reveal:nth-child(7){ animation-delay:1.4s; }

/* Colors */
.orange{ color:#ee7037; }
.yellow{ color:#f4b400; }
.divider{ color:#000; margin:0 10px; }


/* CONTACT PREMIUM AREA */
.contact-highlight {
  background:#f7f9fc;
  padding:70px 0;
}


/* Contact Card */
.contact-card {
  text-align:center;
  padding:25px;
  border-radius:12px;
  transition:0.35s;
}

.contact-card:hover {
  transform:translateY(-8px);
}

/* Icon */
.contact-icon-circle {
  width:55px;
  height:55px;
  background:linear-gradient(135deg,#f47435,#ee7037);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
}

.contact-icon-circle i {
  color:#fff;
  font-size:20px;
}

.contact-card h5 {
  font-weight:600;
  margin-bottom:5px;
}

.contact-card p {
  color:#666;
  margin:0;
}

.about-text {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  font-size: 16px;
  color: #555;
}

.about-text p {
  margin-bottom: 18px;
}

.mission-title {
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.project-image-wrapper {
  position: relative;
}

/* Coming Soon Badge */
.coming-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg,#f47435,#ee7037);
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  animation: pulseBadge 2s infinite;
}

/* Animation */
@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Utility Section */
.utility-icons {
  display:flex;
  justify-content:center;
  gap:50px;
  margin-bottom:30px;
}

/* Item */
.utility-item {
  text-align:center;
  transition:0.4s;
}

/* Glass Circle */
.glass-icon {
  width:80px;
  height:80px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.3);

  box-shadow:
    0 8px 25px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.4);

  margin:auto;
  transition:0.4s;
}

/* Icon */
.glass-icon i {
  font-size:32px;
  color:#ee7037;
}

/* Text */
.utility-item p {
  margin-top:10px;
  font-weight:600;
  color:#fff;
}

/* Hover Effect */
.utility-item:hover .glass-icon {
  transform:translateY(-8px) scale(1.05);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.2);
}

.utility-icons {
  margin-top:20px;
}


.utility-item:hover .glass-icon {
  background:#ee7037;
}

.utility-item:hover .glass-icon i {
  color:#fff;
}

.contact-wrapper .row {
  gap: 25px;
}

.contact-card {
  margin: auto;
}
