:root {
  --primary: #0b63ce;      /* Blue */
  --dark: #4C6CC4;         /* Mehroon / Maroon */
  --accent: #b02a30;       /* Secondary maroon tone */
  --light-bg: #faf5f7;     /* Slight warm light bg */
  --text-main: #2d3135;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark);
  color: #f4e9ee;
  font-size: 0.85rem;
  padding: 0.45rem 0;
}

.topbar i {
  color: #fff;
  margin-right: 6px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 0.8rem;
  margin-left: 4px;
  transition: all 0.2s ease;
}

.topbar-social a:hover {
  background: #ffffff;
  color: var(--dark);
}

/* ===== NAVBAR ===== */
.main-header .navbar {
  /* background: linear-gradient(90deg, var(--dark), var(--primary)); */
  padding-block: 0.4rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff !important;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
}

.brand-text span {
  font-size: 0.8rem;
  color: #f2dde4;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  color: #ffffff;
  font-size: 1.2rem;
}

.navbar-nav .nav-link {
  color: #000;
  font-size: 1.1rem;
  padding: 0.55rem 0.9rem;
  position: relative;
  font-weight: 600;
}
.lnd-lne-icon2{
	width:184px
}
.lnd-lne-icon{
	width:25px;
	border-radius:5px;
	margin-right:5px;
}
.topp-a{
font-size: 16px;
    font-weight: 700;
    text-decoration-style: inherit;
    text-decoration: none;}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #FF581A;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: #ffffff;
  transition: width 0.22s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Main button */
