/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: black;
  /*#444444*/
}

.spacer {
  height: 246px;
}

@media (max-width: 768px) {
  .spacer {
    height: 172px;
  }
}

a {
  color: #fdc134;
}

a:hover {
  color: #fdd067;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.pl-0,
.px-0 {
  padding-left: 15px !important;
}

@media (max-width: 768px) {

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;

  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #284864;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
  transition: all ease-in-out 0.3s;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #fdc134;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  padding: 16px 0;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background 0.3s ease-in-out;
  background: transparent;
}

#header.scrolled {
  background: #292929;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 87%;

}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo h1 a span,
#header .logo h1 a:hover span {
  color: #fdc134;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu ul {
  border-radius: 6px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #fdc134;
  text-decoration: none;
}

.nav-menu .active>a {
  font-weight: 600;
}

.nav-menu .get-started a {
  color: #fff;
  border-radius: 50px;
  margin: 5px 0 0 14px;
  padding: 4px 13px 4px 13px;
  border: 2px solid #fdc134;
}

.nav-menu .get-started a:hover {
  background: #fdc134;
  color: #213b52;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3e6f9b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #fdc134;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fdc134;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #213b52;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  transition: 0.3s;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #fdc134;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav .get-started a {
  background: #213b52;
  color: #fff;
  border-radius: 50px;
  margin: 15px;
  padding: 8px 25px 10px 25px;
  text-align: center;
}

.mobile-nav .get-started a:hover {
  background: #fdc134;
  color: #213b52;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(18, 33, 46, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  background: url("../img/bg-main-banner.jpg") center/cover no-repeat;
  height: 80vh;
  /* Full height */
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  /* Ensure text is readable */
  position: relative;
}

/* Background Overlay (for better text visibility) */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
}

/* Container and Content */
#hero .container {
  position: relative;
  z-index: 2;
}

/* Hero Text Styling */
#hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}

#hero h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Button Styling */
.btn-get-started {
  background: #ffcc00;
  color: #333;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-get-started:hover {
  background: #e6b800;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #hero {
    height: 80vh;

  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero h2 {
    font-size: 1.2rem;
  }

  .btn-get-started {
    padding: 10px 25px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Banner Sections
--------------------------------------------------------------*/

#breadcrumb-banner {
  background: url("../img/bg-mini-banner.jpg") center/cover no-repeat;
  height: 28vh;
  /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
  padding-top: 80px;
}

/* Overlay to improve text visibility */
#breadcrumb-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Adjust opacity for readability */
  z-index: 1;
}

/* Breadcrumb Content */
.breadcrumb-content {
  position: relative;
  z-index: 2;
}

/* Page Title */
.breadcrumb-content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Breadcrumb Links */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: #ffcc00;
  /* Change breadcrumb link color */
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #fff;
  /* Active breadcrumb color */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #breadcrumb-banner {
    height: 150px;
    /* Reduce height for smaller screens */
    padding-top: 2rem;
  }

  .breadcrumb-content h1 {
    font-size: 1.5rem;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: linear-gradient(180deg, #f2f6fa 0%, #fff 100%);
}

.section-title {
  text-align: center;
  padding-bottom: 16px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #213b52;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #fdc134;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background-color: #ffffff;
  /* White background */
  padding: 30px 0;
}

/* Flexbox to Align Logos */
.sponsor-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  /* Adjust spacing between logos */
  flex-wrap: nowrap;
  /* Ensure everything stays in one row */
}

/* Sponsor Logo Container */
.sponsor-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  /* Set uniform height */
}

/* Prevent Stretching and Keep Aspect Ratio */
.sponsor-logo {
  max-height: 80px;
  /* Ensures a consistent height */
  width: auto;
  /* Maintains aspect ratio */
  object-fit: contain;
  /* Prevents distortion */
  transition: transform 0.3s ease-in-out;
}

/* Slight Hover Effect */
.sponsor-logo:hover {
  transform: scale(1.05);
}

