@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

:root {
  --primary: #231f20;
  --secondary: #55565b;
  --accent: #e0b507;
  --secondary-accent: #d9a66b;
  --neutral: #f0f4f3;
  --text-dark: #333333;
  --text-light: #ffffff;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--text-light);
  padding-top: 50px;
  transition: padding-top 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  margin: 20px 0 5px;
  line-height: 1.2;
  font-weight: 600;
  transition: 0.5s;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.25rem; margin-bottom: 20px; }
h6 { font-size: 0.875rem; }

a {
  color: #e0b507;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  text-decoration: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
}

a,
i,
ol,
li,
ul {
  font-style: normal;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

*::-moz-selection {
  background: #6a0dad;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #E0B507;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #E0B507;
  color: #fff;
  text-shadow: none;
}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #e0b507;
  color: var(--text-light);
  padding: 5px 0;
  z-index: 2;
  transition: transform 0.3s ease;
}

.top-bar.hidden {
  transform: translateY(-100%);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-light);
}

.top-bar .social-icons a {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.top-bar .social-icons a:hover {
  color: var(--secondary-accent);
}

@media (max-width: 991px) {
  .top-bar .social-icons {
    display: none;
  }
}

@media (max-width: 767px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .top-bar p {
    margin-bottom: 10px;
  }

  .top-bar .social-icons {
    display: none;
  }
}

/* Navbar */
.navbar {
  background: var(--primary);
  padding: 5px 0;
  transition: all 0.3s ease;
  top: 35px;
}

.navbar.no-top-bar {
  top: 0;
}

.navbar-brand img,
.offcanvas img {
  height: 45px;
}

.offcanvas {
  background: var(--primary);
  color: var(--text-light);
  z-index: 1051;
}

.offcanvas .nav-link {
  color: var(--text-light) !important;
  font-size: 1rem;
  padding: 15px;
  transition: color 0.3s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
  color: #FFD807 !important;
}

/* Hero Carousel */
.hero-carousel .carousel-item {
  position: relative;
  height: calc(100vh - 95px);
  background-size: cover;
  background-position: center;
}

.hero-carousel .carousel-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--text-light);
  padding: 30px;
  box-sizing: border-box;
}

.hero-carousel .overlay h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 15px;
}

.hero-carousel .overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero-carousel .carousel-item h1,
.hero-carousel .carousel-item p {
  max-width: 80%;
}

.hero-carousel .overlay .btn-custom {
  background-color: #f8cd07;
  color: #000000;
  border: none;
  padding: 12px 24px;
  transition: background-color 0.3s ease;
}

.hero-carousel .overlay .btn-custom:hover {
  background-color: #e0b507;
  color: #000000;
}

@media (max-width: 768px) {
  .hero-carousel .overlay h1 {
    font-size: 2rem;
  }

  .hero-carousel .overlay p {
    font-size: 1rem;
  }

  .hero-carousel .overlay {
    padding: 15px;
  }
}