.btn-main {
  background: #ffffff;
  color: var(--dark);
  border-radius: 999px;
  border: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.btn-main:hover {
  background: #f5f5f5;
  color: var(--dark);
}

/* ===== HERO / CAROUSEL ===== */
.hero-section {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Much lighter overlay so banner image is clearly visible */
  background: linear-gradient(
      115deg,
      rgba(15, 20, 35, 0.55) 0%,
      rgba(15, 20, 35, 0.25) 40%,
      rgba(15, 20, 35, 0.05) 100%
  );
}


/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 40px;
  background: radial-gradient(circle at top left, #ffffff33, transparent 60%);
  opacity: 0.45; /* was 0.85 – now softer */
  pointer-events: none;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  top: 10%;
  right: 6%;
}

.hero-shape-1.small {
  width: 200px;
  height: 200px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 8%;
  left: 5%;
  background: radial-gradient(circle at bottom right, #ffffff2e, transparent 60%);
}

.hero-shape-2.alt {
  left: auto;
  right: 9%;
  bottom: 25%;
}

.hero-content {
  position: relative;
  color: #ffffff;
  max-width: 560px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-tag {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #ffd9e4;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-main {
  background: #ffffff;
  color: var(--dark);
}

.hero-actions .btn-outline-light {
  border-radius: 999px;
  border-width: 1.4px;
}

/* Hero side card */
.hero-stats-card {
  position: relative;
  margin-top: 3rem;
  padding: 1.8rem 1.6rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.hero-stats-card h4 {
  margin-bottom: 0.7rem;
}

.hero-stats-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.hero-stats-card li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.hero-stats-card i {
  color: #ffe4ed;
  margin-right: 6px;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7));
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ===== SECTIONS GENERAL ===== */
.section {
  padding: 4.5rem 0;
}

.section-light {
  background: var(--light-bg);
}

.section-dark {
  background: radial-gradient(circle at top left, #0b63ce12 0, transparent 55%),
    #111521;
  color: #ebf0ff;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: 50px;
  font-weight: 700;
  color:#000;
  text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.3);
}

.section-heading.text-light h2 {
  color: #ffffff;
}

.section-heading p {
  margin-bottom: 0.35rem;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
 color: #000000;
    font-weight: 800;
    font-size: 21px;
  margin-bottom: 0.35rem;
}

.section-heading.text-light .section-tag {
  color: #ffc7d6;
}

.section-sub {
  max-width: 640px;
  margin-inline: auto;
  color: #6f747c;
  font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about-bullets {
  margin-top: 1.4rem;
}

.about-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.about-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(123, 16, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
}

.about-item h5 {
  margin-bottom: 0.2rem;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(123, 16, 32, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.about-card.main {
  grid-column: span 2;
  text-align: left;
  background: linear-gradient(45deg, var(--primary), var(--dark));
  color: #ffffff;
}

.about-card h3,
.about-card h4 {
  margin-bottom: 0.2rem;
  font-weight: 700;
  color: inherit;
}

/* About image on right side */
.about-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Small badge on image */
.about-image-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(123, 16, 32, 0.92);
  color: #ffffff;
  font-size: 0.9rem;
}

.about-image-badge h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

@media (max-width: 575.98px) {
  .about-image {
    height: 260px;
  }
}

/* ===== SERVICES ===== */
/* SERVICE SECTION BG remains */
.service-section-bg {
  background: linear-gradient(to bottom, #ffffff, #f7f3f8);
}

/* Outer box */
.service-box {
  background: transparent;
  border-radius: 1.4rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-8px);
}

/* Image + overlay wrapper */
.service-media {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #000;
}

/* Image size – use actual aspect ratio */
.service-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* Icon on top-left of image */
.service-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: transform 0.6s ease, background 0.3s ease, color 0.3s ease;
}

/* 360° rotation on hover */
.service-box:hover .service-icon {
  transform: rotate(360deg);
  background: var(--primary);
  color: #ffffff;
}

/* Overlay on image (text on hover) */
.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.05)
  );
  color: #ffffff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Show overlay on hover */
.service-box:hover .service-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Text inside overlay */
.service-overlay h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

/* Button on overlay */
.service-btn {
  align-self: flex-start;
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.service-btn:hover {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

/* Title below image (always visible) */
.service-title {
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 27px;
  font-weight: 600;
  color: #000;
  transition: opacity 0.25s ease;
}

/* Optional: thoda fade title on hover */
.service-box:hover .service-title {
  opacity: 0.7;
}

/* Extra image zoom on hover */
.service-box:hover .service-media img {
  transform: scale(1.06);
}


/* ===== WHY CHOOSE US ===== */
.angled-top {
  position: relative;
  overflow: hidden;
}

.angled-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 80px;
  background: #ffffff;
  transform: skewY(-3deg);
}

.why-box {
  background: #181d2a;
  border-radius: 1.1rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 99, 206, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.why-box h5 {
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.why-box p {
  color: #c4c9d6;
  font-size: 0.94rem;
}

/* ===== ACHIEVEMENTS ===== */
/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
  background: radial-gradient(circle at top left, rgba(31,122,236,0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(123,18,58,0.18), transparent 55%),
              #f5f7fb;
}

/* Base card style */
.counter-box {
  position: relative;
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(72, 76, 80, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Soft gradient border glow */
.counter-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(31,122,236,0.35), rgba(123,18,58,0.25));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* Icon base */
.counter-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  background: #f58800;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Counter number */
.counter {
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
  font-size: 1.4rem;
}

/* Card hover */
.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.counter-box:hover::before {
  opacity: 1;
}

.counter-box:hover .counter-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

/* Per-card color accents */
.counter-box-1 .counter-icon {
  background: rgba(31,122,236,0.15);
  color: #1f7aec;
}

.counter-box-2 .counter-icon {
  background: rgba(123,18,58,0.15);
  color: #7b123a;
}

.counter-box-3 .counter-icon {
  background: rgba(244,166,58,0.18);
  color: #f4a63a;
}

.counter-box-4 .counter-icon {
  background: rgba(46,204,113,0.18);
  color: #27ae60;
}

/* Text under numbers */
.counter-box p {
  font-size: 0.9rem;
  color: #5f6572;
  margin-bottom: 0;
}


/* ===== GALLERY ===== */
#galleryRow .gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

#galleryRow .gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(123, 16, 32, 0.9)
  );
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.8rem;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: #ffffff;
  font-size: 0.9rem;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1050;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #10131a;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 0.75rem;
  object-fit: contain;
}

.gallery-lightbox-caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #e3e7f5;
  text-align: center;
}

.gallery-lightbox-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.gallery-lightbox-close:hover {
  transform: scale(1.1);
  color: #f4a63a;
}

/* =========================================================
   STAINLESS & MILD STEEL GALLERY (Improved Design)
   ========================================================= */

#steelGallery {
  padding: 4.5rem 0;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #faf4f6
  );
}

/* Gallery items */
#steelGalleryRow .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Zoom effect */
#steelGalleryRow .gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover: zoom + lift */
#steelGalleryRow .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

#steelGalleryRow .gallery-item:hover img {
  transform: scale(1.07);
}

/* Overlay */
#steelGalleryRow .gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.8rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  
  /* Modern maroon + black gradient */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(123, 16, 32, 0.92)
  );
}

