/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(to bottom right, #4b2e0f, #1a0900);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Visually Hidden (for accessibility) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Header */
header.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 48px;
  width: auto;
}
.site-title {
  font-size: 1.8rem;
  color: gold;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 6px 10px;
  border-radius: 4px;
}
.nav-links a:hover,
.nav-links .dropbtn:focus {
  color: gold;
  background: rgba(255,215,0,0.08);
}
.nav-more .dropdown {
  display: none;
  position: absolute;
  background: #222;
  top: 100%;
  left: 0;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1000;
}
.nav-more:hover .dropdown,
.nav-more:focus-within .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 0;
}
.dropdown a:hover {
  background: #333;
  color: gold;
}

/* Hero Section */
.hero-content {
  margin-top: 120px;
  text-align: center;
  z-index: 2;
}
.hero-text {
  font-size: 3rem;
  animation: fadeInDown 1s ease-out;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  font-family: 'Playfair Display', serif;
}
.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: gold;
  color: #1a0900;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s, color 0.3s;
}
.cta-btn:hover {
  background: #d4af37;
  color: #fff;
}
.hero-image {
  max-width: 420px;
  width: 90vw;
  margin: 32px auto 0;
  display: block;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-rca {
  padding: 120px 20px 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1 1 320px;
}
.about-rca h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: gold;
  font-family: 'Playfair Display', serif;
}
.about-rca p {
  font-size: 1.1rem;
  color: #ddd;
}
.about-img {
  flex: 1 1 320px;
  text-align: center;
}
.about-img img {
  max-width: 340px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* Divisions Slider */
.divisions-slider {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.divisions-slider h2 {
  font-size: 2.2rem;
  color: gold;
  margin-bottom: 30px;
  text-align: center;
}
.slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-btn {
  background: none;
  border: none;
  color: gold;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50%;
  transition: background 0.2s;
}
.slider-btn:hover {
  background: rgba(255,215,0,0.08);
}
.slider-track {
  display: flex;
  overflow-x: auto;
  gap: 18px;
  scroll-behavior: smooth;
  width: 100%;
}
.division-slide {
  min-width: 260px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.division-slide:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255,215,0,0.08);
}
.division-slide img {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.division-slide h3 {
  color: gold;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.division-slide p {
  color: #ccc;
  font-size: 1rem;
}

/* Services Section */
.services {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.services h2 {
  font-size: 2.2rem;
  color: gold;
  margin-bottom: 30px;
  text-align: center;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.4s, background 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.service-card:hover {
  transform: scale(1.05);
  background: rgba(255, 215, 0, 0.1);
}
.service-card img {
  width: 100%;
  max-width: 120px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.service-card h3 {
  margin-bottom: 15px;
  color: gold;
  font-size: 1.1rem;
}
.service-card p {
  color: #ccc;
  font-size: 1rem;
}

/* About Vision Section */
.about-vision {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.vision-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.vision-img {
  flex: 1 1 320px;
  text-align: center;
}
.vision-img img {
  max-width: 340px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.vision-text {
  flex: 1 1 320px;
}
.about-vision h2 {
  font-size: 2.2rem;
  color: gold;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.about-vision p {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.vision-btn {
  display: inline-block;
  padding: 12px 28px;
  background: gold;
  color: #1a0900;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}
.vision-btn:hover {
  background: #d4af37;
  color: #fff;
}

/* Contact */
.contact {
  padding: 60px 20px;
  background: rgba(0,0,0,0.5);
}
.contact h2 {
  color: gold;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem;
}
.contact-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.contact-img {
  flex: 1 1 320px;
  text-align: center;
}
.contact-img img {
  max-width: 320px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.contact-form {
  flex: 1 1 320px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
  font-size: 1rem;
}
.contact-form button {
  background: gold;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #d4af37;
  color: #fff;
}

/* Footer */
footer.footer {
  background: #111;
  padding: 32px 20px 12px 20px;
  color: #999;
  font-size: 0.98rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 12px auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: gold;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  filter: grayscale(1) brightness(1.3);
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: none;
}
.footer-bottom {
  text-align: center;
  color: #aaa;
  font-size: 0.92rem;
  margin-top: 8px;
}

/* Reveal Animation (optional, for .reveal class) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .about-content,
  .vision-content,
  .contact-content {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .navbar {
    padding: 20px 16px;
  }
}
@media (max-width: 768px) {
  .site-title {
    font-size: 1.2rem;
  }
  .hero-text {
    font-size: 2rem;
    padding: 0 10px;
  }
  .about-rca h2,
  .contact h2,
  .services h2,
  .about-vision h2 {
    font-size: 1.5rem;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .navbar {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 12px 4px;
  }
  .hero-content {
    margin-top: 80px;
  }
  .hero-image {
    max-width: 98vw;
  }
}