/* ===========================
   THEME VARIABLES
   =========================== */
:root {
  --primary: #1da6d8;          /* sky blue */
  --primary-soft: #e3f7fd;
  --secondary: #b23343;        /* light maroon */
  --secondary-soft: #fde8eb;
  --dark: #1f2937;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-body: #ffffff;
  --bg-light-alt: #f5f7fb;
  --footer-bg: #0b1220;
  --footer-border: #151b2c;
  --footer-text: #e5e7eb;
  --footer-muted: #9ca3af;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* ===========================
   GLOBAL RESET
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
}

p {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

a {
  text-decoration: none;
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: linear-gradient(90deg, var(--secondary), #7c2d3a);
  color: #ffffff;
  font-size: 0.85rem;
}

.top-bar a {
  color: #fdfdfd;
}

.top-bar a:hover {
  opacity: 0.85;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.social-icon:hover {
  background-color: #ffffff;
  color: var(--secondary);
}

/* ===========================
   NAVBAR
   =========================== */

   .brand-logo-img {
 /* height: 48px;   */     /* Adjust size as needed */
  width: 195px;
  object-fit: contain;
}



.navbar {
  padding-block: 0.7rem;
  background-color: #ffffff;
}

.navbar-brand {
  font-size: 1.15rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text span {
  font-size: 1rem;
}

.nav-link {
  font-weight: 500;
  color: #4b5563;
  position: relative;
  padding-inline: 0.85rem !important;
  font-size: 0.95rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--secondary);
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border: none;
  box-shadow: 0 8px 20px rgba(29, 166, 216, 0.35);
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline-light {
  border-width: 2px;
}

/* ===========================
   HERO / CAROUSEL
   =========================== */
.hero-section {
  position: relative;
  min-height: 75vh;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 75vh;
}

@media (min-width: 992px) {
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 90vh;
  }
}

.hero-section .carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Slide backgrounds (can be replaced by real images) */
/* Slider Background Images */
.slide-1 {
  background-image: url("../img/slider-1.png");
}
.slide-2 {
  background-image: url("../img/slider-2.png");
}



.hero-overlay {
  position: absolute;
  inset: 0;
  /* lighter overlay so image stays visible */
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
              linear-gradient(120deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35));
}



.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
  color: #ffffff;
}

.hero-content .accent {
  color: var(--primary);
}

.hero-content .lead {
  max-width: 520px;
}

/* ===========================
   SECTION BASICS
   =========================== */
.section-padding {
  padding-block: 80px;
}

@media (max-width: 575.98px) {
  .section-padding {
    padding-block: 60px;
  }
}

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

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

.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.section-title h2 {
  margin-top: 0.75rem;
  font-weight: 700;
}

/* ===========================
   ABOUT
   =========================== */
.icon-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.icon-list i {
  color: var(--primary);
  margin-top: 0.15rem;
}

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

@media (max-width: 767.98px) {
  .about-card-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.about-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-card.highlight {
  background: linear-gradient(135deg, var(--primary-soft), #ffffff);
  border-color: rgba(29, 166, 216, 0.7);
}

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


/* ===========================
   ABOUT IMAGE – PREMIUM LOOK
   =========================== */

.about-image-wrapper {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: all 0.45s ease;
}

/* soft glow around image */
.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center,
              rgba(29,166,216,0.25),
              transparent 70%);
  z-index: -1;
  filter: blur(35px);
}

/* image styling */
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.45s ease;
}

/* hover effects */
.about-image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.06);
  filter: brightness(1.08);
}

/* floating badge */
.about-image-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.4rem;
  padding: 0.45rem 1rem;
  background: rgba(0, 0, 0, 0.68);
  color: #ffffff;
  border-radius: 999px;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

/* badge hover glow */
.about-image-wrapper:hover .about-image-badge {
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 12px 30px rgba(29, 166, 216, 0.45);
}

/* badge text styling */
.about-image-badge .label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-image-badge .year {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}


/* ===========================
   SERVICES – IMAGE ROW CARDS
   =========================== */

.service-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  padding: 1.5rem 1.5rem;
}

@media (max-width: 767.98px) {
  .service-card {
    padding: 1.2rem 1rem;
  }
}

/* decorative soft circle in corner */
.service-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 166, 216, 0.2),
    transparent 65%
  );
  top: -60px;
  right: -60px;
  opacity: 0.7;
  pointer-events: none;
}

/* image wrapper */
.service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* service image */
.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* subtle overlay for readability */
.service-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.35)
  );
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

/* icon badge on top-right of image */
.service-icon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
  z-index: 2;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.service-icon-badge i {
  font-size: 1.4rem;
  transition: transform 0.6s ease;
}

/* 360° rotation on hover */
.service-card:hover .service-icon-badge i {
  transform: rotate(360deg);
}

/* card content */
.service-body {
  padding: 1.2rem 0.3rem;
}

.service-body h4 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.service-body p {
  font-size: 0.93rem;
  margin-bottom: 0.75rem;
}