/* Adjust for Mobile */
@media (max-width: 768px) {
  .sponsor-container {
    flex-wrap: wrap;
    /* Allow logos to stack in mobile view */
    gap: 24px;
    /* Adjust spacing between logos */
  }

  .sponsor-logo {
    max-height: 55px;
    /* Reduce size for smaller screens */
  }

  .clients {
    padding: 24px 0;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  /* padding: 30px 0; */
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #213b52;
}

.about .content p {
  margin-bottom: 0;
}

.about .content .icon-box {
  margin-top: 25px;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #213b52;
}

.about .content .icon-box h4 a {
  color: #213b52;
  transition: 0.3s;
}

.about .content .icon-box h4 a:hover {
  color: #fdc134;
}

.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #fdc134;
}

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.about ol {
  margin-left: 0 !important;
  padding-left: 0.5rem !important;
}

.about ol li {
  margin-left: 0 !important;
  padding-left: 0.5rem !important;
  padding-bottom: 12px;
}

.about ol li::marker {
  margin-left: 0 !important;
  color: #213b52;
  font-weight: 600;
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 40px;
}

.services .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}

.services .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.services .card-img img {
  max-width: 100%;
  height: 356px;
  transition: all 0.3s ease-in-out;
}

.services .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.services .card-title a {
  color: #213b52;
  transition: 0.3s;
}

.services .card-text {
  color: #5e5e5e;
}

.services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.services .read-more a:hover {
  color: #fdc134;
}

.services .card:hover img {
  transform: scale(1.1);
}

.services .card:hover .card-body {
  border-color: #fdc134;
}

.services .card:hover .card-body .card-title a {
  color: #fdc134;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .content+.content {
  margin-top: 100px;
}

.features .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #213b52;
}

.features .content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.features .content ul li {
  padding-bottom: 6px;
  padding-left: 30px;
  list-style: none;
  position: relative;
}

.features .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #fdc134;
  position: absolute;
  left: 0;
}

.features .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 5px 5px 0;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fdc134;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(33, 59, 82, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 36px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fdc134;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 18px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
}

.team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  min-height: 260px;
}

.team .member .pic img {
  max-width: 100%;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #213b52;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #5289ba;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #fdc134;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
  position: relative;
}

.pricing .featured-badge {
  display: inline-block;
  position: absolute;
  top: -11px;
  left: calc(50% - 49px);
  background: #fdc134;
  color: #fff;
  text-align: center;
  line-height: 1;
  border-radius: 50px;
  padding: 4px 20px 5px 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #fdc134;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #fdc134;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #213b52;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #fdc134;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
  border: 1px solid #fdc134;
}

.pricing .featured .get-started-btn {
  background: #fdc134;
}

.pricing .featured .get-started-btn:hover {
  background: #fdcd5c;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 32px 0 0 0;
  padding: 32px 0 0 0;
  border-top: 1px solid #dde8f1;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 16px 0;
  font-family: "Poppins", sans-serif;
}

.faq h3 {
  font-weight: 700;
  font-size: 26px;
  color: #213b52;
}

@media (max-width: 768px) {
  .faq .faq-item h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 10px;
  padding-bottom: 8px;
}

.contact .info-box {
  color: black;
  /*#444444*/
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #284864;
  /* #fdc134*/
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #284864;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #213b52;
  /*#777777*/
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .info-box a {
  color: #213b52;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ffcc00;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #fdc134;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #fdc134;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #fdd067;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* contact from ciite */

.contact-column .contact-box-layout .title {
  margin-bottom: 15px;
}

.contact-column .contact-box-layout .contact-info-tabs .title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #020441;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.contact-column .contact-info li {
  list-style: none;
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.contact-column .contact-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  text-align: center;
  font-size: 24px;
  line-height: 48px;
  background-color: #020441;
  color: #FFFFFF;
  border-radius: 10px;
}

.contact-column .contact-info li .title {
  display: block;
  font-size: 22px;
  line-height: 20px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-column .contact-info li p {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #777777;
  font-weight: 400;
  margin: 0;
}

.contact-column .contact-info li p a {
  color: #020441;
}

.contact-column .contact-box-layout .title {
  margin-bottom: 15px;
}

.contact-column .contact-box-layout .contact-info-tabs .title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}


.contact-info-tabs ul,
.contact-info-tabs li {
  list-style: none;
  margin-bottom: 10px;
  padding-left: 0;
}

.contact-info-tabs .tab-btn {
  position: relative;
  float: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #ffffff;
  background-color: #284864;
  padding: 10px 25px;
  margin-bottom: -2px;
  z-index: 3;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.contact-info-tabs .tab-btn.tab-btn1 {
  z-index: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 10px 0 0 0;
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.1);
}

.contact-info-tabs .tab-btn.tab-btn2 {
  z-index: 0;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 10px 0 0;
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.1);
}

