@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: #085d40;
  border-color: #085d40;
}

.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
================================ */
/* FOOTER MAIN */
.site-footer {
  background: #085d40;
  color: #cfd3ff;
  padding: 60px 0 30px;
}

/* FLEX ROW (NO BOOTSTRAP ISSUE) */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* COLUMNS */
.footer-col {
  width: 32%;
}

/* LOGO */
.footer-logo {
  max-width: 280px;
  margin-bottom: 15px;
}

/* TITLE */
.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* TEXT */
.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #d6f5ea;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #d6f5ea;
  text-decoration: none;
  transition: 0.3s;
}

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

/* LINKS IN TEXT */
.footer-text a {
  color: #ffffff;
  text-decoration: none;
}

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

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

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-col {
    width: 48%;
    margin-bottom: 20px;
  }
}

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


/* ===== TOP BAR ===== */
.top-bar {
  background: #085d40;
  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;
}

.hero-modern{
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;

  background-image: url("images/slide1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY (VERY IMPORTANT) */
.hero-modern::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* CONTENT ABOVE OVERLAY */
.hero-modern .container{
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero-title{
  font-size: 55px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero-subtitle{
  font-size: 20px;
  color: #ddd;
  margin-top: 15px;
  line-height: 1.7;
}

/* IMAGE */
.hero-img{
  max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .hero-modern{
    min-height: 650px;
    padding: 80px 0;
  }
}

@media (max-width: 768px){
  .hero-modern{
    min-height: 550px;
    text-align: center;
  }

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

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


.about-img-circle{
  width: 650px;
  height: 650px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.about-img-circle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .about-img-circle{
    width: 250px;
    height: 250px;
    margin-top: 20px;
  }
}


#topBtn{
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  
  background: #085d40;
  color: #fff;
  border: none;
  
  width: 45px;
  height: 45px;
  border-radius: 50%;
  
  font-size: 18px;
  cursor: pointer;
  
  display: none;
  transition: all 0.3s ease;
}

#topBtn:hover{
  background: #000;
  transform: translateY(-3px);
}
