* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

/* Header */
.container {
  max-width: calc(1300px);
  margin: 0 auto;
  padding: 0px 15px;
}

.topbar {
  background: #0A2A52;
}

.topbar .container {
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
}

.topbar .contact-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 8px;
}

.topbar a:hover {
    color: #C89D23;
}

.social-bar a {
    width: 25px;
    height: 25px;
    background-color: #C89D23;
    padding: 5px 5px;
    border-radius: 100%;
    color: #0A2A52;
}

.social-bar a:hover {
    background-color: #fff;
    color: #0A2A52;
    transform: translateY(-3px);
}

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.nav {
  display: flex;
  gap: 25px;
  font-size: 17px;
  list-style: none;
}

.nav > li{
  position: relative;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  padding: 10px;
  width: 100%;
  display: block;
}

.nav a:hover,
.nav .current-menu-item{  
  background-color: #f5f5f5;
}

.nav a::before,
.nav .current-menu-item > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #0A2A52;
  left: 0;
  transition: width 0.3s ease;
}

.nav a::before,
.nav .current-menu-item a::before{ top: 0; }

.nav a:hover::before,
.nav .current-menu-item > a::before {
  width: 100%;
}

.sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  display: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  z-index: 999;
}

.sub-menu a{
  padding: 10px 15px;
  white-space: nowrap;
  min-width: 150px;
  font-size: 14px;
}

.menu-item-has-children:hover > .sub-menu{
  display: block;
}

.sub-menu li a:hover{
  background: #f4f4f4;
}

.menu-item-has-children > a::after{
  content: " ▾";
  font-size: 12px;
}

.menu-toggle{
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Footer */
.site-footer{
  background: #0A2A52;
  color: #e5e5e5;
  font-size: 15px;
}

.site-footer a{
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-main{
  padding: 60px 20px 50px;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.footer-col h4{
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
  position: relative;
}

.footer-col h4::after{
  content: "";
  width: 45px;
  height: 2px;
  background: #C89D23;
  display: block;
  margin-top: 8px;
}

.footer-menu{
  list-style: none;
}

.footer-menu li{
  margin-bottom: 10px;
  list-style: none;
}

.footer-menu a{
  font-size: 14.5px;
  border-bottom: 1px solid #3a5576;
  padding: 0px 0px 10px;
  width: 100%;
  display: block;
}

.footer-menu li>a::before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    padding-right: 10px;
    /* vertical-align: middle; */
}

.footer-menu a:hover{
  color: #C89D23;
}

.footer-contact{
  list-style: none;
}

.footer-contact li{
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-contact i{
  color: #C89D23;
  font-size: 15px;
  margin-top: 4px;
}

.footer-contact a:hover{
  color: #C89D23;
}

.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a{
  width: 36px;
  height: 36px;
  background: #C89D23;
  color: #0A2A52;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover{
  background: #fff;
  color: #0A2A52;
  transform: translateY(-3px);
}

.footer-map iframe{
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
}

.footer-bottom{
    padding:14px 0;
    background:#0f172a;
    color:#cbd5e1;
    font-size:14px;
}

.footer-bottom a{
    color:#ffffff;
    text-decoration:none;
    font-weight:500;
}

.footer-bottom a:hover{
    color:#ffb347;
}

.footer-bottom .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.footer-legal{    
    margin-top:0;
    text-align:right;
}

.footer-legal a{
    color:#cbd5e1;
    text-decoration:none;
    margin:0 6px;
    transition:all .25s ease;
}

.footer-legal a:hover{
    color:#ff7a18;
}

.footer-sep{
    color:#64748b;
    margin:0 4px;
}

/* RESPONSIVE */
@media (max-width: 991px){
  /* Header */
  .logo img {
    max-height: 35px;
  }

  .header .container{
    padding: 15px 20px;
  }

  .menu-toggle{
    display: block;
  }

  .nav{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .nav.active{
    display: flex;
  }

  .nav li{
    width: 100%;
    border-top: 1px solid #eee;
  }

  .nav a{
    padding: 15px 20px;
    font-size: 15px;
  }

  .sub-menu{
    position: static;
    display: none;
    box-shadow: none;
    background: #f8f8f8;
  }

  .menu-item.open > .sub-menu{
    display: block;
  }

  .sub-menu a{
    padding-left: 35px;
  }

  .menu-toggle .icon-close{
    display: none;
  }

  .menu-toggle.open .icon-open{
    display: none;
  }

  .menu-toggle.open .icon-close{
    display: inline;
  }


  /* Footer */
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main{
    padding: 50px 20px;
  }
}

@media (max-width: 500px){
  h3.title-text {
    font-size: 28px !important;
  }
  .btn-arrow {
    padding: 8px 10px !important;
  }

  /* Header */
  .topbar .container {
    font-size: 11px;
    padding: 10px 5px;
  }
  .topbar .contact-bar {
    gap: 10px;
  }
  .topbar a {
    margin-left: 3px;
  }
  .social-bar a {
    padding: 2px;
    margin-left: 0px;
  }

  /* Footer */
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col h4{
    font-size: 17px;
  }
  .footer-map iframe{
    height: 220px;
  }

  .footer-bottom .container{
    flex-direction:column;
    text-align:center;
  }

  .footer-legal{
      text-align:center;
  }
}


/* Button CSS Start */
.btn-arrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  background:#C89D23;
  color:#0A2A52;
  text-decoration:none;
  font-weight:600;
  position:relative;
  overflow:hidden;
  transition:all .3s ease;
  border: 0;
  cursor: pointer;
}

.btn-arrow i{
  font-size:13px;
  padding-top: 2px;
}

.slide-bg{
  position:relative;
  overflow:hidden;
  background:#C89D23;
  color:#0A2A52;
  z-index:1;
}

.slide-bg::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#0A2A52;
  transition:all .55s ease;
  z-index:-1;
}

.slide-bg:hover::before{
  left:0;
}

.slide-bg:hover{
  color:#fff;
}
/* Button CSS End */


h3.title-text {
  font-size: 36px;
  line-height: 1.25;
  color: #0A2A52;
  margin-bottom: 20px;
  text-align: center;
}

h3.title-text::after {
  text-align: center;
}
h3.title-text.white-sep {
  color: #fff;
}
h2.page-title{
  margin:0 0 35px;
  font-size:30px;
  color:#C89D23;
  text-align: center;
}
.title-text.yellow-sep::after {
  content: "";
  width: 65px;
  height: 4px;
  background: #C89D23;
  display: block;
  margin: 10px 0px;
}
.title-text.white-sep::after {
  content: "";  
  width: 80px;
  height: 4px;
  margin: 10px auto;
  background: #fff;
  display: block;
}

.menu-item-has-children.submenu-open > .sub-menu{
    display:block;
}