@charset "utf-8";
/* CSS Document */

/* ABOUT SECTION */
.about-image{
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.about-text{
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Bottom boxes */
.about-box{
  background:#fff;
  border-radius:14px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 0 25px rgba(0,0,0,.05);
  transition:all .3s ease;
}

.about-box:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.about-box i{
  font-size:38px;
  color:var(--primary);
  margin-bottom:15px;
}

.about-box h5{
  font-weight:700;
  margin-bottom:12px;
  color:#222;
}

.about-box p{
  font-size:15px;
  color:#666;
  line-height:1.7;
}

/* ===============================
   HERO SLIDER
================================ */

.hero-slider {
  width: 100%;
  height: 700px;
  position: relative;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 700px;
}

.hero-slider .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(46,49,146,0.75),
    rgba(65,64,66,0.75)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 220px;
  color: #ffffff;
  animation: fadeUp 1.2s ease-in-out;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Buttons */
.hero-slider .btn-primary {
  background-color: #2e3192;
  border-color: #2e3192;
}

.hero-slider .btn-primary:hover {
  background-color: #414042;
  border-color: #414042;
}

.hero-slider .btn-outline-light {
  border-width: 2px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider,
  .hero-slider .carousel-item {
    height: 520px;
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #0f122e;
  color: #cfd3ff;
  padding: 70px 0 30px;
}

.footer-logo {
  max-width: 180px;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #cfd3ff;
}

.footer-text a {
  color: #ffffff;
}

.footer-text a:hover {
  color: #2e3192;
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd3ff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Newsletter */
.footer-newsletter .form-control {
  height: 44px;
  border-radius: 4px;
  border: none;
}

.footer-newsletter .btn-primary {
  background: #2e3192;
  border-color: #2e3192;
}

.footer-newsletter .btn-primary:hover {
  background: #414042;
  border-color: #414042;
}

/* Divider */
.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 30px 0;
}

/* Bottom */
.footer-bottom {
  font-size: 13px;
  color: #aeb4ff;
}

/* Responsive */
@media (max-width: 767px) {
  .site-footer {
    text-align: center;
  }
}


/* ===== TOP BAR ===== */
.top-bar {
  background: #2e3192;
  color: #fff;
  font-size: 13px;
  height: 38px;
  line-height: 38px;
  z-index: 1040;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar i {
  margin-right: 6px;
}

/* ===== NAVBAR POSITION FIX ===== */
.navbar-main {
  top: 38px; /* height of top bar */
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

/* ===== BODY OFFSET ===== */
body {
  padding-top: 98px; /* top bar + navbar height */
}

/* ===== LOGO RESPONSIVE ===== */
.site-logo {
  max-width: 280px;
  height: auto;
  max-height: 80px;
}

@media (max-width: 991px) {
  .site-logo {
    max-width: 200px;
    max-height: 60px;
  }
}

/* Navbar brand spacing */
.navbar-brand {
  padding: 0;
}

