/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --primary-color: #104d82;
  --secondary-color: #c4a10d;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Lato', sans-serif;
}

body {
  font-family: var(--font-body);
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-secondary-custom {
  color: var(--secondary-color) !important;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #333 !important;
  margin: 0 10px;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center 30%; /* Shifted up slightly to reveal more of the logo/top area */
  background-repeat: no-repeat;
  height: 85vh; /* Increased from 60vh to make the banner much taller */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.3); /* Much more transparent */
  backdrop-filter: blur(2px); /* Slight blur to maintain legibility */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(255,255,255,0.7);
}

.hero-content p {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Base Sections */
.section-padding {
  padding: 60px 0;
}

.text-justify {
  text-align: justify;
}

/* Horizontal Animations */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.slide-in-left {
  transform: translateX(-100px);
}

.slide-in-right {
  transform: translateX(100px);
}

.slide-up {
  transform: translateY(50px);
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Custom Image Wrapper */
.img-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Values List */
.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.values-list li strong {
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 30px 0;
  text-align: center;
}
