:root {
  --ltoa-orange: #ee5a24;
  --ltoa-orange-dark: #d94715;
  --ltoa-navy: #1a2a5e;
  --ltoa-navy-dark: #101c44;
  --ltoa-light: #f6f8fb;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--ltoa-navy)
}

a {
  text-decoration: none
}

.text-orange {
  color: var(--ltoa-orange) !important
}

.text-navy {
  color: var(--ltoa-navy) !important
}

.bg-navy {
  background: var(--ltoa-navy) !important;
  color: #fff
}

.bg-orange {
  background: var(--ltoa-orange) !important;
  color: #fff
}

.btn {
  padding: 12px 28px;
  font-weight: 400;
  border-radius: 4px
}

.btn-orange {
  background: var(--ltoa-orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--ltoa-orange-dark);
  color: #fff;
}

/* Top bar */
.top-bar {
  background: var(--ltoa-navy);
  color: #fff;
  font-size: 14px;
  padding: 8px 0
}

.top-bar a {
  color: #fff;
  margin-right: 18px
}

.top-bar a:hover {
  color: var(--ltoa-orange)
}

/* Navbar */
.navbar-brand img {
  height: 60px
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  padding: 10px 0
}

.navbar .nav-link {
  color: var(--ltoa-navy) !important;
  font-weight: 500;
  font-family: 'Poppins';
  margin: 0 6px;
  border-radius: 4px;
  transition: .3s;
  position: relative;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: -4px;
  height: 3px;
  background: var(--ltoa-orange);
  border-radius: 2px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--ltoa-orange) !important;
}

.btn-ltoa {
  background: var(--ltoa-orange);
  color: #fff;
  border: none;
  padding: .6rem 1.3rem;
  border-radius: 30px;
  font-weight: 500;
  transition: transform .15s, box-shadow .15s, background .2s;
}

.btn-ltoa:hover {
  background: #d75a23;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(238, 107, 47, .35)
}

/* Hero / Owl Carousel */
.hero-slider .item {
  position: relative;
  height: 650px;
  background-size: cover;
  background-position: center;
  display: flex;
}

.hero-slider .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 42, 94, .85) 0%, rgba(26, 42, 94, .55) 60%, rgba(238, 90, 36, .4) 100%)
}

.hero-slider .slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 58%;
  margin: auto;
  text-align: center;
  align-items: center;
}

.hero-slider h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15
}

.hero-slider p {
  font-size: 18px;
  margin-bottom: 24px
}



.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  margin: 0 !important;
  display: flex;
  justify-content: space-between;
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
  background: rgba(255, 255, 255, .2) !important;
  color: #fff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px !important;
  margin: 0 15px
}

.owl-theme .owl-nav button:hover {
  background: var(--ltoa-orange) !important
}

.owl-theme .owl-dots {
  position: absolute;
  bottom: 25px;
  width: 100%
}

.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, .5);
  width: 12px;
  height: 12px
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--ltoa-orange)
}



/* Sections */
section {
  padding: 70px 0
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  text-align: center
}

.section-title h6 {
  color: var(--ltoa-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 8px
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 14px
}

.section-title .divider {
  width: 80px;
  height: 3px;
  background: var(--ltoa-orange);
  margin: 0 auto
}

/* About */
.about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12)
}

.about-img img {
  width: 100%;
  display: block
}

/* Why us */
.why-us {
  background: var(--ltoa-light)
}

.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  height: 100%;
  border-top: 3px solid var(--ltoa-orange);
  transition: .3s
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.why-card .icon {
  width: 60px;
  height: 60px;
  background: var(--ltoa-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px
}

.why-card h5 {
  margin-bottom: 12px
}

/* Committee */
.member-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  text-align: center;
  transition: .3s;
  height: 100%
}

.member-card:hover {
  transform: translateY(-5px)
}

/* .member-card .avatar {
  height: 240px;
  background: var(--ltoa-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ltoa-navy);
  font-size: 80px;
  font-weight: 700;
  font-family: 'Poppins'
} */
.member-card .avatar img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}

