/* ========================================
   Soujanya Global Private Limited
   Brand: Navy Blue + Forest Green
   ======================================== */

:root {
  --brand-blue: #0a1f4d;
  --brand-blue-dark: #061536;
  --brand-blue-mid: #123a7a;
  --brand-green: #1a8f4a;
  --brand-green-light: #22a855;
  --brand-green-soft: #e8f7ee;
  --text-dark: #1a2332;
  --text-muted: #5a6577;
  --bg-light: #f4f7fb;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(10, 31, 77, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 31, 77, 0.12);
  --radius: 14px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.brand-font {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--brand-blue-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.55rem 0;
}

.top-bar a {
  color: var(--white);
}

.top-bar a:hover {
  color: var(--brand-green-light);
}

.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-left: 6px;
  font-size: 0.8rem;
  color: var(--white);
}

.top-bar .social-icons .fb { background: #1877f2; }
.top-bar .social-icons .ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.top-bar .social-icons .yt { background: #ff0000; }
.top-bar .social-icons .li { background: #0a66c2; }

/* ---------- Navbar ---------- */
.main-navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  overflow: visible;
}

.main-navbar .container,
.main-navbar .navbar-collapse,
.main-navbar .navbar-nav,
.main-navbar .nav-item {
  overflow: visible;
}

.main-navbar .navbar-toggler {
  border-color: rgba(10, 31, 77, 0.25);
}

.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 31, 77, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.navbar-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  line-height: 1.15;
}

.brand-text .name {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand-blue);
  letter-spacing: 0.5px;
}

.brand-text .name span {
  color: var(--brand-green);
}

.brand-text .sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  color: var(--brand-blue) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-green) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2.5px;
  background: var(--brand-green);
  border-radius: 2px;
}

/* Contact form honeypot — invisible to humans, bots often fill it */
.contact-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Contact form submit loader */
.contact-form-wrap {
  position: relative;
}

.contact-form-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: inherit;
  animation: contactLoaderFade 0.25s ease;
}

.contact-form-loader[hidden] {
  display: none !important;
}

.contact-loader-card {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}

.contact-loader-card strong {
  display: block;
  margin-top: 0.85rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  color: var(--brand-blue);
}

.contact-loader-card p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-spinner {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
}

.contact-spinner span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green);
  animation: contactBounce 0.9s ease-in-out infinite;
}

.contact-spinner span:nth-child(1) {
  background: var(--brand-blue);
  animation-delay: 0s;
}

.contact-spinner span:nth-child(2) {
  background: var(--brand-green);
  animation-delay: 0.15s;
}

.contact-spinner span:nth-child(3) {
  background: var(--brand-blue-mid);
  animation-delay: 0.3s;
}

.btn-gradient.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

.btn-gradient .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

@keyframes contactBounce {
  0%, 80%, 100% { transform: translateY(0) scale(0.9); opacity: 0.55; }
  40% { transform: translateY(-7px) scale(1.08); opacity: 1; }
}

@keyframes contactLoaderFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.btn-call {
  background: var(--brand-blue);
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 6px 18px rgba(10, 31, 77, 0.25);
}

