/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #444;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  background: #0b1e3d;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 25px;
}

.logo img {
  height: 65px;
  padding-bottom: 5px;
}

.logo-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: #1a73e8;
  border-radius: 10px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== HERO SECTION / CAROUSEL ===== */
.hero {
  background: linear-gradient(135deg, #0b1e3d 0%, #0d2a5c 60%, #0b1e3d 100%);
  color: #fff;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  animation: heroFadeIn 0.8s ease-in-out;
}

.hero-slide.active {
  display: block;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 80px;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 .highlight {
  color: #ffd700;
 /* font-style: italic;*/
}

.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-image {
  max-width: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel Navigation Dots */
.hero-nav {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-dot:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
  background: #ffd700;
  border-color: #ffd700;
}

/* Carousel Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-arrow-left {
  left: 20px;
}

.hero-arrow-right {
  right: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a73e8;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a73e8;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #1a73e8;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #1a73e8;
  color: #fff;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1e3d, #1a3a6c);
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-banner-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px 0px;
}

.page-banner h1 {
  color: #ffd700;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== BREADCRUMB ===== */
.back-to-top {
  text-align: right;
  padding: 15px 80px;
  font-size: 0.9rem;
  color: #0b1e3d;
  max-width: 1200px;
  margin: 0 auto;
}

.back-to-top a {
  color: #1a73e8;
}

.back-to-top a:hover {
  text-decoration: underline;
}
.breadcrumb {
  padding: 15px 80px;
  font-size: 0.9rem;
  color: #444;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb a {
  color: #1a73e8;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== ABOUT SECTION (HOME) ===== */
.about-section {
  padding: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0b1e3d;
  text-transform: uppercase;
}

.about-section p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 10px;
}

.about-section .read-more {
  color: #0b1e3d;
  font-weight: 600;
}

.about-section .read-more:hover {
  text-decoration: underline;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s;
  background: #6fa8f5;
  display: flex;
  flex-direction: column;
}



.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon-area {
  background: #6fa8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  flex: 1;
  min-height: 100px;
  border-radius: 14px;
}

.stat-label {
  background: #0b1e3d;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: auto;
}

/* ===== L&T PARTNER SECTION ===== */
.partner-section {
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-content h2 {
  font-size: 2.5rem;
  color: #0b1e3d;
  line-height: 1.3;
  margin-bottom: 10px;
}

.partner-content h2 .highlight {
  color: #1a73e8;
  font-style: italic;
}

.partner-content h2 .brand {
  color: #1a73e8;
}

.partner-content p {
  font-size: 1.1rem;
  color: #444;
  font-weight: 600;
  margin-bottom: 20px;
}

.partner-logo {
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #1a73e8;
  padding-left: 60px;
}

.partner-logo svg,
.partner-logo img {
  width: 180px;
  height: auto;
}

/* ===== FEATURED PROJECTS (HOME) ===== */
.featured-projects {
  background: #f0f4f8;
}

 .featured-projects-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 80px;
}

.featured-projects .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.featured-projects h2 {
  font-size: 2.2rem;
  color: #0b1e3d;
  text-transform: uppercase;
}

.featured-projects .view-all {
  color: #0b1e3d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.featured-projects .view-all:hover {
  text-decoration: underline;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: #fff;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ===== WHY CHOOSE US (HOME) ===== */
.why-choose {
  padding: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose h2 {
  font-size: 2.2rem;
  color: #0b1e3d;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.why-choose > p {
  color: #444;
  margin-bottom: 25px;
}

.why-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  }

.why-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #444;
}

.why-points .check {
  color: #1a73e8;
  font-weight: bold;
}

/* ===== FOOTER ===== */
.footer {
  background: #0b1e3d;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 80px 25px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #4da6ff;
}

.footer-content p,
.footer-content a {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.8;
}

.footer-content a:hover {
  color: #4da6ff;
}

.footer-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
}

.footer-links a:not(:last-child)::after {
  content: '|';
  margin-left: 15px;
  color: #444;
}

.footer-bottom {
  border-top: 1px solid #1a3a6c;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #444;
}

/* ===== ABOUT PAGE ===== */
.about-page-content {
  padding: 40px 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-page-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-page-content strong {
  color: #444;
}

/* L&T Box on About page */
.lt-box {
  background: #e8f0fe;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

.lt-box-text {
  font-style: italic;
  color: #0b1e3d;
  font-size: 1.1rem;
  line-height: 1.8;
}

.lt-box-text a {
  color: #1a73e8;
  font-weight: 600;
}

.lt-box-logo {
  min-width: 150px;
  text-align: center;
}

.lt-box-logo img,
.lt-box-logo svg {
  width: 150px;
}

.lt-box .view-link {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-size: 0.9rem;
  color: #0b1e3d;

}
.lt-box .view-link:hover {
text-decoration: underline;
}
/* Journey Section */
.journey-section {
  margin: 40px 0;
}

.journey-section h3 {
  font-size: 1.5rem;
  color: #0b1e3d;
  margin-bottom: 15px;
}

/* Why Industry Leaders */
.industry-leaders {
  margin-top: 40px;
}

.industry-leaders h3 {
  color: #0b1e3d;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.industry-leaders-why {
  background-color: #f0f4f8;
  padding: 20px;
  border-radius: 10px
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.leader-card {
  text-align: center;

}

.leader-card .icon {
  font-size: 4rem;
  margin-bottom: 15px;
  color: #0b1e3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffc107;
}

.leader-card p {
  font-size: 0.9rem;
   color: #444;
  font-weight: 600;
  margin-bottom: 20px;
}




.leaders-grid4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding:30px 0;
}
/* About page footer with inquiry form */
.about-footer {
  background: #0b1e3d;
  color: #fff;
}

.about-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 80px;
}

.about-footer h3 {
  color: #4da6ff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.about-footer p,
.about-footer a {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
}

.about-footer a:hover {
  color: #4da6ff;
}

/* ===== SERVICES PAGE ===== */
.services-content {
  padding: 40px 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-content > p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.service-item img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  
}

.service-item h3 {
  font-size: 1.5rem;
  color: #0b1e3d;
  margin-bottom: 12px;
}

.service-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  font-style: normal;
}

/* ===== PROJECTS PAGE ===== */
.projects-content {
  padding: 40px 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-content > p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.download-btn {
  display: flex;
  justify-content: flex-end;
  margin: 30px 0;
}

.download-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b1e3d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.download-btn a:hover {
  background: #1a3a6c;
}

/* Project Tabs */
.project-tabs {
  display: flex;
  background: #1557b0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  border: #e2e2e2 1px solid;
}

.project-tabs button {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s;
}

.project-tabs button.active {
  background: #f9f9f9;
  color: #0b1e3d;
  
}
.tab-content-active-header h2{
   font-size: 2rem;
  font-weight: 800;
    color: #ffd700;
    text-align: center;
    padding-bottom: 30px;
}

.project-tabs button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.15);
}

.new-card {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 18px;
  margin: 5px;
  border: 1px solid #e2e2e2;
}
.project-meta {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}


/* Project Listing */
.projects-listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.projects-listing p {
  color: red;
 font-size: 1.1rem;
 margin: 5px;
}

.project-listing-card {
  text-align: left;
}

.project-listing-card h3 {
  color: #0d2a5c;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.project-listing-card .location {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 15px;
}

.project-listing-card .image-placeholder {
  border: 2px dashed #ccc;
  border-radius: 8px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
  background: #fafafa;
}

.view-completed-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Tab content visibility */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  padding: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2rem;
  color: #0b1e3d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-content > p {
  color: #444;
  margin-bottom: 40px;
  
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  
}

.contact-card {
  padding: 30px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;

}

.contact-card .icon {
  font-size: 2.5rem;
  color: #1a73e8;
  margin-bottom: 15px;
    display: flex;
  align-items: center;
  justify-content: center;
 
}

.contact-card h4 {
  font-size: 1rem;
  color: #0b1e3d;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

.contact-card p a{
  font-size: 0.9rem;
  color: #0b1e3d;
  line-height: 1.6;
}
.contact-card p a:hover{
  text-decoration: underline;
}


/* Inquiry Section */
.inquiry-section {
  background: #e8f0fe;
  border-radius: 12px;
  padding: 50px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.inquiry-section h3 {
  color: #1a73e8;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.inquiry-section > div > p {
  color: #444;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ===== FORMS ===== */
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap:10px

}

.inquiry-form .full-width {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.3s;
  margin:5px 0px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #1a73e8;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.inquiry-form .submit-btn {
  grid-column: 1 / -1;
  background: #6fa8f5;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: fit-content;
  margin:10px 0;
}

.inquiry-form .submit-btn:hover {
  background: #1a73e8;
}

/* Map container */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* ===== WHATSAPP CHAT BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
}

.whatsapp-btn span {
  font-size: 0.85rem;
  color: #444;
  font-weight: 500;
}

.whatsapp-btn .wa-icon {
  width: 45px;
  height: 45px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    padding: 40px 40px;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-section {
    flex-direction: column;
    text-align: center;
  }

  .partner-logo {
    border-left: none;
    border-top: 3px solid #1a73e8;
    padding-left: 0;
    padding-top: 30px;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-footer-inner {
    grid-template-columns: 1fr;
  }

  .inquiry-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0b1e3d;
    flex-direction: column;
    padding: 20px;
    gap: 5px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    padding: 30px 20px 50px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }

  .hero-nav {
    bottom: 15px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .about-section,
  .services-content,
  .projects-content,
  .about-page-content {
    padding: 30px 20px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 15px;
  }

  .stat-icon-area {
    padding: 20px 10px;
    min-height: 110px;
  }

  .stat-label {
    font-size: 0.8rem;
    padding: 10px 6px;
  }

  .partner-section {
    padding: 30px 20px;
  }


  .why-choose {
    padding: 30px 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-listing {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
  }

  .service-item img {
    width: 100%;
    height: 200px;
  }

  .lt-box {
    flex-direction: column;
  }

  .footer-inner {
    padding: 30px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-footer-inner {
    padding: 30px 20px;
  }

  .page-banner-inner {
    padding: 0 20px 20px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .inquiry-section {
    margin: 0 20px 40px;
    padding: 30px 20px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }
  .breadcrumb {
  padding: 15px 20px;
   margin: 0 auto;
}
}
/*  NEW TAB FOR PROJECT SECTION*/

.project-sections{
  max-width:1250px;
  margin:auto;
  padding:20px;
}

/* TABS */
.tabss{
  display:flex;
  border-radius:6px;
  overflow:hidden;
  margin-bottom:25px;
}

.tab-btns{
  flex:1;
  padding:18px;
  border:none;
  background:#e5e5e5;
  font-size:18px;
  cursor:pointer;
}

.tab-btns.active{
  background:#153e73;
  color:#fff;
}

/* CONTENT */
.tab-contensts{display:none;}
.tab-contents.active{display:block;}

/* GRID */
.projects-grids{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

/* CARD */
.project-cards{
  background:#e9e9e9;
  padding:26px;
}

.project-cards p{
  margin:0 0 10px;
  font-size:18px;
  color:#444;
}

.project-cards span{
  color:#1d3f6d;
  font-weight:600;
}

.img-boxs{
  margin-top:18px;
  height:220px;
  border:1px solid #bfbfbf;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eee;
}

/* RESPONSIVE */
@media(max-width:900px){
  .projects-grids{
    grid-template-columns:1fr;
  }

  .tab-btns{
    font-size:15px;
    padding:14px;
  }
}


/* ================================
   WORK ORDER POPUP
================================ */



/* OPEN BUTTON DEMO */
.openWork{
  padding:12px 20px;
  background-color: #0d2a5c;
  border: #1557b0 1px solid;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}
.openWork:hover{
  padding:12px 20px;
  background-color: #1a73e8;
  border: #1557b0 1px solid;

}
/* POPUP BASE */
.work-popup{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.work-popup.active{
  display:block;
}

/* OVERLAY */
.popup-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  transition:.3s;
}

.work-popup.active .popup-overlay{
  opacity:1;
}

/* BOX */
.popup-box{
 position:relative;
  width:92%;
  max-width:800px;
  height:90vh;                /* important */
  margin:40px auto;
  background:#e9e9e9;
  border-radius:8px;
  overflow:hidden;
  display:flex;
  flex-direction:column;      /* important */
  transform:translateY(40px);
  opacity:0;
  transition:.35s ease;
}

.work-popup.active .popup-box{
  transform:translateY(0);
  opacity:1;
}

/* CONTENT SCROLL AREA */
.popup-content{
  padding:30px;
  overflow-y:auto;           /* scroll here */
  height:100%;
}

/* HEADER */
.popup-header{
  background:#0b1e3d;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 24px;
}

.logo-work{
  font-weight:700;
  font-size:20px;
}
.logo-work img{
height: 50px;
}

.close-btn{
  cursor:pointer;
  font-size:16px;
}

/* CONTENT */
.popup-content{
  padding:30px;
}

.popup-content h1{
  color:#0b1e3d;
  font-size:36px;
  margin-bottom:20px;
  margin-top: 10px;
}
.popup-content p{
  margin-bottom:20px;
  margin-top: 10px;
}

/* TABLE */
.work-table{
  width:100%;
  border-collapse:collapse;
  background:#f9f9f9;
  padding-top: 20px;
}

.work-table th{
  background:#f9f9f9;
  padding:14px;
  text-align:left;
  font-size:18px;
}

.work-table td{
  padding:18px 14px;
  font-size:18px;
}

.work-table a{
  color:#0b1e3d;
  text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){
  .popup-content h1{
    font-size:28px;
  }

  .work-table td,
  .work-table th{
    font-size:15px;
  }
}



/* FORM - 16.02.2026*/
/*.error{
  color:red;
  font-size:13px;
  display:block;
  margin-top:4px;
}
input.error-border,
textarea.error-border{
  border:1px solid red !important;
}*/

/* FORM - 16.02.2026*/


/*home - feature projects*/

/* ===============================
   FEATURED PROJECT SCROLLER PRO
=============================== */

.fp-wrap{
  overflow:hidden;
  position:relative;
}

.fp-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:fpScroll 30s linear infinite;
}

.fp-item{
  min-width:300px;
  flex-shrink:0;
  cursor:pointer;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.12);
  transition:.3s;
}

.fp-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.fp-item:hover{
  transform:translateY(-6px);
}

.fp-item1:hover{
  transform:translateY(0px);
  
}

/* smooth loop */
@keyframes fpScroll{
  from{ transform:translateX(0);}
  to{ transform:translateX(-50%);}
}

/* pause on hover */
.fp-wrap:hover .fp-track{
  animation-play-state:paused;
}


/* ===============================
   POPUP BLACK WINDOW
=============================== */

.fp-popup{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.fp-popup.active{
  display:block;
}

.fp-popup-bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.9);
}

.fp-popup-box{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.fp-popup-box img{
  max-width:95%;
  max-height:90vh;
  border-radius:8px;
}

.fp-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:18px;
  color:#fff;
  cursor:pointer;
  background-color: #1a73e8;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  z-index:5;
}
/* popup info text */

.fp-popup-info{
  color:#fff;
  max-width:800px;
  margin-top:20px;
  text-align:center;
}

.fp-popup-info h3{
  font-size:26px;
  margin-bottom:10px;
}

.fp-popup-info p{
  font-size:16px;
  opacity:.9;
}

.fpLoc{
  margin-top:8px;
  font-size:14px;
  opacity:.7;
}

/* ===============================
   POPUP IMAGE + BOTTOM TEXT BAR
=============================== */

.fp-popup-img-wrap{
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

#fpPopupImg{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
}

/* bottom overlay */
.fp-caption{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:10%;
  min-height:60px;

  background:rgba(0,0,0,.7);
  color:#fff;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;

  padding:40px;
  box-sizing:border-box;
}

/* text */
.fp-caption h3{
  font-size:24px;
  margin-bottom:8px;
  font-weight:600;
}

.fp-caption p{
  font-size:18px;
  opacity:.9;
}


/* ===== PREMIUM PROJECT POPUP ===== */
.fp-popup{
  position:fixed;
  inset:0;
  display:none;
  z-index:99999;
  animation:fadeIn .3s ease;
}

.fp-popup.active{
  display:block;
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

.fp-popup-bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
}

.fp-popup-box{
  position:relative;
  max-width:95%;
  margin:40px auto;
  background:#000;
  overflow:hidden;
  border-radius:8px;
  animation:zoomIn .35s ease;
}

@keyframes zoomIn{
  from{transform:scale(.85);opacity:0}
  to{transform:scale(1);opacity:1}
}

#fpPopupImg{
 max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

/* bottom overlay */
.fp-info{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.55);
  color:#fff;
  padding:14px 20px;
  box-sizing:border-box;
}

.fp-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:4px;
}

.fp-meta{
  font-size:14px;
  opacity:.9;
}
/* arrows */
.fp-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  color:#fff;
  background:#1a73e8;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:10;
  user-select:none;
}

.fp-prev{ left:-10px; }
.fp-next{ right:-10px; }

.fp-nav:hover{
  background:rgba(0, 0, 0, 0.7);
}


/* mobile */
@media(max-width:768px){
  .fp-popup-box{
    width:95%;
    margin:20px auto;
  }
  .fp-title{font-size:16px}
  .fp-meta{font-size:13px}
}
/* Real-time Error Styling */
.error-border { border: 2px solid #ff4d4d !important; }
.error { color: #ff4d4d; font-size: 12px; margin-top: 5px;}
/* Modal ko chupa kar rakhne ke liye */
/* Modal Background (Puri screen cover karega) */
.modal {
  display: none; 
  position: fixed; /* Screen par fix rahega */
  z-index: 9999; /* Sabse upar dikhega */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Background thoda blackish/transparent */
  backdrop-filter: blur(5px); /* Piche ka content blur kar dega PRO look ke liye */
}

/* Modal Box (Jo popup box hai) */
.modal-content {
  background-color: #fff;
  position: absolute;
  top: 50%; /* Screen ke center mein */
  left: 50%;
  transform: translate(-50%, -50%); /* Bilkul beech mein alignment */
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Shadow se popup wala effect aayega */
  animation: popupAnim 0.3s ease-out; /* Chota sa animation */
}

/* Popup Animation */
@keyframes popupAnim {
  from { transform: translate(-50%, -40%); opacity: 0; }
  to { transform: translate(-50%, -50%); opacity: 1; }
}

/* Close Button Styling */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
}


.success-icon {
  font-size: 50px;
  color: #28a745;
  margin-bottom: 15px;
}

/* ===== PROJECT TABS SECTION ===== */
.projects-tabs-section {
  padding: 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-tabs {
  display: flex;
  background: #123e74;
  border-radius: 6px;
  overflow: hidden;
  max-width: 100%;
}

.tab-btn {
  flex: 1;
  padding: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn.active {
  background: #e6e6e6;
  color: #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* PROJECT BLOCK */
.project-block {
  background: #f2f2f2;
  padding: 30px;
  margin-top: 25px;
  border-radius: 20px;
}

.project-header {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #123e74;
}

.project-header .client {
  color: #1f73c9;
}

.project-header .location {
  color: #777;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.project-item img,
.project-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* ===== IMAGE POPUP (NO CONFLICT) ===== */

.img-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.img-popup.active {
  display: block;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
}

.img-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-box img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

.img-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.img-prev,
.img-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,.5);
  border: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.img-prev { left: 20px; }
.img-next { right: 20px; }

.img-prev:hover,
.img-next:hover {
  background: rgba(0,0,0,.8);
}


/* ===== Mobile Fix for Clients Page ===== */
@media (max-width: 768px) {

  .clients-container, .leaders-grid4col, 
  .clients-row, .leader-card,
  .clients-grid {
      display: block;
      width: 100%;
  }
  .clients-container img,  .leaders-grid4col,
  .clients-row img,  .leader-card,
  .clients-grid img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
  }

}

/* ===== PROJECT & CONTACT PAGE MOBILE FIX ===== */

@media (max-width: 768px){

/* Fix right shifting content */
.projects-page .container, .featured-projects-inner,
.contact-page .container{
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    overflow-x: hidden;
}

/* Prevent horizontal scroll */
.projects-page, .featured-projects-inner,
.contact-page{
    overflow-x: hidden;
}

/* Fix project tabs breaking */
.projects-tabs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.projects-tabs li{
    flex: 1 1 auto;
    text-align: center;
    margin: 5px;
}

/* Prevent tab text shrinking */
.projects-tabs a{
    white-space: normal;
    padding: 10px 12px;
}

}


@media (max-width: 768px) {

  /* make project columns stack */
  .project-grid > div {
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100% !important;
      margin-bottom: 20px;
  }

  /* keep images full width */
  .project-grid {
      width: 100%;
      height: auto;
      display: block;
  }

}
/* Featured Projects mobile fix */
@media screen and (max-width: 768px) {

.featured-projects .container {
    display: flex;
    flex-direction: column;
}

.featured-projects .project-scroll {
    order: 1;
    width: 100%;
}

.featured-projects .view-all,
.featured-projects .view-all {
    order: 2;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

}
.featured-projects .view-all,
.featured-projects .view-all {
    float: none !important;
}