/* Show overlay on hover */
#steelGalleryRow .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Text inside overlay */
#steelGalleryRow .gallery-overlay span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  /* Soft glow look */
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Icon inside overlay */
#steelGalleryRow .gallery-overlay span i {
  font-size: 1rem;
  color: #fff;
}




/* ===== CONTACT SECTION BACKGROUND ===== */
.contact-section {
  background: linear-gradient(135deg, #f5f7fa, #e7eef7, #f5f7fa);
  position: relative;
  padding: 5rem 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(11,99,206,0.08), transparent 60%),
                    radial-gradient(circle at 80% 80%, rgba(123,16,32,0.08), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

/* ===== CONTACT BOXES ===== */
.contact-info-box,
.contact-form-box {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.4rem;
  padding: 2rem 1.7rem;
  border: 1px solid rgba(11, 99, 206, 0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.contact-info-box:hover,
.contact-form-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}

/* ===== FORM INPUTS ===== */
.contact-form-box .form-control {
  border-radius: 0.9rem;
  border: 1px solid rgba(11, 99, 206, 0.25);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-box .form-control:focus {
  border-color: #0b63ce;
  box-shadow: 0 0 10px rgba(11, 99, 206, 0.35);
}

/* CONTACT LIST ICONS */
.contact-list i {
  color: var(--primary);
  margin-right: 0.55rem;
  font-size: 1rem;
}


/* ===== FOOTER ===== */
.footer {
  background: #10131a;
  color: #ced4e2;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer h5 {
  color: #ffffff;
    font-size: 25px;
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.footer p {
  font-size: 0.93rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 16px;
  text-decoration: none;
  color: #c0c6d4;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact li {
  font-size:  16px;
  margin-bottom: 0.4rem;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 0.55rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.85rem;
  margin-right: 4px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.7rem;
  padding-top: 0.8rem;
  font-size: 0.86rem;
  color: #8b92a2;
}

/* ===== FLOATING BUTTONS ===== */
.fab-btn {
  position: fixed;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: fabGlow 1.6s infinite alternate;
}

.fab-whatsapp {
  bottom: 24px;
  background: #25d366;
}

.fab-call {
  bottom: 90px;
  background: var(--primary);
}

.fab-btn:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

@keyframes fabGlow {
  from {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.55);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal-up,
.reveal-right {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-slide {
    min-height: 70vh;
  }

  .hero-stats-card {
    display: none;
  }

  .topbar .container {
    justify-content: center;
  }

  .about-grid {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    text-align: center;
  }

  .topbar .container {
    flex-direction: column;
    gap: 0.25rem;
  }

  #galleryRow .gallery-item img {
    height: 200px;
  }
}












/* ===== OUR PROJECTS SECTION ===== */
.projects-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06));
}

.projects-heading {
  font-weight: 700;
  color: var(--dark);
}

.projects-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #6c7380;
}

.projects-wrapper {
  position: relative;
}

.project-slide {
  padding: 1.5rem 0;
}

.project-image-wrap {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.project-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.carousel-item.active .project-image-wrap img {
  transform: scale(1.06);
}

/* Status pill */
.project-pill {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.status-completed {
  background: rgba(46, 204, 113, 0.9);
}

.status-ongoing {
  background: rgba(241, 196, 15, 0.9);
}

/* Project content card */
.project-card {
  background: #ffffff;
  border-radius: 1.4rem;
  /* padding: 1.8rem 1.6rem; */
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  position: relative;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.project-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.project-meta {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.project-meta li {
  margin-bottom: 0.25rem;
}

.project-desc {
  font-size: 0.9rem;
  color: #5c6473;
}

/* Custom number indicators */
/* FIX — indicators showing clearly */
.project-indicators {
  position: relative;
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  z-index: 50; /* makes indicators visible over everything */
}

/* Indicator buttons */
.project-indicators button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #ffffff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 1 !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* On hover & active */
.project-indicators button.active,
.project-indicators button:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}


/* Carousel arrows tweak (optional) */
#projectsCarousel .carousel-control-prev-icon,
#projectsCarousel .carousel-control-next-icon {
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

@media (max-width: 991.98px) {
  .project-image-wrap img {
    height: 260px;
  }

  .project-card {
    margin-top: 0.5rem;
  }
}



/* ===== PAGE BANNER ===== */
.page-banner {
  height: 48vh;
  background: url("../img/banner-bg.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(0.5px);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-sub {
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
}

.breadcrumb-item a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-item.active {
  color: #fff;
}



/* ===== CTA SECTION ===== */
.cta-section {
  padding: 3rem 0;
  position: relative;
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.2), rgba(123, 18, 58, 0.22));
  border-top: 1px solid rgba(123, 18, 58, 0.12);
  border-bottom: 1px solid rgba(11, 99, 206, 0.12);
}

/* Soft geometric pattern overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.35),
      transparent 80%
    ),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.35), transparent 80%);
  opacity: 0.18;
}

.cta-section h3 {
  font-weight: 700;
  color: var(--dark);
}

.cta-section p {
  color: #4b4f55;
  max-width: 70%;
}

/* Button hover style upgrade */
.cta-section .btn-main {
  transition: all .3s ease;
}

.cta-section .btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 99, 206, 0.25),
              0 0 12px rgba(123, 18, 58, 0.25);
}


/* ===== CTA SECTION ===== */
.cta-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(11, 99, 206, 0.90), rgba(123, 16, 32, 0.90));
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  color: #fff;
}