.header-banner {
  position: relative;
  background-image: url('../images/bg/breadcrumb.jpg');
  background-size: cover;
  background-position: center;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.header-banner h1,
.header-banner p.lead {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.header-banner h1 {
  font-size: 2rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
}

.header-banner p.lead {
  font-size: 1rem;
  margin-top: 0.5rem;
}


/* About Us */
.about-section {
  padding: 100px 0;
  background: var(--neutral);
}

.about-section img {
  border-radius: 12px;
  /*max-height: 400px;*/
  object-fit: cover;
}

.about-section h2,
.about-section p {
  color: var(--text-dark);
}

/* Services Section */
.section-title small {
  color: #f4af0b;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2 {
  font-weight: 600;
  font-size: 2.5rem;
  color: #0d1b39;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.service-box i {
  font-size: 50px;
  color: #e0b507;
  margin-bottom: 15px;
}

.service-box h5 {
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.service-box p {
  color: #6c757d;
  font-size: 15px;
}

.service-section {
  padding: 80px 0;
  background: var(--neutral);
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.service-text {
  flex: 1;
}

.service-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.service-image {
  flex: 1;
  max-width: 50%;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Service Overview */
.service-overview {
  padding: 80px 0;
  background: var(--text-light);
}

.service-overview h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.service-card {
  background: var(--neutral);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
}

/* What Sets Us Apart */
.what-sets-us {
  padding: 80px 0;
  background: var(--neutral);
}

.what-sets-us h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}

.what-sets-us .row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.what-sets-us .feature-item {
  display: flex;
  align-items: flex-start;
  width: calc(50% - 7.5px);
  padding: 10px;
}

.what-sets-us .feature-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-right: 10px;
  flex-shrink: 0;
}

.what-sets-us .feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.what-sets-us .feature-text p {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
    text-align: center;
  }

  .service-text p {
    font-size: 1rem;
  }

  .service-image {
    max-width: 100%;
    margin-top: 20px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .what-sets-us .feature-item {
    width: 100%;
    /*flex-direction: column;
    text-align: center;*/
  }

  .what-sets-us .feature-icon {
    margin-right: 5px;
    margin-bottom: -15px;
  }
}



/* Strategic Approach - Vertical Tabs with Content on Right */
.step-section {
  padding: 100px 0;
  background: var(--text-light);
}

.step-section .section-title small {
  color: #e0b507;
  font-weight: 600;
}

.step-section .section-title h2 {
  font-weight: 600;
  font-size: 2rem;
  color: #0d1b39;
}

.step-section .nav-pills .nav-link {
  color: #0d1b39;
  font-weight: 600;
  text-align: left;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.step-section .nav-pills .nav-link::before {
  content: attr(data-step);
  background-color: #e0b507;
  color: #fff;
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.step-section .nav-pills .nav-link.active {
  background-color: #e0b507;
  color: #fff;
}

.step-section .tab-content .tab-pane {
  padding-left: 2rem;
}

.step-section .tab-content .tab-pane.active {
  display: block;
}

.step-section .tab-pane i {
  font-size: 2rem;
  color: #e0b507;
  margin-bottom: 0.75rem;
}

.step-section .tab-pane h5 {
  font-weight: 600;
  color: #0d1b39;
}

.step-section .tab-pane p {
  color: #6c757d;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .step-section .tab-content {
    display: block !important;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .step-section .nav-pills {
    flex-direction: column;
  }

  .step-section .nav-pills .nav-link {
    flex-direction: row;
    align-items: center;
  }

  .step-section .tab-content .tab-pane {
    padding-left: 0;
    padding-top: 0.5rem;
    display: none;
    margin-bottom: 1rem;
  }

  .step-section .tab-content .tab-pane.active {
    display: block;
  }
}

/* Why Choose Us */
.why-choose-section {
  padding: 60px 0;
  background: var(--neutral);
}

.why-choose-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-choose-section h6 {
  color: #e0b507;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1d;
}

.why-choose-section p.lead {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.why-choose-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.why-choose-list .feature-icon {
  font-size: 1.8rem;
  color: #e0b507;
  margin-right: 15px;
  flex-shrink: 0;
}

.why-choose-list h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-choose-list p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* Mission & Vision */
.mission-vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 50%);
  color: var(--text-light);
}

/* Core Values */
.core-values-section {
  padding: 100px 0;
  background: var(--text-light);
}

.core-values-section h2 {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.value-card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: var(--neutral);
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.value-card:hover {
  transform: scale(1.05);
}

.value-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .value-card {
    margin-bottom: 20px;
  }
}

/* Quality Policy */
.quality-section {
  padding: 100px 0;
  background: var(--neutral);
}

.quality-section h2,
.quality-section p {
  color: var(--text-dark);
}

/* Main Activities */
.activities-section {
  padding: 80px 0;
  background: var(--neutral);
}

.activities-section h2 {
  text-align: center;
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.activity-card {
  background: var(--text-light);
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.activity-card .icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 15px;
  flex-shrink: 0;
}

.activity-card .card-title {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  text-align: left;
}

/* Statistics */
.stats-section {
  padding: 100px 0;
  background: var(--primary);
  color: var(--text-light);
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
}

.stat-item p {
  color: var(--text-light);
}

/* Testimonials */
.testimonial-section h2 {
  font-weight: 800;
  font-size: 2.5rem;
  color: #0d1b39;
}

.testimonial-section small {
  color: #f4af0b;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonial-section p.subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: auto;
  font-size: 15px;
}

.testimonial-card {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  margin: 10px;
}

.testimonial-card .fa-star {
  color: #FFC107;
}

.testimonial-card p {
  color: #6c757d;
  font-size: 15px;
}

.testimonial-card .profile {
  display: flex;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}

.testimonial-card .profile img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.testimonial-card .name {
  font-weight: 700;
  color: #0d1b39;
  margin-bottom: 0;
}

.testimonial-card .role {
  color: #6c757d;
  font-size: 14px;
}

.slick-dots li button:before {
  font-size: 16px;
  color: #ccc;
}

.slick-dots li.slick-active button:before {
  color: #e0b507 !important;
  font-size: 18px;
}


.projects-table th {
  background-color: #E0B507;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.projects-table tbody tr:nth-child(odd) {
  background-color: #f8f9fa;
}

.projects-table tbody tr:hover {
  background-color: #e6f7f1;
}

.table-container {
  padding: 2rem 1rem;
}

@media (max-width: 768px) {
  .table-responsive {
    font-size: 0.875rem;
  }
}


.contact-section {
  padding: 80px 0;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-section h6 {
  color: #e0b507;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1d;
}

.contact-detail-item {
  margin-bottom: 40px;
}

.contact-detail-item i {
  font-size: 1.6rem;
  color: #e0b507;
  margin-top: 25px;
  margin-right: 15px;
}

.contact-detail-item h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-detail-item p {
  margin-bottom: 0;
  color: #555;
}

.contact-socials h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
  letter-spacing: 0.5px;
}

.contact-socials a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: #f4f4f4;
  margin-right: 10px;
  color: #1d1d1d;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background-color: #e0b507;
  color: #fff;
}

.contact-form .form-control {
  border-radius: 0.375rem;
  padding: 10px 15px;
}

.contact-form .btn {
  background-color: #e0b507;
  color: #fff;
  font-weight: 600;
  border-radius: 0.375rem;
}

.contact-form .btn:hover {
  background-color: #c8a204;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  margin-top: 80px;
}

/* Recent Blog/Insights Section */
.blog-section {
  padding: 100px 0;
  background: var(--neutral);
}

.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: var(--text-light);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  color: var(--text-dark);
}

.blog-card .btn:hover {
  background: #e0b507 !important;
  border-color: #e0b507 !important;
}


.blog-post-section {
  color: #333;
  padding: 0 0 50px;
}
.blog-post-section .main-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
.blog-post-section .main-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.blog-post-section .main-content .meta {
  color: #718096;
  font-size: 0.875rem;
  margin-top: 10px;
}
.blog-post-section .main-content .title {
  color: #2d3748;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
}
.blog-post-section .main-content .quote {
  background-color: #edf2f7;
  padding: 15px;
  border-left: 4px solid #8bad7b;
  font-style: italic;
  color: #2d3748;
  margin: 20px 0;
}
.blog-post-section .main-content ul {
  padding-left: 20px;
  padding-bottom: 10px;
}
.blog-post-section .main-content ul li{
  list-style: disc;
}
.sidebar {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}
.sidebar h4 {
  color: #46105B;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.sidebar .blog-search-box {
  position: relative;
  margin-bottom: 20px;
}
.sidebar .blog-search-box input {
  width: 100%;
  padding: 8px 30px 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.875rem;
}
.sidebar .blog-search-box .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #8bad7b;
  background-color: transparent;
  border: none;
  font-size: 1rem;
}
.sidebar .recent-posts .post-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sidebar .recent-posts .post-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}
.sidebar .recent-posts .post-item a {
  color: #2d3748;
  text-decoration: none;
  font-size: 0.875rem;
}
.sidebar .recent-posts .post-item a:hover {
  color: #8bad7b;
}
.sidebar .recent-posts .post-date {
  color: #718096;
  font-size: 0.75rem;
}


.pagination .page-item {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  background: #7B7979;
  color: #333;
  transition: all 0.3s ease;
}
.pagination .page-item.active {
  background: #e0b507;
  color: white;
}
.pagination .page-item:hover {
  background: #e0b507;
  color: white;
}

.affiliations-section {
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

.affiliations-ticker {
  padding: 0 30px;
}

.affiliation-logo img {
  max-height: 60px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.affiliation-logo img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Call to Action */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg/cta.webp');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 80px 0 60px;
}

footer .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-accent);
}