.member-card .info {
  padding: 18px 12px
}

.member-card .info h5 {
  margin-bottom: 4px;
  font-size: 18px
}

.member-card .info span {
  color: var(--ltoa-orange);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px
}

/* FAQ */
.accordion-button:not(.collapsed) {
  background: var(--ltoa-navy);
  color: #fff;
  font-weight: 600
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--ltoa-orange)
}

.accordion-button {
  font-weight: 600;
  color: var(--ltoa-navy)
}

/* CTA */
.cta {
  background: linear-gradient(90deg, var(--ltoa-navy) 0%, var(--ltoa-orange) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center
}

.cta h2 {
  color: #fff;
  margin-bottom: 14px
}

.cta .btn {
  background: #fff;
  color: var(--ltoa-navy);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px
}

.cta .btn:hover {
  background: var(--ltoa-navy);
  color: #fff
}

/* Contact */
.contact-info-box {
  background: var(--ltoa-navy);
  color: #fff;
  padding: 35px;
  border-radius: 8px;
  height: 100%
}

.contact-info-box h4 {
  color: #fff;
  margin-bottom: 20px
}

.contact-info-box .info-item {
  display: flex;
  margin-bottom: 18px
}

.contact-info-box a {
  color: #fff;
}

.contact-info-box a:hover {
  color: var(--ltoa-orange);
}

.contact-info-box .info-item i {
  color: var(--ltoa-orange);
  font-size: 22px;
  margin-right: 14px;
  margin-top: 3px
}

.contact-form .form-control {
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #ddd
}

.contact-form .form-control:focus {
  border-color: var(--ltoa-orange);
  box-shadow: none
}

.btn-submit {
  background: var(--ltoa-orange);
  color: #fff;
  padding: 12px 35px;
  border: none;
  border-radius: 4px;
  font-weight: 600
}

.btn-submit:hover {
  background: var(--ltoa-orange-dark);
  color: #fff
}

/* Footer */
footer {
  background: var(--ltoa-navy-dark);
  color: #cfd5e6;
  padding: 60px 0 0
}

footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px
}

footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--ltoa-orange)
}

footer a {
  color: #cfd5e6;
  display: block;
  padding: 6px 0;
  transition: .2s
}

footer a:hover {
  color: var(--ltoa-orange);
  padding-left: 5px
}

.social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .1);
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  margin-right: 8px;
  padding: 0
}

.social a:hover {
  background: var(--ltoa-orange);
  padding-left: 0;
  color: #fff;
}

.copyright {
  background: #0a1330;
  padding: 18px 0;
  margin-top: 50px;
  font-size: 14px;
  text-align: center;
  color: #9aa3c0
}

.inner-hero {
  position: relative;
  min-height: 300px;
  background: linear-gradient(90deg, rgba(26, 42, 94, .88), rgba(238, 90, 36, .55)), url(../images/banner3.jpg) center / cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.inner-hero h1 {
  color: #fff;
  font-size: 42px;
}

.inner-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}

.home_future {
  background: linear-gradient(90deg, var(--ltoa-navy) 0%, var(--ltoa-orange) 100%);
}
.home_future .section-title h2{
  color: #ffffff;
}
@media(max-width:991px) {
  .navbar .nav-link {
    display: inline-block;
  }

  .navbar .nav-link.active::after {
    left: 0;
    right: 0;
    bottom: 4px;
  }
}

@media(max-width:767px) {
  .hero-slider .slide-content {
    max-width: 100%;
  }

  .hero-slider h1 {
    font-size: 22px
  }

  .hero-slider .item {
    height: 420px
  }

  .hero-slider p {
    font-size: 16px;
  }

  .about-img {
    margin-bottom: 20px;
  }

  .contact-info-box {
    padding: 15px;
    margin-bottom: 30px;
  }

  footer h5 {
    margin-top: 20px;
  }
}