@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Polargo'; /* You can name the font anything you like */
  src: url('../font/polargo.otf') format('opentype'),
       url('../font/polargo.ttf') format('truetype'),
       url('../font/tahoma.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Tahoma'; /* You can name the font anything you like */
  src:  url('fonts/tahoma.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}
body {
    
}

/* Navbar Start */

.top_menu {
  position: relative;
  background-color: white; /* fallback if image not loaded */
  background-image: url('../img/bg_parallax.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 10px 0; */
  transition: background 0.4s ease;
}

/* overlay layer for readability */
.top_menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1); /* light overlay (keeps it corporate clean) */
  z-index: 1;
}

.top_menu .container {
  position: relative;
  z-index: 2; /* bring text above overlay */
}

/* keep your font family and spacing */
.top_menu .privacy_menu,
.top_menu .email_menu,
.top_menu .telephone_menu {
  color: #222; /* default text color */
  font-family: 'Polargo', sans-serif;
  font-weight: 400 !important;
  gap: 1rem;
  transition: color 0.3s ease;
}

/* when using image bg, make text darker or lighter depending on design */
.top_menu.bg-image-active .privacy_menu,
.top_menu.bg-image-active .email_menu,
.top_menu.bg-image-active .telephone_menu {
  color: #fff;
}

.top_menu.bg-image-active::before {
  background: rgba(0, 0, 0, 0.45); /* darker overlay when active */
}

/* hover effects */
.top_menu .email_menu:hover,
.top_menu .telephone_menu:hover {
  color: #daa600; /* NASBI gold tone */
}

/* maintain layout spacing */
.top_container {
  gap: 1rem;
}

.navbar.navbar_bg {
  background-color: #1d2a3a !important;
}

.nav_menu .nav-link {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  font-family: 'Polargo', sans-serif;
}
.nav_menu .nav-link.active {
  color: white !important;
  background-color: #daa600;
  border-radius: 20px;
}
.nav_menu .dropdown-item.active {
  background-color: #daa600;
}

.nav_menu .nav-link:hover {
    color: white;
  background-color: #daa600;
  border-radius: 20px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown on hover */
}

.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #daa600;
    color: white; /
}
/* Navbar End */
/* ================================= */
/* Banner Start */
.banner_wrapper,
.banner_wrap,
.carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

/* Transparent black overlay */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    z-index: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;   /* laki ng arrow */
  height: 40px;  /* laki ng arrow */
  background-size: 100% 100%; /* para hindi ma-crop ang icon */
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;  /* pwede mong paliitin/lakihan yung clickable area */
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 2 !important; /* mas mataas kaysa sa container */
}

.carousel-indicators [data-bs-target] {
  width: 80px !important;   /* laki ng dot */
  height: 5px !important;
   /*border-radius: 50%;  bilog */
  background-color: #000; /* kulay */
}



/* Content */
.carousel-caption-left {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    text-align: left;
}

.banner-content {
    max-width: 70%;
}

/* Tagline */
.banner-tagline {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: 'Polargo', sans-serif;
    width: 70%;
    line-height: 1;
}

/* Company Name */
.banner-title {
    font-size: 3.3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Polargo', sans-serif;
  
}
/* CTA Buttons */
.banner-cta {
    
    width: 50%;
}
.banner-cta .btn {
    padding: 10px 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;

}

.cta_btn1 {
    background-color: #daa600 !important;
    color: white !important;
    text-transform: uppercase;
}
.cta_btn1:hover {
    background-color: white !important;
    color: #daa600 !important;
}


/* Banner End */
/* =============================================== */
/* About Us Start */
.aboutUs_wrapper {
    padding: 100px 0px;
    background-color: #daa600;
}
.aboutUs_header {
    color: #1D2A3A;
    font-weight: 700;
    font-family: 'Tahoma', sans-serif;
}
.aboutUs_subheader {
    color: white;
    font-weight: 500;
    font-family: 'Polargo', sans-serif;
}
.aboutUs_desc {
    text-align: justify;
    font-weight: 500;
    font-size: 1.3rem;
    color: white;
    font-family: 'Polargo', sans-serif;
}
.aboutUs_cta {
    padding-top: 30px !important;
}
.aboutUs_btn {
    color: white !important;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}
.aboutUs_btn:hover {
    color: #1D2A3A!important;
}
.aboutUs_img img {
    max-width: 90%;
    height: auto;
    display: block; /* tanggalin extra spacing sa ilalim ng inline image */
    object-fit: contain;
    border-radius: 30px;
}
/* About Us End */
/* Parallax */
.parallax_wrapper {
    background-image: url('../img/bg_parallax.jpg');
    background-attachment: fixed;
    background-position: bottom;
    background-size: cover;
    position: relative;
    width: 100%;
}

.parallax_overlay {
    background: rgba(255, 255, 255, 0.4);
    /* padding: 100px 0; */
}

/* Parallax */
/* Our History Start */
.ourHistory_wrapper {
    padding: 100px 0px;
}
.ourHistory_header {
    color: #1D2A3A;
    font-weight: 700;
    font-family: 'Tahoma', sans-serif;
}
.ourHistory_subheader {
    color: #daa600;
    font-weight: 500;
    font-family: 'Polargo', sans-serif;
}
.ourHistory_card {
    background-color: #ffffff;
    border-radius: 20px !important;
    box-shadow: 0 0 20px rgba(218, 166, 0, 0.5);
    padding: 15px;
    margin: 0px 25px;
    /* border: 1px solid #f0f0f0; */

}