.btn-call:hover {
  background: var(--brand-green);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.btn-login {
  background: var(--brand-green);
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.15rem;
  font-weight: 600;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 6px 18px rgba(26, 143, 74, 0.25);
}

.btn-login:hover {
  background: var(--brand-blue);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.btn-brand {
  background: var(--brand-blue);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: var(--transition);
}

.btn-brand:hover {
  background: var(--brand-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-brand .arrow {
  width: 32px;
  height: 32px;
  background: var(--brand-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-brand:hover .arrow {
  background: var(--brand-blue);
}

.btn-gradient {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
}

.btn-gradient:hover {
  filter: brightness(1.08);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Hero Home ---------- */
.hero-home {
  background: linear-gradient(135deg, #eef3fa 0%, #f8fafc 50%, #eef8f1 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-home h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-home h1 .green {
  color: var(--brand-green);
}

.hero-home .lead {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.trust-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-green-soft);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  text-align: center;
}

.hero-visual .main-img {
  max-width: 100%;
  border-radius: 20px;
  animation: floatY 4s ease-in-out infinite;
}

.hero-visual .float-badge {
  position: absolute;
  width: 90px;
  bottom: 10%;
  left: 5%;
  animation: floatY 3.5s ease-in-out infinite reverse;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--brand-blue-dark) 0%, var(--brand-blue-mid) 55%, #0d4a2e 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-hero h1 span {
  color: var(--brand-green-light);
}

.page-hero p {
  opacity: 0.9;
  max-width: 480px;
}

.breadcrumb-nav {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav .current {
  color: var(--brand-green-light);
}

.page-hero-light {
  background: linear-gradient(90deg, #dce8f8 0%, #eef4fc 45%, transparent 45%),
    linear-gradient(135deg, #c8daf0, #e8f0fa);
  padding: 0;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

.page-hero-light .hero-text {
  padding: 3.5rem 0;
}

.page-hero-light h1 {
  color: var(--brand-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.page-hero-light .breadcrumb-nav a {
  color: var(--text-muted);
}

.page-hero-light .breadcrumb-nav .current {
  color: var(--brand-green);
}

.page-hero-light .hero-img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  width: 100%;
}

/* Gallery slant hero */
.gallery-hero {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  min-height: 280px;
  overflow: hidden;
}

.gallery-hero-text {
  background: var(--brand-blue);
  color: var(--white);
  padding: 3rem 2rem 3rem 0;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
}

.gallery-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.gallery-hero-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 1rem 0 1rem 1rem;
}

.gallery-hero-collage .strip {
  border-radius: 8px;
  overflow: hidden;
  transform: skewX(-6deg);
  background: var(--bg-light);
}

.gallery-hero-collage .strip img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transform: skewX(6deg) scale(1.15);
}

/* ---------- Section Titles ---------- */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand-blue);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.section-title h2 span {
  color: var(--brand-green);
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--brand-blue);
  position: relative;
}

.section-title h2::before {
  box-shadow: 8px 0 0 var(--brand-green);
}

.section-title h2::after {
  box-shadow: -8px 0 0 var(--brand-green);
}

.section-pad {
  padding: 4rem 0;
}

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

/* ---------- 5-column service grid ---------- */
.service-grid > [class*="col-"] {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 768px) {
  .service-grid > [class*="col-"] {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (min-width: 992px) {
  .service-grid > [class*="col-"] {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid #e6ebf2;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.service-card:hover {
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 143, 74, 0.35);
}

.service-card .icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #eef4fc, #e8f7ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--brand-blue);
}

.service-card:hover .icon-wrap {
  background: linear-gradient(145deg, var(--brand-blue), var(--brand-green));
  color: var(--white);
}

.service-card h5 {
  font-size: 0.9rem;
  color: var(--brand-blue);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Feature Strip ---------- */
.feature-strip {
  background: var(--brand-blue);
  color: var(--white);
  padding: 2rem 0;
}

.feature-item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  border-right: 1px dashed rgba(255, 255, 255, 0.25);
}

.feature-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.feature-item h6 {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.feature-item p {
  font-size: 0.75rem;
  opacity: 0.85;
  margin: 0;
}

.feature-strip-light {
  background: var(--white);
  border-top: 1px solid #eef0f4;
  border-bottom: 1px solid #eef0f4;
  padding: 2.5rem 0;
}

.feature-strip-light .feature-item:not(:last-child)::after {
  border-right-color: #dde3ec;
}

.feature-strip-light .icon {
  background: transparent;
  color: var(--brand-blue);
  font-size: 1.6rem;
  width: auto;
  height: auto;
}

.feature-strip-light h6 {
  color: var(--brand-blue);
}

.feature-strip-light p {
  color: var(--text-muted);
  opacity: 1;
}

/* ---------- Contact Footer Bar ---------- */
.contact-bar {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue) 50%, #0a3d28);
  color: var(--white);
  padding: 1.75rem 0;
  border-top: 3px solid var(--brand-green);
}

.contact-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.5rem;
  text-align: left;
}

.contact-bar-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-bar-item .icon.green {
  background: var(--brand-green);
}

.contact-bar-item small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-bar-item strong {
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-bar .col-md-4:not(:last-child) .contact-bar-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------- About ---------- */
.about-welcome h6 {
  color: var(--brand-green);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-welcome h2 {
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.about-welcome h2 span {
  color: var(--brand-green);
}

.about-visual {
  background: var(--brand-blue);
  border-radius: 20px;
  padding: 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual img {
  max-width: 280px;
  border-radius: 12px;
  opacity: 0.95;
}

.about-visual-rich {
  padding: 1.5rem;
  min-height: 380px;
  flex-direction: column;
  gap: 1.25rem;
}

.about-visual-rich img {
  max-width: 100%;
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.about-tags span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.about-tags span i {
  color: var(--brand-green-light);
}

.section-title.text-start h2::before,
.section-title.text-start h2::after {
  display: none;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--brand-blue);
  transition: var(--transition);
}

.info-card.green {
  border-top-color: var(--brand-green);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.info-card.green .icon {
  color: var(--brand-green);
  background: var(--brand-green-soft);
}

.info-card h5 {
  font-size: 0.95rem;
  color: var(--brand-blue);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-box .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--brand-blue);
}

.stat-box:nth-child(even) .icon {
  color: var(--brand-green);
}

.stat-box h3 {
  font-size: 1.75rem;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.stat-box p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--brand-blue);
  color: var(--brand-blue);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--white);
}

.gallery-item {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item > a {
  display: block;
  color: inherit;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10, 31, 77, 0.8));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

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

.gallery-item.hide {
  display: none;
}

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-card .card-head {
  padding: 1rem 1.25rem;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-card .card-head.blue {
  background: var(--brand-blue);
}

.contact-card .card-head.green {
  background: var(--brand-green);
}

.contact-card .card-body {
  padding: 1.5rem;
}

.contact-info-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-row .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info-row .icon.blue { background: var(--brand-blue); }
.contact-info-row .icon.green { background: var(--brand-green); }

.contact-info-row h6 {
  margin-bottom: 0.2rem;
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.contact-info-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  word-break: break-word;
}

.form-control-icon {
  position: relative;
  margin-bottom: 1rem;
}

.form-control-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-blue);
  z-index: 2;
}

.form-control-icon textarea + i,
.form-control-icon.textarea i {
  top: 18px;
  transform: none;
}

.form-control-icon .form-control {
  padding-left: 2.5rem;
  border-radius: 10px;
  border: 1.5px solid #dce3ee;
  min-height: 48px;
}

.form-control-icon select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230a1f4d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px;
  padding-right: 2.2rem;
}

.form-control-icon .form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 0.2rem rgba(26, 143, 74, 0.15);
}

.social-follow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  color: var(--white) !important;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.social-follow-btn.fb { background: #1877f2; }
.social-follow-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-follow-btn.yt { background: #ff0000; }
.social-follow-btn.li { background: #0a66c2; }

.social-follow-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Login ---------- */
.login-page {
  min-height: calc(100vh - 200px);
}

.login-left {
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue-mid));
  color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.login-left h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.login-left h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.login-left h3 span {
  color: var(--brand-green-light);
}

.login-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.login-service-grid .item {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.login-service-grid .item .circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.15);
}

.login-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.login-card .logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 50%;
}

.login-card h4 {
  text-align: center;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.login-card h4 span {
  color: var(--brand-green);
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-blue-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 0;
  font-size: 0.88rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--brand-green-light);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white) !important;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.footer-brand small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.75;
}

.footer-about {
  margin: 0 0 1.1rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
}

.footer-social a:hover {
  background: var(--brand-green);
}

.footer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 1rem;
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-contact a {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  line-height: 1.45;
}

.footer-contact i {
  color: var(--brand-green-light);
  margin-top: 0.2rem;
  width: 14px;
  text-align: center;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
}

/* ---------- SERVICES dropdown ---------- */
.nav-item-services {
  position: relative;
}

.nav-item-services > .nav-link.dropdown-toggle {
  color: var(--brand-blue) !important;
}

.nav-item-services > .nav-link.dropdown-toggle:hover,
.nav-item-services > .nav-link.dropdown-toggle.active,
.nav-item-services.show > .nav-link.dropdown-toggle {
  color: var(--brand-green) !important;
}

@media (min-width: 992px) {
  .nav-item-services:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* ---------- Sticky WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.24);
  z-index: 1100;
}

.whatsapp-float:hover {
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.02);
}

/* ---------- Dropdown nav ---------- */
.main-navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 0.55rem;
  min-width: 240px;
  z-index: 1080;
  background: #fff;
}

.main-navbar .dropdown-menu-services {
  max-height: min(70vh, 560px);
  overflow-y: auto;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .main-navbar .dropdown-menu-services {
    position: absolute;
    top: 100%;
    left: 0;
    inset: auto auto auto 0;
    transform: none !important;
    margin-top: 0.15rem;
  }
}

.main-navbar .dropdown-header {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-green) !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0.15rem 0;
}

.main-navbar .dropdown-item {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-blue) !important;
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  background: transparent;
  white-space: normal;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus,
.main-navbar .dropdown-item:active {
  background: var(--brand-green-soft) !important;
  color: var(--brand-green) !important;
}

.main-navbar .dropdown-divider {
  margin: 0.35rem 0.4rem;
  opacity: 0.2;
}

/* ---------- Banner / service detail pages ---------- */
.banner-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--brand-blue-dark);
}