/* mini list */
.service-body .mini-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.service-body .mini-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.service-body .mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* hover effect for entire card */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  border-color: rgba(29, 166, 216, 0.7);
}

.service-card:hover .service-image {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.service-card:hover .service-image-wrapper::after {
  opacity: 0.18;
}

.service-card:hover .service-icon-badge {
  box-shadow: 0 14px 35px rgba(29, 166, 216, 0.55);
}


/* ===========================
   WHY CHOOSE US
   =========================== */
.why-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.why-card i {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.why-card h5 {
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.why-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.why-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at top left, var(--primary-soft), #ffffff);
  box-shadow: var(--shadow-soft);
}

.why-image-card .inner {
  padding: 1.7rem 1.8rem;
}

.badge-floating {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 999px;
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
  text-align: right;
}

.badge-floating .number {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.badge-floating .text {
  font-size: 0.7rem;
  opacity: 0.9;
}

.text-accent {
  color: var(--secondary);
}

/* ===========================
   WHY US – IMAGE STYLE
   =========================== */

.why-image-wrapper {
  position: relative;
  border-radius: 1.7rem;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* main image */
.why-image {
  width: 100%;
  max-height: 380px;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* soft overlay for mood & readability */
.why-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%),
              linear-gradient(to bottom right, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.45));
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* use existing .badge-floati*



/* ===========================
   ACHIEVEMENTS
   =========================== */
.achievements-section {
  background: radial-gradient(circle at top left, var(--secondary), #111827);
  position: relative;
  overflow: hidden;
}

.achievements-section::before,
.achievements-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 166, 216, 0.45), transparent 65%);
  opacity: 0.5;
}

.achievements-section::before {
  top: -90px;
  left: -80px;
}

.achievements-section::after {
  bottom: -120px;
  right: -100px;
}

.achievements-section h2,
.achievements-section .subtitle,
.achievements-section p {
  color: #ffffff;
}

.achievement-card {
  position: relative;
  z-index: 2;
}

.achievement-card .counter {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
}

.achievement-card .suffix {
  font-size: 1.3rem;
  font-weight: 700;
  margin-left: 0.1rem;
  color: #ffffff;
}

.achievement-card p {
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e5e7eb;
}

/* ===========================
   GALLERY
   =========================== */
#galleryGrid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  background-color: #e5e7eb;
}

#galleryGrid img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  filter: brightness(1.05);
}

/* ===========================
   CONTACT
   =========================== */
.contact-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.contact-card .form-control,
.contact-card .form-select {
  border-radius: 0.9rem;
  border-color: rgba(148, 163, 184, 0.8);
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 166, 216, 0.18);
}

.contact-info-card {
  background: linear-gradient(145deg, var(--secondary), #4c1d95);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 249, 195, 0.4), transparent 60%);
  top: -80px;
  right: -80px;
  opacity: 0.85;
}

.contact-info-card h5,
.contact-info-card h6 {
  position: relative;
  z-index: 2;
  color: #fefce8;
}

.contact-info-card p {
  position: relative;
  z-index: 2;
  color: #f9fafb;
  margin-bottom: 0.45rem;
}

.contact-highlight {
  font-weight: 600;
}

.contact-info-card i {
  color: #fef3c7;
}

/* ===========================
   MAP
   =========================== */
.map-section {
  position: relative;
  background: linear-gradient(120deg, #0f172a, #082f49);
  color: #ffffff;
}

.map-section .section-title .subtitle,
.map-section .section-title h2 {
  color: #ffffff;
}

.map-container {
  position: relative;
  height: 320px;
}

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

.map-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(29, 166, 216, 0.28), transparent 60%);
  pointer-events: none;
}

/* ===========================
   FOOTER – IMPROVED VISIBILITY
   =========================== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-top {
  border-bottom: 1px solid var(--footer-border);
  padding-bottom: 1.5rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: #ffffff; /* clear white heading */
}

.footer p {
  font-size: 0.9rem;
  color: var(--footer-muted);
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #dbeafe; /* light sky-blue for good contrast */
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  color: var(--footer-text);
}

.footer-contact i {
  color: var(--primary);
}

.footer .social-icon {
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.footer .social-icon:hover {
  background-color: #ffffff;
  color: var(--secondary);
}

.footer-newsletter .form-control {
  border-radius: 999px 0 0 999px;
  border-color: #0f172a;
  background-color: #020617;
  color: #e5e7eb;
}

.footer-newsletter .form-control::placeholder {
  color: #6b7280;
}

.footer-newsletter .btn {
  border-radius: 0 999px 999px 0;
}

.footer-bottom {
  background: #020617;
  border-top: 1px solid #111827;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-bottom .text-accent {
  color: var(--primary);
}

/* ===========================
   ANIMATIONS – REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

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

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */
@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
  }
  .hero-content .lead {
    margin-inline: auto;
  }
  .hero-content .d-flex {
    justify-content: center;
  }
}




/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366;
}

/* Call Button */
.call-btn {
    background-color: #007bff;
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}