/* ============================================================
   GND Tiles – Premium Corporate CSS
   Author: GND Tiles Digital
   ============================================================ */

/* --- Root Variables --- */
:root {
  --primary: #074F56;
  /* Deep teal – water, trust */
  --primary-dark: #053a40;
  --accent: #10B3A4;
  /* Secondary teal */
  --accent-light: #e0f7f6;
  --gold: #c9a84c;
  /* Premium gold touch */
  --dark: #0f1923;
  --text: #2c3e50;
  --muted: #6c757d;
  --light-bg: #f4f8fb;
  --border: #dde8ef;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(26, 95, 122, 0.08);
  --shadow-md: 0 6px 30px rgba(26, 95, 122, 0.12);
  --shadow-lg: 0 12px 50px rgba(26, 95, 122, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.35s ease;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

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

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.3;
}

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

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

/* --- Utility --- */
.text-accent {
  color: var(--accent) !important;
}

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

.section-pad {
  padding: 80px 0;
}

/* --- Section Typography --- */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 4px 12px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
}

/* --- Image Placeholders --- */
.img-placeholder {
  background: linear-gradient(135deg, #dde8ef 0%, #c8dce8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.placeholder-label {
  text-align: center;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.placeholder-label i {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}

.small-label {
  font-size: 11px;
}

.small-label i {
  font-size: 1.3rem;
}

/* --- Buttons --- */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 10px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 95, 122, 0.3);
}

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.top-bar-link:hover {
  color: var(--accent);
}

.social-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.navbar {
  padding: 14px 0;
}

/* Logo */
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: var(--accent-light);
}

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

.hero-slide {
  height: 92vh;
  min-height: 560px;
  background-color: #053a40;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 8px;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
}

.carousel-indicators .active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   MARQUEE TICKER
============================================================ */
.marquee-strip {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 3px solid var(--accent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 40px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.marquee-item i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-img-wrap {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-badge {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.badge-txt {
  font-size: 11px;
  opacity: 0.85;
}

.about-point {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--light-bg);
  border-radius: 6px;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
  transition: height 0.4s ease;
}

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

.why-card:hover::before {
  height: 100%;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
}

.why-card h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-featured {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.service-featured:hover {
  transform: translateY(-18px);
}

.service-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: rgba(26, 95, 122, 0.12);
  line-height: 1;
  z-index: 1;
}

.service-featured .service-num {
  color: rgba(26, 95, 122, 0.2);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img.img-placeholder {
  border-radius: 0;
}

.service-img.img-placeholder:hover .placeholder-label {
  transform: scale(1.05);
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-desc {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: 20px;
}

.btn-service {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  font-weight: 600;
  font-size: 13px;
  width: fit-content;
  transition: var(--transition);
}

.btn-service:hover {
  background: var(--primary);
  color: var(--white);
}

.service-featured .btn-service {
  background: var(--primary);
  color: var(--white);
}

.service-featured .btn-service:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ============================================================
   COUNTER SECTION
============================================================ */
.counter-section {
  padding: 80px 0;
  position: relative;
  background: var(--primary);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #0d8a7d);
  overflow: hidden;
}

.counter-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.counter-item {
  position: relative;
  z-index: 2;
}

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  line-height: 1;
}

.counter-plus {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}

.counter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

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

.process-step {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-connector {
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  top: 14px;
  z-index: 0;
}

.process-card.last-step .process-connector {
  display: none;
}

@media (max-width: 991px) {
  .process-connector {
    display: none;
  }
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 20px auto 18px;
  transition: var(--transition);
}

.process-card:hover .process-icon {
  background: var(--primary);
  color: var(--white);
}

.process-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-item {
  height: 220px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.gallery-item .img-placeholder {
  border-radius: var(--radius-sm);
  height: 100%;
  width: 100%;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 95, 122, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
  color: var(--white);
  z-index: 2;
}

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

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

/* ============================================================
   MILESTONES TIMELINE
============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  flex: 1;
}

.timeline-content h6 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.timeline-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    padding: 0 0 0 50px !important;
  }

  .timeline-marker {
    left: 0 !important;
    transform: none;
    font-size: 10px;
    padding: 4px 10px;
  }

  .timeline-content {
    width: 100%;
  }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--accent-light);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-indicators {
  position: static;
  margin-top: 24px;
}

.testimonial-indicators button {
  background: var(--border) !important;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none !important;
}

.testimonial-indicators .active {
  background: var(--primary) !important;
}

/* ============================================================
   FAQ
============================================================ */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark);
  background: var(--white);
  box-shadow: none;
  padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--accent-light);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  color: var(--primary);
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: var(--muted);
  padding: 16px 22px 20px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-info {
  padding-top: 4px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
}

.contact-info-item a:hover {
  color: var(--primary);
}

.social-icon-lg {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.social-icon-lg:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-wrap h5 {
  font-size: 1.2rem;
  color: var(--dark);
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: var(--light-bg);
}

.custom-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
  background: var(--white);
}

.custom-input::placeholder {
  color: #aab5be;
}

.map-wrap {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  height: 100%;
  min-height: 380px;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}

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

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.fab-btn {
  position: fixed;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.fab-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.fab-whatsapp {
  left: 24px;
  background: #25D366;
  color: var(--white);
}

.fab-whatsapp:hover {
  color: var(--white);
}

.fab-call {
  right: 24px;
  background: var(--primary);
  color: var(--white);
}

.fab-call:hover {
  color: var(--white);
  background: var(--primary-dark);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

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

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Delay classes via data attr handled in JS */

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .section-pad {
    padding: 60px 0;
  }

  .hero-slide {
    height: 75vh;
  }

  .about-img-float {
    width: 120px;
    height: 120px;
  }

  .service-featured {
    transform: none;
  }

  .service-featured:hover {
    transform: translateY(-8px);
  }
}
.cu-lg-wdth{
	width:250px;
}
@media (max-width: 767px) {
	.cu-mb-ds-nn{
		Display:none!important
	}
  .section-pad {
    padding: 50px 0;
  }

  .hero-slide {
    height: auto;
    min-height: 85vh;
    padding: 80px 0;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .top-bar .col-md-5 {
    justify-content: flex-start !important;
  }

  .about-img-wrap {
    padding-bottom: 80px;
    padding-right: 80px;
  }

  .gallery-item {
    height: 160px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .counter-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.75rem;
  }

  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .about-badge {
    right: 10px;
  }
}
@media(max-width:374px)
{
	.cu-lg-wdth {
    width: 221px;
}
}
/* ============================================================
   IMAGE ADDITIONS – Logo, About, Services, Gallery
============================================================ */

/* --- LOGO IMAGE --- */
.logo-icon-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}
.logo-fallback {
  display: none;
  width: 44px;
  height: 44px;
}

/* Footer logo */
.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

/* --- ABOUT IMAGES --- */
.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.about-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.about-img-float {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-float-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* --- SERVICE IMAGES --- */
.service-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #dde8ef 0%, #c8dce8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.service-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-real-img {
  transform: scale(1.06);
}

/* --- GALLERY IMAGES --- */
.gallery-item {
  height: 220px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: linear-gradient(135deg, #dde8ef 0%, #c8dce8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gallery-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  position: absolute;
  inset: 0;
}
.gallery-item:hover .gallery-real-img {
  transform: scale(1.08);
}
.gallery-item.img-placeholder {
  background: linear-gradient(135deg, #dde8ef 0%, #c8dce8 100%);
}