.banner-hero .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.banner-hero .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 21, 54, 0.78) 0%, rgba(6, 21, 54, 0.42) 55%, rgba(6, 21, 54, 0.22) 100%);
}

.banner-hero .content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 3.5rem 0;
}

.banner-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.banner-hero h1 span {
  color: var(--brand-green-light);
}

.banner-hero p {
  max-width: 540px;
  opacity: 0.92;
}

.banner-img-block {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.banner-img-block img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  max-height: 420px;
}

.service-pillars .pillar-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e6ebf2;
  transition: var(--transition);
}

.service-pillars .pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-pillars .pillar-head {
  padding: 0.85rem 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.service-pillars .pillar-head.blue { background: var(--brand-blue); }
.service-pillars .pillar-head.green { background: var(--brand-green); }
.service-pillars .pillar-head.mid { background: var(--brand-blue-mid); }

.service-pillars .pillar-body {
  padding: 1.25rem;
}

.service-pillars .pillar-body ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-pillars .pillar-body li {
  margin-bottom: 0.4rem;
}

.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-check-list li i {
  color: var(--brand-green);
  margin-top: 0.2rem;
}

.service-image-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid #e8edf5;
  transition: var(--transition);
}

.service-image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.service-image-card .body {
  padding: 1.15rem 1.25rem 1.4rem;
}

