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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom right, #f0f8ff, #e6f2ff);
  color: #333;
  margin-top: 70px; /* ✅ Compensates for navbar height, without adding white space */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #004a99;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #004a99, #005fcc);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-wrap: nowrap;
}

.navbar-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.navbar-left img.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #fff;
}

.navbar-left h1 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff;
  animation: glowCompany 2s ease-in-out infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px; /* Increased max-width for better display */
}

@keyframes glowCompany {
  0% { text-shadow: 0 0 10px #fff; }
  100% { text-shadow: 0 0 20px #fff, 0 0 40px #fff; }
}

.navbar-links {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  flex-grow: 1;
}

.navbar-links::-webkit-scrollbar {
  display: none;
}

.navbar-links a {
  color: #fff !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff;
}

.hero {
  position: relative;
  min-height: 99vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to top right, #002244, #004488);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: brightness(0.8);
  z-index: 1;
  animation: zoomIn 15s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 2.2rem;
  text-shadow: 0 0 10px #fff;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  background: #004a99;
  color: #fff;
  border: none;
  box-shadow: 0 0 12px rgba(0, 74, 153, 0.6);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #0066cc;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(0, 74, 153, 0.8);
}

.btn.secondary {
  background: #ccc;
  color: #222;
}

.services {
  padding: 40px 10px;
}

.services .section-title {
  text-align: center; /* Fix: Center the title */
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.reviews {
  padding: 40px 10px;
}

.review-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  flex: 1 1 260px;
  max-width: 280px;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.review {
  background: #fff;
  width: 100%;
  max-width: 280px;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.location iframe {
  width: 100%;
  max-width: 900px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}
.location {
  text-align: center;
}

.location p {
  margin-bottom: 10px;
  font-weight: 600;
  color: #004a99;
}


.floating-btn {
  position: fixed;
  right: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
  z-index: 1000;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.05);
}

.floating-btn.whatsapp {
  background: #25D366;
  bottom: 90px;
}

.floating-btn.viber {
  background: #7360f2;
  bottom: 30px;
}

@media (max-width: 768px) {
  .navbar-left h1 {
    max-width: 140px;
    font-size: 1rem;
  }

  .navbar-links a {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .floating-btn {
    right: 15px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .floating-btn.whatsapp {
    bottom: 70px;
  }

  .floating-btn.viber {
    bottom: 20px;
  }

  .card {
    min-height: auto;
  }
}


/* === Enhanced Styles Start === */

/* ✅ Hamburger menu icon for mobile */
/* ✅ Animated hamburger rotation toggle */
.hamburger.active i {
  transform: rotate(90deg);
  transition: transform 0.4s ease;
}
.hamburger i {
  transition: transform 0.4s ease;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}
.hamburger i {
  pointer-events: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  .navbar-links {
    display: none;
  }
}

.arc-menu {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at top right, #004a99, #0077cc);
  clip-path: circle(0% at 100% 0%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px 20px;
  box-shadow: -4px 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  transition: clip-path 0.6s ease, opacity 0.4s ease;
  z-index: 1100;
  overflow-y: auto;
  scrollbar-width: none;
}

.arc-menu.open {
  clip-path: circle(150% at 100% 0%);
  opacity: 1;
}

.arc-menu::-webkit-scrollbar {
  display: none;
}

.arc-menu a {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0;
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}

.arc-menu a:hover {
  color: #ffe600;
  transform: translateX(6px);
}

@media (max-width: 480px) {
  .arc-menu {
    width: 200px;
    height: 200px;
    padding: 50px 16px 16px;
  }

  .arc-menu a {
    font-size: 0.95rem;
  }
}


/* ✅ Scrollbar hide cross-browser */
.navbar-links {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navbar-links::-webkit-scrollbar {
  display: none;
}

/* ✅ Sticky scroll effect */
.navbar.scrolled {
  background: linear-gradient(to right, #002a66, #004a99);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ✅ Promo enhancements */
.promo {
  background: linear-gradient(to right, #f8fbff, #e6f0ff);
  padding: 40px 20px;
}
.promo .promo-banner {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ✅ Language Switcher */
.language-switcher {
  text-align: right;
  margin: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #004a99;
}
.language-switcher a:hover {
  text-decoration: underline;
}

/* ✅ Footer style enhancement */
footer {
  background: #e8f0ff;
  color: #004a99;
  font-size: 0.95rem;
}
footer a {
  color: #004a99;
  font-weight: 600;
}
footer a:hover {
  color: #0077cc;
  text-decoration: underline;
}

/* ✅ Arc animation keyframe */
@keyframes arcPopIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.arc-menu.open {
  animation: arcPopIn 0.5s ease forwards;
}

/* ✅ Extra spacing and accessibility */
.hamburger:focus {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.section-title {
  font-size: 1.8rem;
  color: #004a99;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,74,153,0.2);
}
.section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: #004a99;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* ✅ Arc safe edge click */
.arc-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  background: transparent;
  z-index: 1;
}

/* ✅ Responsive tuning for arc menu */
@media (max-width: 480px) {
  .arc-menu {
    width: 220px;
    height: 220px;
    padding: 50px 16px 16px;
  }
  .arc-menu a {
    font-size: 0.95rem;
  }
}
@media (max-width: 380px) {
  .arc-menu a {
    font-size: 0.9rem;
  }
  .navbar-left h1 {
    font-size: 0.8rem;
  }
}
@media (min-width: 769px) {
  .arc-menu, .hamburger {
    display: none !important;
  }
}


/* === Padding to 500 lines === */