.contact-info-tabs .tab-btn:hover {
  background-color: #fdc134;
}

.contact-info-tabs .tab-btn.active-btn {
  color: #284864;
  background-color: #ffffff;
}

.contact-info-tabs .tabs-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 0 10px 10px 10px;
  padding: 25px 25px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}

.contact-info-tabs .tabs-content ul {
  padding-left: 0;
}

.contact-info-tabs .tabs-content .info-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  font-weight: 400;
}

.contact-info-tabs .tabs-content .info-list li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 26px;
  color: #284864;
}

.contact-info-tabs .tabs-content .info-list li:not(:last-child) {
  margin-bottom: 10px;
}


.tabs-box .tab {
  display: none;
}

.tabs-box .tab.active-tab {
  display: block;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #292929;
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #fdc134;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #fcb102;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #284864;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #fcb102;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #1a2e40;
  z-index: 2;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    padding: 5px;
    float: none;
    text-align: center;
  }
}

.custom-align {
  text-align: justify;
}

/*--------------------------------------------------------------
# prayer image section
--------------------------------------------------------------*/

.prayer-img {
  width: 100%;
  /* Make the images responsive */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 10px;
  /* Optional rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Adds shadow */
}

.d-flex.justify-content-center.flex-wrap figure {
  margin: 0 15px;
  /* Adds space between the images */
  max-width: 450px;
  /* Keeps each figure within the correct size */
}

@media (max-width: 768px) {
  .d-flex.justify-content-center.flex-wrap figure {
    margin: 10px 0;
    /* Stack images on mobile with spacing */
  }
}

/* mini-banner */
.mini-banner {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* mini-banner */
.mini-banner-2 {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* Mobile Styling - 1:1 Ratio */
@media (max-width: 768px) {
  .mini-banner {
    width: 100%;
    height: 80vw;
    /* 1:1 aspect ratio (equal width & height) */
    object-fit: cover;
    /* Ensures full coverage */
    object-position: center center;
    /* Centers the image */
    border-radius: 10px;
  }
}

/*--------------------------------------------------------------
# Step Grab section
--------------------------------------------------------------*/

.swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* Show only the active slide */
.swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}

.swiper-slide img {
  max-height: 700px;
}

@media (max-width: 768px) {
  .swiper-slide img {
    max-height: 628px;
  }
}

.progress-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  /* Increase width for better spacing */
  max-width: 424px;
  /* Set max width for better control */
  margin: 10px auto auto auto;
  position: relative;
}

.progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  /* Ensure it aligns perfectly */
  width: 100%;
  height: 4px;
  background-color: #ccc;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: #284864;
  transform: translateY(-50%);
  transition: width 0.4s ease-in-out;
  z-index: 1;
  border-radius: 4px;
}

.step {
  flex: 0 1 auto;
  /* Prevents forced equal width */
  width: 45px;
  /* Set a fixed width */
  height: 45px;
  /* Ensure uniform height */
  border: 3px solid #aaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin: 0;
  /* Increase spacing between steps */
}

/* Active Step */
.step.active {
  border-color: #284864;
  color: #284864;
}


/* Ensuring the last step is active when reached */
.step:last-child.active {
  border-color: #284864;
  color: #284864;
}

