/* ===================================================
   S.S. ENTERPRISES - MAIN STYLESHEET
   Theme: Visiting Card Inspired (Blue + Magenta + Yellow)
   =================================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  --blue-light: #5bc8f5;
  --blue-mid: #1a8fd1;
  --blue-dark: #0d5fa3;
  --blue-deeper: #0a3d72;
  --blue-navy: #072856;
  --magenta: #e0186c;
  --magenta-light: #ff3d8a;
  --magenta-dark: #b5104f;
  --yellow: #f5c518;
  --yellow-light: #ffe566;
  --yellow-dark: #d4a800;
  --green: #1e9e3e;
  --green-light: #28c44e;
  --white: #ffffff;
  --off-white: #f0f7ff;
  --light-blue-bg: #e8f4fd;
  --text-dark: #0a2a4a;
  --text-muted: #4a7fa8;
  --border: #b8d9f0;
  --grad-main: linear-gradient(135deg, #5bc8f5 0%, #1a8fd1 40%, #0d5fa3 75%, #072856 100%);
  --grad-dark: linear-gradient(135deg, #0a3d72 0%, #072856 100%);
  --grad-magenta: linear-gradient(135deg, #e0186c, #b5104f);
  --grad-yellow: linear-gradient(135deg, #f5c518, #d4a800);
  --grad-section: linear-gradient(180deg, #0d5fa3 0%, #0a3d72 100%);
  --shadow-sm: 0 2px 15px rgba(10, 60, 110, 0.12);
  --shadow-md: 0 6px 30px rgba(10, 60, 110, 0.2);
  --shadow-lg: 0 15px 50px rgba(10, 60, 110, 0.28);
  --transition: all 0.3s ease;
  --radius: 12px;
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== SECTION UTILITIES ===== */
.section-pad {
  padding: 90px 0;
}

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

.text-gold {
  color: var(--yellow) !important;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--magenta);
  background: rgba(224, 24, 108, 0.08);
  border: 1px solid rgba(224, 24, 108, 0.3);
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 14px;
}

.bg-dark-section .section-label {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.35);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.bg-dark-section .section-title {
  color: var(--white);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.bg-dark-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.section-text {
  color: #2a4a6a;
  font-size: 16px;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-magenta);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--magenta);
  box-shadow: 0 4px 18px rgba(224, 24, 108, 0.35);
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: var(--grad-yellow);
  color: var(--blue-navy) !important;
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.45);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--blue-dark) !important;
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== FLOATING ICONS ===== */
.floating-icons {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.float-icon:hover {
  transform: scale(1.15) translateX(5px);
  color: white;
}

.float-icon::after {
  content: attr(title);
  position: absolute;
  left: 54px;
  background: var(--blue-navy);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.float-icon:hover::after {
  opacity: 1;
}

.float-call {
  background: linear-gradient(135deg, #1e7e34, #28a745);
}

.float-whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.float-location {
  background: var(--grad-magenta);
}

.float-email {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--blue-navy);
  padding: 8px 0;
  border-bottom: 3px solid var(--magenta);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.top-info {
  color: #a0c8e8;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info i {
  color: var(--yellow);
}

.top-contact {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-contact:hover {
  color: white;
}

/* ===== HEADER ===== */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10, 60, 110, 0.14);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 3px solid var(--blue-light);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(10, 60, 110, 0.22);
}

.navbar {
  padding: 14px 0;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--grad-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--yellow);
  box-shadow: 0 4px 14px rgba(13, 95, 163, 0.35);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--magenta);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.nav-link:hover {
  color: var(--blue-dark) !important;
}

.btn-nav {
  background: var(--grad-magenta) !important;
  color: var(--white) !important;
  border-radius: 30px;
  padding: 10px 24px !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(224, 24, 108, 0.35);
}

.btn-nav::after {
  display: none !important;
}

.btn-nav:hover {
  background: var(--grad-yellow) !important;
  color: var(--blue-navy) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 2px solid var(--blue-mid);
  border-radius: 8px;
  padding: 6px 10px;
  background: transparent;
}

.toggler-icon {
  font-size: 22px;
  color: var(--blue-dark);
  display: flex;
}

.navbar-toggler:focus {
  box-shadow: none;
}

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

.hero-img {
  height: 85vh;
  min-height: 480px;
  max-height: 700px;
  object-fit: cover;
  object-position: center;
}

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.carousel-caption {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 620px;
  z-index: 10;
  bottom: auto;
  padding: 0;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 30px));
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.caption-badge {
  display: inline-block;
  background: var(--grad-magenta);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(224, 24, 108, 0.4);
}

.caption-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(7, 40, 86, 0.5);
}

.caption-title .highlight {
  color: var(--yellow);
}

.caption-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 480px;
}

.caption-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
}

.carousel-indicators .active {
  background: var(--yellow);
  width: 30px;
  border-radius: 5px;
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--grad-main);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--magenta);
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.marquee-content span i {
  color: var(--yellow);
  font-size: 10px;
}

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

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

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

/* ===== ABOUT ===== */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  border: 4px solid var(--blue-light);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--grad-dark);
  color: white;
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(7, 40, 86, 0.45);
  border: 3px solid var(--yellow);
}

.ab-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.ab-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1px;
  color: #90b8d8;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.af-item i {
  color: var(--green);
  font-size: 17px;
}

