:root {
  --primary-color: #1a237e; /* Deep Navy Blue */
  --primary-light: #e8eaf6;
  --secondary-color: #ffca28; /* Gold/Amber */
  --secondary-light: #fff8e1;
  --text-dark: #2c3e50;
  --text-light: #95a5a6;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #151b60;
  border-color: #151b60;
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 80px; /* Offset fixed navbar */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-image-container {
  width: 75%;
  perspective: 1000px;
  z-index: 1;
}

.hero-image-container .card {
  transition: transform 0.5s ease;
}

.hero-image-container:hover .card {
  transform: rotateY(-5deg) rotateX(5deg);
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Utilities */
.bg-gold {
  background-color: var(--secondary-color);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-warning-light {
  background-color: var(--secondary-light);
}

.bg-success-light {
  background-color: #e8f5e9;
}

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

/* Features Section */
.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer a.hover-white:hover {
  color: #fff !important;
}

/* General Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
    padding-bottom: 60px;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .hero-image-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Blog Section */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 10px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 60px;
    line-height: 1.2;
}

.blog-date .day {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.blog-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
}

.section-title-center {
    position: relative;
    display: inline-block;
    padding-bottom: 0px; 
}
