.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 85px;
  display: flex;
  align-items: center;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-word {
  color: #00c6ff;
  display: inline-block;
  position: relative;
  font-weight: 600;
}

/* Cursor */
.animated-word::after {
  content: "|";
  margin-left: 3px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}


.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
  flex-shrink: 0;
}


.hero-section {
  height: 90vh;
  background-image: url("../assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 85px;
}


.hero-overlay {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 550px;
  animation: fadeInLeft 0.8s ease 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}


.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, #0056b3 0%, #003f85 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #003f85 0%, #002d5f 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

/* Secondary */
.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}


.logo img {
  height: 65px;
  width: auto;
  max-width: 150px;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo img {
    height: 50px;
    width: auto;
    max-width: 100px;
  }
}

.logo {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-overlay {
    left: 20px;
    max-width: 90%;
  }

  .hero-overlay h1 {
    font-size: 34px !important;
  }

  .hero-buttons {
    flex-direction: column;
    width: fit-content;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}


.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0)
  );
}


.hero-overlay h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 15px;
  animation: slideInDown 0.8s ease;
}

.hero-overlay h1 span {
  color: #00c6ff;
}

@keyframes blinkCursor {
  0% { border-color: transparent; }
  50% { border-color: #00c6ff; }
  100% { border-color: transparent; }
}

@media (max-width: 768px) {
  .hero-section {
    background-size: cover;
    background-position: center;
    height: 80vh;
  }

  .hero-overlay {
    left: 20px;
    right: 20px;
    bottom: 40px;
  }

  .hero-overlay h1 {
    font-size: 34px;
  }

  .hero-overlay p {
    font-size: 14px;
  }
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0b1a3a;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  color: #00c6ff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    animation: slideDown 0.3s ease;
  }

  .main-nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00c6ff;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #00c6ff;
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: auto;
    align-items: flex-start;
  }

  .hero-buttons .btn {
    width: auto;
    display: inline-block;
    white-space: nowrap;
  }
}

/* ===== MOBILE TOUCH OPTIMIZATION ===== */
@media (max-width: 480px) {
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    padding: 10px 15px;
  }

  .hero-section {
    height: 70vh;
    min-height: 400px;
  }

  .hero-overlay {
    left: 15px;
    right: 15px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .hero-overlay h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-overlay p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: auto;
    align-items: flex-start;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: auto;
    display: inline-block;
    white-space: nowrap;
  }

  .btn:active {
    transform: scale(0.98);
  }

  .menu-toggle {
    font-size: 24px;
  }

  .nav-links li {
    padding: 12px 0;
  }

  .nav-links a {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 30px;
  }

  .hero-overlay p {
    font-size: 14px;
  }

  .btn {
    padding: 13px 22px;
    font-size: 15px;
  }
}

.about-detail-section {
  padding: 80px 0;
  background: #fff;
}

.about-container {
  max-width: 1200px;   /* MATCH HEADER WIDTH */
  margin: 0 auto;
  padding: 0 20px;
}


.page-hero {
  margin-top: 85px; /* header height */
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f7f9fc, #eef5ff);
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  color: #0b1a3a;
}

.page-hero p {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: -3px;
  margin-bottom: 8px;
}

.whatsapp-link i{
  color: #25D366 !important;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.whatsapp-link:hover {
  transform: scale(1.2);
  color: #1ebe5d !important;
}