/* Decorative floating effects */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: float 6s infinite ease-in-out alternate;
}

.cta-section::before {
  top: -40px;
  left: -30px;
}

.cta-section::after {
  bottom: -50px;
  right: -40px;
}
.why-u{
	border:1px solid #E1E1E1;
	margin-bottom:30px;
	padding:30px;
	min-height:288px;
}
.why-u h4{
	font-weight:600;
	margin-bottom: 30px;
}
.why-u ul {
	list-style:none;
	padding-left: 10px;
}
.why-u ul li{
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	color:#212d45;
	font-size:22px;
	
    font-weight: 600;
    margin-bottom: 10px;
}
@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(25px);
  }
}




.footer-links i {
  margin-right: 8px;
  color: var(--primary);
  font-size: 0.85rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links li:hover i {
  color: var(--dark);
  transform: translateX(4px);
}
.star-prj{
	background:#FF581A;
	padding:6px 16px;
}
.cu-lg-wdth{
	width:200px;
}

.success-section{
  padding:60px 0;
}

/* Left Orange Box */
.left-box{
  background:#f7931e;
  color:#fff;
  padding:70px 60px;
  height:100%;
}
.left-box span{
  font-weight:600;
  display:block;
  margin-bottom:15px;
}
.left-box h2{
  font-size:44px;
  font-weight:700;
  line-height:1.3;
  margin-bottom:25px;
}
.left-box p{
  font-size:18px;
  /* line-height:1.7; */
  font-weight: 500;
}
.work-btn{
  background:#1f2f46;
  color:#fff;
  padding:12px 30px;
  border:none;
  margin-top:30px;
  font-weight:600;
}

/* Counter Boxes */
.counter-box{
  border:1px solid #e5e5e5;
  padding:58px 30px;
  height:100%;
  text-align:center;
}
.counter-box h3{
  font-size:52px;
  font-weight:700;
  margin-bottom:10px;
}
.counter-box p{
  font-size:16px;
  color:#555;
  margin-bottom:0;
}

.cu-fnt-cuntr{
	font-size: 77px;
}
.cu-fnt-19{
	font-size:19px!important;
	color:#000!important;
}

.cupr-p{
	text-align:center;
	font-size: 18px;
    font-weight: 500;
color: #4a4848;
}
.project-section {
  padding: 60px 0;
}

.project-card {
  position: relative;
  overflow: hidden;
  height: 420px;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #f7931e;
}

.project-overlay h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-overlay p {
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 25px;
}

.view-btn {
  background: #f7931e;
  color: #fff;
  padding: 10px 28px;
  font-weight: 600;
  border: none;
  width: fit-content;
}

.view-btn:hover {
  background: #e68412;
}
.practice-section {
  min-height: 500px;
}

.slider-img {
  height: 500px;
  object-fit: cover;
}

/* RIGHT SIDE OVERLAY */
.overlay-wrap {
  position: relative;
  height: 700px;
}

.overlay-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  inset: 0;
  background: rgba(245, 157, 30, 0.9);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay-content h2 {
  font-weight: 700;
}

.overlay-content ul {
  list-style: none;
  padding: 0;
}

.overlay-content ul li {
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.overlay-content ul li i {
  font-size: 22px;
  margin-right: 12px;
  color: #0d1b2a;
}
.flw-p{
	font-weight: 600;
    font-size: 18px;
}
.flw-p-ul li{
	font-weight:600;
	margin-bottom:15px;
	font-size:22px;
}
.we-work img{
	width:100%;
}
.project-card {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

/* Text Overlay */
.project-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
}

.project-content h4 {
  margin: 0;
  
  font-weight: 700;
    font-size: 29px;
}

.project-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* LEFT FORM */
.quote-box {
  background: #1f2f4a;
  padding: 60px 50px;
  color: #fff;
  height: 100%;
}

.quote-box h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.quote-box p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.quote-box .form-control {
  border-radius: 4px;
  padding: 12px 15px;
  margin-bottom: 18px;
}

.quote-box textarea {
  resize: none;
}

.btn-orange {
  background: #ff8c00;
  color: #fff;
  padding: 12px 35px;
  border: none;
  font-weight: 600;
}

.btn-orange:hover {
  background: #e57c00;
}

/* FAQ SECTION */
.faq-title {
  color: #ff8c00;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1f2f4a;
  margin-bottom: 30px;
}

.accordion-button:not(.collapsed) {
  background: none;
  color: #1f2f4a;
  box-shadow: none;
  font-weight: 600;
}

.accordion-button {
  font-weight: 600;
}

.accordion-item {
  border: 1px solid #e1e1e1;
  margin-bottom: 15px;
}
.brand-section {
  /* background: #f8f9fa; */
  padding: 50px 0;
}

.brand-slider {
  overflow: hidden;
  position: relative;
}

.brand-track {
  display: flex;
  width: calc(350px * 15);
  animation: scroll 25s linear infinite;
}

.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

.brand-logo {
  width: 350px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
	border: 1px solid #dbd8d8;
  max-width: 100%;
  /*max-height: 70px;
   filter: grayscale(100%); */
  transition: 0.3s;
}

.brand-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.or-msn{
	font-size: 31px;
    font-weight: 600;
}
.or-msn-p{
	font-size: 20px!important;
    font-weight: 500;
}
.orgne{
	color:#f58800!important
}
.tx-jf{
	text-align:justify;
}
.cu-bder-rfht{
	border-right:4px solid #f5f5f5
}
.cuab-pg-bg{
	background:#f5f5f5
}
.cu-ab-bder{
	border:1px solid #000;
	margin-top:15px;
	margin-bottom:15px;
}
.cu-ab-mb-30{
	/* margin-bottom:30px; */
}
.left-section{
      background: linear-gradient(rgba(13,27,47,0.85), rgba(13,27,47,0.85)), url('ab1.webp');
      background-size: cover;
      background-position: center;
      color:#fff;
      min-height:100%;
      padding:80px 60px;
    }
    .left-section .tag{
      color:#ff9800;
      font-weight:600;
      letter-spacing:1px;
    }
    .right-section{
      background: linear-gradient(rgba(255,152,0,0.9), rgba(255,152,0,0.9)), url('ab2.webp');
      background-size: cover;
      background-position: center;
      padding:80px 60px;
      color:#fff;
    }
    .why-list li{
      list-style:none;
      margin-bottom:14px;
      font-size:20px;
      display:flex;
      align-items:flex-start;
      gap:12px;
	  font-weight: 600;
    }
    .why-list li span{
      font-size:18px;
      line-height:1;
    }

.tm-scnt{
	background:#f5f5f5;
	padding-top:40px;
	padding-bottom:40px;
}
.tam{
	text-align:center;
}
.tam h3{
	margin-top:30px;
	margin-bottom:20px;
	font-weight:700
}
.tam p{
	font-size:17px;
	font-weight:500
}
.tam img{
	width:380px;
}

.tx-cntr{
text-align:center}
.cu-bld{
	margin-top:30px;
	    font-size: 26px;
    font-weight: 800;
}
.cu-pg-pge-mb-30{
	margin-bottom:30px
}
.cu-ct-p-h{
	    font-size: 25px;
    font-weight: 700;
}
.gt-qute{
	font-size: 1.3rem;
	
}
/* Responsive */
@media (max-width: 768px) {
  .project-card {
    height: 320px;
  }
  .project-overlay h2 {
    font-size: 28px;
  }
}

/* Responsive */
@media(max-width:768px){
  .left-box{
    padding:40px 30px;
  }
  .left-box h2{
    font-size:32px;
  }
}

@media(max-width:500px)
{
	.tam img{
	width:280px;
}
}


