#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.text-secondary
 {
 color: #ffffff !important;
}
h2 {
  position: relative;
  display: math;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: #198754; 
  letter-spacing: 1px;
  padding: 8px 20px;
}
h2::before {
  content: "☘";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  font-size: 1.5rem;
  color: #198754;
}
h2::after {
  content: "☘";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  font-size: 1.5rem;
  color: #e7ad6f;
}
@media (max-width: 992px) {
  h2::after {
    display: none;
  }
}
h2 span.decor-line {
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    45deg,
    #198754,
    #198754 5px,
    #fca446 5px,
    #ED8312 10px
  );
  border-radius: 2px;
}
h1,
h2,
h3,
.font-heading {
    font-family: "Emblema One", system-ui;
    font-weight: 400;
    font-style: normal;
}
h4,
h5,
h6,
.font-body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}
@media (min-width: 992px) {
    .display-1 {
        font-size: 7rem;
    }
}
.btn {
    font-family: "Emblema One", system-ui;
    transition: .5s;
}
.btn-primary {
    color: #FFFFFF;
}
.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 30px;
    height: 30px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}
.navbar-dark .navbar-nav .nav-link {
    margin-right: 10px;
    padding: 40px 0;
    color: #ffffff;
    font-size: 17px;
    outline: none;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}
@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
.section-title {
    color: var(--bs-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5rem;
}
.animate-up-down {
    position: relative;
    animation: animateUpDown 1s ease infinite;
}
@keyframes animateUpDown { 
    0% { 
        top: 0px;
    }
    50% { 
        top: 10px;
    }
    100% { 
        top: 0px;
    } 
}
.animate-rotate {
    position: absolute;
    animation: animateRotate 8s linear infinite;
}
@keyframes animateRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}
.bg-hero {
    background: linear-gradient(rgba(34, 36, 41, .8), rgba(34, 36, 41, .8)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}
.feature {
    margin-bottom: 135px;
}
.feature::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: var(--bs-dark);
    z-index: -1;
}
.feature .feature-item {
    background: linear-gradient(var(--bs-light) 50%, var(--bs-dark));
}
.menu .tab-content img {
    transition: .5s;
}
.menu .tab-content img:hover {
    opacity: .7;
}
.team-item img {
    transform: scale(1.2);
    transition: .5s;
}
.team-item:hover img {
    margin-top: -50px;
    margin-bottom: 50px;
}
.team-item .team-overlay {
    position: absolute;
    top: calc(100% - 100px);
    bottom: 100px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 36, 41, .9);
    transition: .5s;
    opacity: 0;
}
.team-item:hover .team-overlay {
    top: 0;
    opacity: 1;
}
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--bs-primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}
.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}
.blog-item img {
    transition: .5s;
}
.blog-item:hover img {
    transform: scale(1.2);
}
.instagram img {
    transition: .5s;
}
.instagram img:hover {
    opacity: .9;
}
@media (min-width: 991.98px) {
    .credit {
        background: #111111;
    }
}
:root{
  --irish-green: #198754;
  --irish-orange: #ED8312;
  --irish-gold: #d6b24f;
  --light-cream: #fff9f1;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}
.styled-section{
  position: relative;
  background: linear-gradient(135deg, var(--irish-green) 0%, var(--irish-orange) 100%);
  color: var(--light-cream);
  padding: 30px 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--irish-gold);
  transition: all .5s ease;
}
.styled-section:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  background: linear-gradient(135deg, #1ca561 0%, #ff8f26 100%);
}
.styled-section h2{
  position: relative;
  z-index: 2;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
  animation: titleGlow 6s ease-in-out infinite;
}
.styled-section h3{
  font-family: 'Playfair Display', serif;

  background: linear-gradient(90deg, #fff, var(--irish-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 12px;
  margin-bottom: 20px;
  position: relative;
}
.styled-section h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: var(--irish-gold);
  border-radius: 2px;
  animation: slideLine 3s ease-in-out infinite;
}
.styled-section::after{
  content: "☘ ☘ ☘";
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 22px;
  color: rgba(255,255,255,0.25);
  animation: shamrockFloat 8s ease-in-out infinite;
}
.header-section {
    background-image: url('/img/leaves-bg.jpg'); 
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    color: #fff;                  
    position: relative;           
}
.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.267); 
    z-index: 1;
}
.header-section .container {
    position: relative;
    z-index: 2; 
}
  .section-wallets {
    margin: 50px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/img/leaves-bg.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #ffffff; 
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}
.section-wallets h3 {
    background-color: #4b6074; 
    color: #ffffff; 
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
@media (max-width: 768px) {
    .section-wallets {
        padding: 40px 20px;
    }
    .section-wallets h2 {
        font-size: 2rem;
    }
    .section-wallets h3 {
        font-size: 1.4rem;
    }
    .section-wallets ul li {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
  h1{
    font-size: 28px!important;
  }
  h2{
    font-size: 26px!important;
  }
  h3{
    font-size: 24px!important;
  }
}



.linking {
  background: #ffffff;
  border-left: 6px solid #009A44; 
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.linking h3 {
  color: #FF8200; 
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.linking ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.linking ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #f9fdf9;
  padding: 10px 14px;
  border-radius: 10px;
}

.linking ul li::before {
  content: "☘️";
  font-size: 20px;
  color: #009A44;
  margin-right: 12px;
}

.linking ul li a {
  text-decoration: none;
  color: #002b45;
  font-weight: 600;
  transition: color 0.2s ease;
}

.linking ul li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 154, 68, 0.1);
  background: #f3fff3;
}

.linking ul li:hover a {
  color: #FF8200;
}
