/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b1e3a;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- LOGO BRANDING ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Circular logo */
.logo-icon {
  width: 42px;
  height: auto;
}

/* Name image */
.logo-text {
  height: 36px;
  width: auto;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .logo-icon {
    width: 36px;
  }

  .logo-text {
    height: 28px;
  }
}


.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
  color: #eaeef5;   /* soft white */
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #ff3b30;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: #ff3b30;   /* logo red */
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7")
              center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff9f1a;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  border: none;
}

.btn:hover {
  background: #ffc048;
}

/* ---------- SECTIONS ---------- */
section {
  padding: 70px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

/* ---------- ABOUT ---------- */
.about {
  background: #f1f5f9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ---------- ABOUT LIST CLEANUP ---------- */
.about-content ul {
  list-style: none;        /* removes round bullet */
  padding-left: 0;         /* removes left indentation */
  margin-top: 15px;
}

.about-content li {
  margin-bottom: 10px;
  padding-left: 0;         /* ensures no extra spacing */
}

.about-img {
  width: 100%;
  border-radius: 10px;
}

/* ---------- CONTACT ---------- */
.contact-form {
  max-width: 600px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* ---------- FOOTER ---------- */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #0a3d62;
    flex-direction: column;
    display: none;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CONTACT INFO ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-card {
  background: #f7f7f7;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

.contact-card a {
  color: #ff9f1a;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

.contact-card span {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- REGISTRATION DETAILS ---------- */
.registration-box {
  margin-top: 50px;
  padding: 30px;
  background: #f1f5f9;
  border-radius: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.registration-box h3 {
  text-align: center;
  color: #0a3d62;
  margin-bottom: 25px;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.registration-grid strong {
  color: #333;
}

.registration-grid p {
  margin-top: 5px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .registration-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ---------- ADDRESS ---------- */
.address-box {
  margin-top: 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.address-box h3 {
  color: #0a3d62;
  margin-bottom: 15px;
}

.address-text {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.address-actions {
  margin-top: 10px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #ff9f1a;
  color: #ff9f1a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ff9f1a;
  color: #000;
}
/* ---------- ACTIVE MENU HIGHLIGHT ---------- */
.nav-links a.active {
  color: #ff9f1a;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ---------- HEADER SHADOW ON SCROLL ---------- */
header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

/* ---------- SCROLL PROGRESS BAR ---------- */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #ff9f1a, #ffc048);
  z-index: 3000;
}

/* ---------- ABOUT LIST (ICON + GRID) ---------- */
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  gap: 15px 30px;
}

.about-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

/* Icon styling */
.about-item i {
  color: #25a55f;
  margin-right: 10px;
  font-size: 18px;
}

/* ---------- TICK ANIMATION ---------- */
.fade-tick {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
}

.fade-tick.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: single column */
@media (max-width: 768px) {
  .about-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- FEATURES SECTION ---------- */
.features {
  background: #f9fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  font-size: 34px;
  color: #ff3b30; /* logo red */
  margin-bottom: 15px;
}

.feature-card h4 {
  color: #0b1e3a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