@media (max-width: 768px) {

  .progress-container {
    width: 80%;
    /* Allow more space for smaller screens */
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Box Button Main Page section
--------------------------------------------------------------*/

.custom-card {
  min-height: 156px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Icon container */
.icon-container {
  width: 60px;
  height: 60px;
  background-color: #fbc02d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -50px auto 10px;
  transition: all 0.3s ease-in-out;
}

.icon-container:focus-visible {
  outline-color: #fbc02d !important;

}

/* Icon */
.icon-container i {
  font-size: 24px;
  color: white;
  transition: all 0.3s ease-in-out;
}

/* Title */
.card-title {
  font-size: 20px;
  font-weight: bold;
  color: #34495e;
  transition: all 0.3s ease-in-out;
}

/* Text */
.card-text {
  font-size: 1rem;
  color: #666;
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.custom-card:hover {
  border-color: #fbc02d;
}

.custom-card:hover .icon-container {
  background-color: white;
  border: 2px solid #fbc02d;
}

.custom-card:hover .icon-container i {
  color: #fbc02d;
}

.custom-card:hover .card-title {
  color: #fbc02d;
}

.custom-card:hover .card-text {
  color: #fbc02d;
}

@media (max-width:768px) {
  .custom-card {
    min-height: 143px;
  }
}

/*--------------------------------------------------------------
# Countdown Main Page Banner
--------------------------------------------------------------*/
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#countdown {
  display: flex;
  justify-content: center;
  align-items: center;
}

#countdown ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
}

#countdown li {
  text-align: center;
  font-size: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

#countdown li span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  width: 110px;
  height: 100px;
  border: 3px solid white;
  border-radius: 15px;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}

/* Adjust for mobile */
@media (max-width: 768px) {
  #countdown ul {
    gap: 20px;
  }

  #countdown li {
    font-size: 1em;
  }

  #countdown li span {
    width: 72px;
    height: 70px;
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Timeline Main Page
--------------------------------------------------------------*/
.timeline {
  margin: 0 auto;
  max-width: 800px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  font-family: "Poppins", sans-serif;
  color: #1b2c48;
  /* Your website's dark blue */
}

/* Timeline Elements */
.timeline__component {
  margin: 0 20px 20px 20px;
}

.timeline__component--bg {
  padding: 40px 20px 40px 20px;
  background: white;
  /* Light gold background */
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  border-left: 4px solid #284864;
  text-align: center;
}

/* Ensure bottom margin is consistent */
.timeline__component--bottom {
  margin-bottom: 0;
}

/* Middle Line */
.timeline__middle {
  top: 5%;
  position: relative;
  background: #284864;
  /* Dark blue line */
  width: 3px;
}

/* Timeline Points */
.timeline__point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #fbc02d;
  /* Gold points */
  border-radius: 50%;
}

/* Bottom Point */
.timeline__point--bottom {
  top: initial;
  bottom: 0;
}

/* Right-aligned dates */
.timeline__date--right {
  text-align: right;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #1b2c4899;
}

.timeline__date {
  font-size: 1.2rem;
  color: #1b2c4899;
  text-transform: uppercase;
}

/* Timeline Titles */
.timeline__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #284864;
}

@media (max-width: 768px) {
  .timeline {
    display: none;
  }

  .timeline__middle {
    display: none;
  }

  .timeline__date,
  .timeline__date--right {
    text-align: center;
    padding-top: 10px;
    font-weight: 600;
  }

  /* Timeline Elements */
  .timeline__component {
    margin: 0 20px 10px 20px;
  }

}

/*--------------------------------------------------------------
# Timeline mobile
--------------------------------------------------------------*/

.tmln__list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 24px;
}

@media (max-width: 768px) {
  .tmln__list {
    display: block;
  }
}

.tmln__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 2px;
  height: 100%;
  background-color: #1b2c4899;
}

.tmln__item {
  background-color: #ffffff;
  border-left: 4px solid #284864;
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}

.tmln__item::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -31px;
  width: 16px;
  height: 16px;
  background-color: #fbc02d;
  border-radius: 50%;
}

.tmln__item span[data-title] {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  display: block;
  margin-bottom: 8px;
}

.tmln__item-headline {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1b2c48;
}

/* hero main page */
/* =========================
   HERO (SEA-CICSIC style)
   ========================= */

.hero-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.hero-year {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-year-line {
  width: 110px;
  height: 1px;
  background: rgba(230, 185, 80, 0.55);
}

.hero-year-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e6b950;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
}

.hero-title {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 auto 22px;
  max-width: 920px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(25, 25, 25, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.hero-meta-item i {
  font-size: 18px;
  color: #e6b950;
}

.hero-meta-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #e6b950;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.2);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-hero:hover {
  background: transparent;
  border: 2px solid #e6b950;
  color: #e6b950;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .hero-title { font-size: 26px; }
  .hero-year-line { width: 70px; }
  .hero-meta {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 22px;
  }
  .hero-meta-item { white-space: normal; }
  .hero-meta-divider { display: none; }
}

.hero-cta {
  display: flex;
  justify-content: center;
}
