/* =============================================
   BEST SAFETY NETS - MAIN STYLESHEET
   Theme: #2d3290 (Navy Blue) + White + #F5E236 (Accent Yellow)
   Font: Barlow Condensed + Nunito
============================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #2d3290;
  --primary-dark: #1e2260;
  --primary-light: #3d44b8;
  --accent: #F5E236;
  --accent-dark: #d4c21e;
  --orange: #e84118;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(45, 50, 144, 0.10);
  --shadow-hover: 0 8px 32px rgba(45, 50, 144, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s 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 ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
}

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

/* ---- Section Spacing ---- */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 55px 0;
  }
}

/* ---- Section Labels & Titles ---- */
.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(45, 50, 144, 0.08);
  border-left: 3px solid var(--accent);
  padding: 4px 14px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.top-bar-left a,
.top-bar-left span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

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

.top-bar-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: white;
  font-size: 14px;
}

.top-bar-right a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ===================== NAVBAR ===================== */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(45, 50, 144, 0.10);
  z-index: 999;
  transition: var(--transition);
}

.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(45, 50, 144, 0.18);
}

.brand-logo {
  width: 100%;
    height: 84px;
  object-fit: contain;
  border-radius: 8px;
}

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

.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}

.brand-highlight {
  color: var(--orange);
}

.brand-tag {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark) !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(45, 50, 144, 0.07);
}

.dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
}

.dropdown-item {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
}

.dropdown-item:hover {
  background: rgba(45, 50, 144, 0.08);
  color: var(--primary);
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 50, 144, 0.25);
}

/* ===================== HERO CAROUSEL ===================== */
.hero-img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.45);
}

@media (max-width: 768px) {
  .hero-img {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .hero-img {
    height: 380px;
  }
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 760px;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.carousel-caption-custom h1 {
  font-size: clamp(30px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.carousel-caption-custom h1 span {
  color: var(--accent);
}

.carousel-caption-custom p {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ===================== MARQUEE ===================== */
.marquee-section {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 36px;
  border-right: 2px solid rgba(245, 226, 54, 0.35);
  flex-shrink: 0;
}

.marquee-track span i {
  color: var(--accent);
}

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

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

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

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

.about-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow: 12px 12px 0 var(--primary);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  border: 4px solid var(--accent);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-inner {
  text-align: center;
}

.badge-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.badge-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}

.about-feat:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.about-feat i {
  font-size: 18px;
  color: var(--primary);
}

/* ===================== SERVICES ===================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

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

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 50, 144, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.service-overlay i {
  font-size: 40px;
  color: var(--accent);
}

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

.service-body {
  padding: 22px;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(45, 50, 144, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-icon i {
  font-size: 20px;
  color: var(--primary);
}

.service-body h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

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

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

.counter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(245, 226, 54, 0.08);
}

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

.counter-icon {
  font-size: 38px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.counter-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(45, 50, 144, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.why-icon i {
  font-size: 20px;
  color: var(--primary);
}

.why-card h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

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

.brand-track {
  display: flex;
  gap: 20px;
  animation: brandScroll 22s linear infinite;
}

.brand-item {
  min-width: 160px;
  height: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.brand-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.brand-item img {
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition);
}

.brand-item:hover img {
  filter: none;
  opacity: 1;
}

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

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

/* ===================== GALLERY ===================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gal-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.gal-btn:hover,
.gal-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gal-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (max-width: 576px) {
  .gal-card img {
    height: 150px;
  }
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 50, 144, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  gap: 8px;
  transition: var(--transition);
}

.gal-overlay i {
  font-size: 28px;
  color: var(--white);
}

.gal-overlay span {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.gallery-item {
  transition: var(--transition);
}

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

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

.faq-item .accordion-button {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  box-shadow: none !important;
  padding: 18px 22px;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(45, 50, 144, 0.05);
}

.faq-item .accordion-button::after {
  filter: hue-rotate(200deg);
}

.faq-item .accordion-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 22px 20px;
  border-top: 1px solid var(--border);
}

/* ===================== CONTACT ===================== */
.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  height: 100%;
  box-shadow: var(--shadow);
}

.contact-info-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(45, 50, 144, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
}

.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--primary);
  font-weight: 600;
}

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

.contact-social {
  display: flex;
  gap: 10px;
}

.cs-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.cs-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  transition: var(--transition);
  color: var(--text-dark);
}

.custom-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 50, 144, 0.10);
  outline: none;
}

.form-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* ===================== MAP ===================== */
.map-section {
  line-height: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ===================== FOOTER ===================== */
.main-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 60px;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 8px;
}

.footer-brand h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 18px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(245, 226, 54, 0.3);
}

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

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

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

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

.footer-contact-item span,
.footer-contact-item a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

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

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

.footer-bottom p {
  margin: 0;
}

/* ===================== FLOATING BUTTONS ===================== */
.floating-left {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.float-btn {
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 0 10px 10px 0;
  font-size: 18px;
  gap: 0;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  overflow: hidden;
  max-width: 44px;
  white-space: nowrap;
}

.float-btn:hover {
  max-width: 160px;
  color: var(--white);
  gap: 8px;
}

.float-btn.whatsapp-float {
  background: #25D366;
}

.float-btn.whatsapp-float:hover {
  background: #1da851;
}

.float-btn.call-float {
  background: var(--primary);
}

.float-btn.call-float:hover {
  background: var(--primary-dark);
}

.float-label {
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: var(--transition);
}

.float-btn:hover .float-label {
  opacity: 1;
  max-width: 100px;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.scroll-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===================== AOS SIMPLE ANIMATIONS ===================== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ===================== NAVBAR MOBILE ===================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 14px !important;
    border-bottom: 1px solid var(--border);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .dropdown-menu {
    box-shadow: none;
    border: none;
    padding-left: 14px;
  }
}

/* ===================== ABOUT RESPONSIVE ===================== */
@media (max-width: 768px) {
  .about-main-img {
    height: 300px;
    box-shadow: 6px 6px 0 var(--primary);
  }

  .about-badge {
    width: 80px;
    height: 80px;
    right: -10px;
    bottom: -10px;
  }

  .badge-num {
    font-size: 22px;
  }
}

/* ===================== CONTACT FORM RESPONSIVE ===================== */
@media (max-width: 768px) {

  .contact-info-card,
  .contact-form-card {
    padding: 24px 18px;
  }
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
		text-align: center;
	}
}