.service-image-card h5 {
  color: var(--brand-blue);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-image-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.category-card {
  display: block;
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e6ebf2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 143, 74, 0.35);
}

.category-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-blue), var(--brand-green));
}

.category-card h5 {
  color: var(--brand-blue);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.home-hero-visual img.main-img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .nav-link.active::after {
    display: none;
  }

  .btn-call {
    margin-top: 0.75rem;
  }

  .navbar-actions {
    width: 100%;
    margin-top: 0.5rem;
  }

  .navbar-actions .btn-call,
  .navbar-actions .btn-login {
    margin-top: 0;
    flex: 1;
    justify-content: center;
  }

  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .gallery-hero-text {
    clip-path: none;
    padding: 2.5rem 1rem;
  }

  .gallery-hero-collage {
    display: none;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .contact-bar .col-md-4:not(:last-child) .contact-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
  }

  .page-hero-light {
    background: linear-gradient(135deg, #c8daf0, #e8f0fa);
  }

  .banner-hero {
    min-height: 280px;
  }

  .banner-hero .banner-overlay {
    background: linear-gradient(180deg, rgba(6, 21, 54, 0.88), rgba(6, 21, 54, 0.72));
  }
}

@media (max-width: 575.98px) {
  .top-bar .container > div:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem !important;
  }

  .top-bar .container > div:first-child a {
    font-size: 0.8rem;
    word-break: break-word;
  }

  .top-bar .social-label {
    display: none;
  }

  .navbar-brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text .name {
    font-size: 0.8rem;
  }

  .brand-text .sub {
    display: none;
  }

  .trust-row {
    gap: 0.75rem;
  }

  .contact-bar-item {
    align-items: flex-start;
  }

  .contact-bar-item strong {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .contact-info-row {
    gap: 0.75rem;
  }

  .contact-info-row p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .map-wrap {
    height: 280px;
  }

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

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
    font-size: 1.7rem;
  }

  .service-image-card img {
    height: 160px;
  }
}