.ourHistory_card-body {
    background: linear-gradient(180deg, #fff 0%, #fffefc 100%);
    border-radius: 15px;
}

.ourHistory_desc {
    text-indent:2em;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
    font-family: "Polargo", sans-serif;
}
.ourHistory_img img {
    max-width: 100%;
    height: auto;
    display: block; /* tanggalin extra spacing sa ilalim ng inline image */
    object-fit: contain;
    border-radius: 30px;
}
.ourHistory_cta {
    margin-top: 80px !important;
}
.ourHistory_btn {
    color: white !important;
    background-color: #FFC107 !important;
    font-size: 1.4rem;
    font-weight: 700 !important;
    padding: 8px 50px !important;
    font-family: 'Lato', sans-serif;
}
.ourHistory_btn:hover {
    color: #1D2A3A!important;
}
/* Our History End */
/* Announcements Start */
.announcements_wrapper {
    padding: 100px 0px;
    background-color: #f9f6ec;
}
.announcements_header {
    color: #1D2A3A;
    font-weight: 700;
    font-family: 'Tahoma', sans-serif;
}
.announcements_subheader {
    color: #daa600;
    font-weight: 500;
    font-family: 'Polargo', sans-serif;
}
.announcements_desc {
    /* text-align: justify; */
    font-weight: 500;
    font-size: 1.3rem;
    font-family: 'Polargo', sans-serif;
}
.announcements_cta {
    margin-top: 80px !important;
}
.announcements_btn {
    color: white !important;
    background-color: #FFC107 !important;
    font-size: 1.4rem;
    font-weight: 700 !important;
    padding: 8px 50px !important;
    font-family: 'Lato', sans-serif;
}
.announcements_btn:hover {
    color: #1D2A3A!important;
}
.announcements_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 15px !important;
    box-shadow: 0 0 20px rgba(218, 166, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}


.announcements_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(218, 166, 0, 0.8);
}
/* Maintain consistent image ratio */
.announcements_image_wrap {
    height: 230px;
    overflow: hidden;
}
/* Image style */
.announcements_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Title */
.announcements_cardTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Description */
.announcements_cardDesc {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    font-family: 'Tahoma', sans-serif;
}

/* Footer link */
.announcements_card .card-footer a {
    color: #daa600;
    font-weight: 500;
    font-family: 'Tahoma', sans-serif;
}

.announcements_card .card-footer {
    
    margin-bottom: 20px;
}

.announcements_card .card-footer a:hover {
    text-decoration: underline;
}
/* Announcements End */
/* Partnerships Start */
.partnerships_wrapper {
    padding: 120px 0px;
}

/* Header */
.partnerships_title {
    color: #1D2A3A;
    font-weight: 700;
    font-family: 'Tahoma', sans-serif;
}

.partnerships_subtitle {
    color: #daa600;
    font-weight: 500;
    font-family: 'Polargo', sans-serif;
}

/* FULL-WIDTH GOLD SECTION */
.partnerships_section {
    width: 100%;
    background-color: #daa600;
    padding: 60px 0;
}

/* White Card inside */
.partnerships_card {
    background: #fff;
    margin: 0 auto;
    padding: 0;
}

/* Logo Style */
.partnerships_logo {
    height: auto;
    width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partnerships_logo:hover {
    transform: scale(1.05);
}

/* Partnerships End */
/* ContactUs Start */
.contactUs_wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: url('/img/contact_us_homebg.png') no-repeat center center/cover;
    color: #fff;
}

.contactUs_overlay {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for contrast */
    text-align: center;
    padding: 80px 20px;
}

.contactUs_title {
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Polargo', sans-serif;
}

.contactUs_subtitle {
    font-size: 1.7rem;
    color: #FFC107; /* gold accent */
    font-weight: 600;
    font-family: 'Tahoma', sans-serif;
}

.contactUs_text {
    font-size: 1.7rem;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 1px;
    width: 50%;
    font-family: 'Polargo', sans-serif;
}

.contactUs_btn {
    color: white !important;
    background-color: #FFC107 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    padding: 12px 40px !important;
}

.contactUs_btn:hover {
    background-color: white !important;
    color: #FFC107 !important;
}

/* Contact Us End */
/* Footer Start */
.footer_wrapper {
    background: #fff;
    color: #000;
}
.footer_container {
    padding: 60px 0px;
}

.footer_title {
    color: #daa600;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Lato", sans-serif;
}

.footer_links a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: 'Polargo', sans-serif;
}

.footer_links a:hover {
    color: #daa600;
}

.footer_logo {
    max-width: 280px !important;
}

.footer-item {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    color: #000;
    font-family: 'Polargo', sans-serif;
}

.footer-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


.footer_bottom {
    background-color: #15223b;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer_privacy {
    color: #daa600;
    text-decoration: none;
}

.footer_privacy:hover {
    text-decoration: underline;
}

.text-gold {
    color: #daa600;
}

/* Footer End */


/* Scroll To Top CSS Start */
/* Style for the button */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #217bf4;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
}

/* Style for the button when hovering over it */
#scrollToTop:hover {
    background-color: #241e5f;
}