/* ===== SERVICES ===== */
.service-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 40, 86, 0.25);
  border: 1px solid rgba(91, 200, 245, 0.18);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(7, 40, 86, 0.4);
  border-color: rgba(91, 200, 245, 0.5);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 143, 209, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--yellow);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-body {
  padding: 22px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-navy);
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--blue-light);
  gap: 10px;
}

/* ===== COUNTER ===== */
.counter-section {
  background: var(--blue-navy);
  padding: 70px 0;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--blue-mid);
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.counter-card {
  padding: 20px 10px;
  position: relative;
}

.counter-icon {
  font-size: 38px;
  color: var(--yellow);
  margin-bottom: 14px;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  color: var(--white);
  display: inline;
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--magenta);
  display: inline;
}

.counter-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* ===== WHY CHOOSE US ===== */
.why-img-wrap {
  padding-right: 30px;
}

.why-img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--blue-light);
  width: 100%;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-mid);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  background: white;
  border-left-color: var(--magenta);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--yellow);
  flex-shrink: 0;
}

.why-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

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

/* ===== BRAND CAROUSEL ===== */
.brand-carousel-wrap {
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 22px;
  animation: brandScroll 28s linear infinite;
  width: max-content;
}

.brand-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(91, 200, 245, 0.25);
  border-radius: 12px;
  padding: 18px 36px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-item:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.2);
}

.brand-item span {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

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

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  border-color: var(--blue-mid);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 40, 86, 0.9) 0%, rgba(13, 95, 163, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-icon {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: center;
  margin: 0;
}

/* ===== FAQ ===== */
.faq-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(91, 200, 245, 0.18) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  padding: 18px 22px;
  border: none !important;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--yellow) !important;
}

.faq-btn::after {
  filter: invert(1);
}

.faq-body {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  padding: 18px 22px;
  border-top: 1px solid rgba(91, 200, 245, 0.15);
}

/* ===== CONTACT ===== */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  background: white;
  border-left-color: var(--magenta);
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 95, 163, 0.3);
}

.ci-content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.ci-content a {
  display: block;
  color: var(--blue-mid);
  font-size: 15px;
  font-weight: 600;
}

.ci-content a:hover {
  color: var(--magenta);
}

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

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

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--blue-light);
}

.form-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.custom-input {
  border: 2px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  font-family: var(--font-body) !important;
  background: white !important;
  color: var(--text-dark) !important;
  transition: var(--transition) !important;
}

.custom-input:focus {
  border-color: var(--blue-mid) !important;
  box-shadow: 0 0 0 3px rgba(26, 143, 209, 0.15) !important;
  outline: none !important;
}

.form-alert {
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

.form-alert.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-alert.error {
  background: #fce4ec;
  color: #880e4f;
  border: 1px solid #f8bbd0;
}

/* ===== MAP ===== */
.map-section {
  background: var(--light-blue-bg);
  padding-top: 40px;
}

.map-header {
  margin-bottom: 20px;
}

.map-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.map-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.map-header .text-gold {
  color: var(--magenta) !important;
}

.map-wrapper {
  border-top: 4px solid var(--blue-mid);
  box-shadow: 0 -4px 20px rgba(13, 95, 163, 0.15);
}

.map-wrapper iframe {
  display: block;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--blue-navy);
  color: #90b8d8;
  padding-top: 0;
  border-top: 4px solid var(--magenta);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo .logo-main {
  color: white;
}

.footer-logo .logo-sub {
  color: var(--yellow);
}

.footer-about {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.fsocial {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(91, 200, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90b8d8;
  font-size: 16px;
  transition: var(--transition);
}

.fsocial:hover {
  background: var(--magenta);
  color: white;
  border-color: var(--magenta);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 197, 24, 0.25);
}

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

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

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

.footer-links a i {
  font-size: 11px;
  color: var(--magenta);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

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

.footer-contact-list a:hover {
  color: var(--blue-light);
}

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

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--grad-main);
  border: none;
  border-radius: 12px;
  color: var(--yellow);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(13, 95, 163, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(13, 95, 163, 0.65);
}

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

  .hero-img {
    height: 70vh;
    min-height: 400px;
  }

  .about-badge {
    left: 10px;
    bottom: 20px;
  }

  .why-img-wrap {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    border: 1px solid var(--border);
  }

  .btn-nav {
    display: inline-block;
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
	.cu-ds-nn{
		Display:none!important;
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
  .section-pad {
    padding: 55px 0;
  }

  .hero-img {
    height: 60vh;
    min-height: 350px;
  }

  .carousel-caption {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .caption-title {
    font-size: 26px;
  }

  .caption-sub {
    font-size: 14px;
  }

  .caption-btns {
    flex-direction: column;
    gap: 10px;
  }

  .caption-btns .btn-primary-custom,
  .caption-btns .btn-outline-custom {
    justify-content: center;
  }

  .about-badge {
    position: static;
    margin-top: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

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

  .floating-icons {
    right: 10px;
    gap: 8px;
  }

  .float-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .float-icon::after {
    display: none;
  }

  .contact-form-card {
    padding: 22px 16px;
  }

  .top-info {
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .hero-img {
    height: 55vh;
    min-height: 300px;
  }

  .caption-title {
    font-size: 22px;
  }

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

  .counter-number {
    font-size: 32px;
  }
}