footer a i {
  color: var(--text-light);
  transition: color 0.3s ease;
}

footer a:hover i {
  color: var(--secondary-accent);
}
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    margin: 0;
}

.footer-bottom .designed-by {
    margin: 0;
}

@media (max-width: 767.98px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .copyright,
    .footer-bottom .designed-by {
        margin-bottom: 10px;
    }
}

/* Scroll to Top and WhatsApp Buttons */
.scroll-to-top,
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #e0b507;
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 3;
  text-decoration: none;
}

.scroll-to-top:hover,
.whatsapp-btn:hover {
  background: #d3aa04;
  transform: scale(1.1);
}

.scroll-to-top {
  display: none;
  bottom: 80px;
}

.scroll-to-top.visible {
  display: flex;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Custom Button Styles */
.btn-custom {
  background-color: #f8cd07;
  color: #000000;
  border: none;
  padding: 12px 24px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #e0b507;
  color: #000000;
}


/*=======================================
   Loader
========================================*/
.loader {
  display: none;
}

.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}

.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: #007C2B;
  color: #007C2B;
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}

.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}

.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}

.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}

.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}

@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
  }

  50%,
  100% {
    top: 19px;
    height: 26px;
  }
}

@-webkkeyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webktransform: scaleY(0.4)
  }

  20% {
    -webktransform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webktransform: scaleY(1.0);
  }
}