/*
Theme Name: idealGcity
Theme URI: https://idealtechnology.asia/
Author: Ideal Technology
Author URI: https://idealtechnology.asia/
Description: Custom theme
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 7.0
Version: 1.1
Text Domain: goldencity
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #2f3138;
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.noselect {
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For IE/Edge */
  user-select: none;         /* Standard */
}

p{
  font-family: #2f3138;  
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
 
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  background: linear-gradient(to bottom,  rgba(14,14,14,1) 0%,rgba(14,14,14,0.8) 45%,rgba(14,14,14,0.8) 46%,rgba(14,14,14,0.61) 73%,rgba(13,13,13,0.6) 74%,rgba(0,0,0,0.2) 100%);


}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
  margin-right: 8px;
}
.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: #0e0e0e;
}

.scrolled .header .logo img {
  max-height: 50px;  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .current-menu-item a:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .current-menu-item a, .navmenu .current-page-ancestor a,
  .navmenu .current-menu-item a:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .current-menu-item a, .navmenu .current-page-ancestor a,
  .navmenu .current-menu-item a:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .current-menu-item i,
  .navmenu .current-menu-item:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(255, 255, 255, 0.65);
  background-color: var(--default-color);
  font-size: 14px;
  position: relative;
  padding-top: 50px;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color:rgba(255, 255, 255, 0.65);
}

.footer .copyright {
  padding: 30px 0;
  color:rgba(255, 255, 255, 0.65);
}

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

.footer .credits {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer .credits a{
  display: block;
  margin: 10px;
  color: rgba(255, 255, 255, 0.65)
}

.footer .credits a:hover{
  color: rgba(255, 255, 255, 1);
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
    content: '';
    position: fixed;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    background-image: url('assets/img/preloader.png');
    background-size: cover; /* Ensures the image covers the area */
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 120px;
    animation: animate-preloader 5s linear infinite;
  }

  #preloader:after {
    content: '';
    position: fixed;
    top: calc(50% - 9px);
    left: calc(50% - 68px);
    background-image: url('assets/img/letterG.png');
    background-size: cover; /* Ensures the image covers the area */
    background-repeat: no-repeat;
    background-position: center;
    width: 136px;
    height: 100px;    
  }
  
 
  


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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top .bi-arrow-up-short {
  color: #ffffff;
  
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

.swiper-container {
  width: 100%;
  position: relative; 
}

.full-height{
  height: 100vh;
}

.swiper-container .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.swiper-container .overlay::before {
  content: "";
  background: rgba(6, 12, 34, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.swiper-container .swiper-text{
  width: 100%;
  height:100%;
  position: absolute;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.swiper-container .swiper-button-prev{
  left: 0;
}

.swiper-container .swiper-button-next{
  right: 0;
}

.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev,
.gallery-carousel-swiper-container .swiper-button-next, .gallery-carousel-swiper-container .swiper-button-prev {
  background: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  background-size: 20px;
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* Safari compatibility */
    -moz-user-select: none; /* Firefox compatibility */
    -ms-user-select: none; /* Old Microsoft browsers */

}

.swiper-button-prev::after, .swiper-button-next::after{
  font-size: 14px;
  color: #fff;
}

.swiper-text h1{
  font-size: 70px;
  font-weight: 700;
  color: var(--primary-color);
}

.swiper-text span{
  color: #ffffff!important;
}

.swiper-text p{
  width: 50%;
  text-align: center;
  color: #ffffff;
}
.swiper-container .swiper-slide video
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-container .swiper-slide .swiper-img{
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kenburns-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: kenburns 10s ease-in-out infinite;
}

#scroll-down{
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: center;  
  left: 0;
  right: 0;
  z-index: 99;  
  animation: slideDown 2s ease-in-out infinite;  
}

#scroll-down a{
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
}

@keyframes slideDown {
  0% {
    transform: translateY(-30%);    
  }
  50% {
    transform: translateY(0);    
  }
  100% {
    transform: translateY(-30%);    
  }
}

.v-line{
  width: 2px;
  height: 20px;
  background-color: var(--primary-color);
}

#scroll-down svg{
  color: var(--primary-color)
}

/* Ken Burns animation */
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0); /* Starting size */
  }
  100% {
    transform: scale(1.2) translate(-2%, -2%); 
  }  
}

.py-60{
  padding: 60px 0;
}

.wp-block-image{
  margin: 0;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secoundary-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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


/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
.card {
  background-color: var(--default-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.card .card-img img {
  transition: 0.3s ease-in-out;
}

.card h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
  padding: 0 20px;  
}

.card a {
  color: var(--primary-color);
  transition: 0.3;
}

.card a:hover {
  color: #ffffff;
}

.card .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

.card .stars i {
  color: #ffc107;
}
.card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  font-size: 15px;
}

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

.luxury-item{
  width: 100%;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.gc-logo{
  width: 65px;
  height: 65px;
  background: url('../img/gc-logo.png')no-repeat center;
  background-size: contain;
}

.gc-desc{
  width: calc(100% - 70px);
}

.border-radius-1{
  border-radius: 15px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}
.info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  
}

@media (max-width: 575px) {
  .php-email-form {
    padding: 20px;
  }
}

.php-email-form input[type=text],
.php-email-form input[type=email],
.php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #999999;
  background-color: var(--surface-color);
 
}

.php-email-form input[type=text]:focus,
.php-email-form input[type=email]:focus,
.php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.php-email-form input[type=text]::placeholder,
.php-email-form input[type=email]::placeholder,
.php-email-form textarea::placeholder {
  color: #999999;
}

.php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--primary-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


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

.card-logo{
  width: 90px;
  height: 90px;  
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}



.it-card-body{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.it-card-title{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-desc{
  width: 100%;
  
}

.it-card {
  border: none;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.it-card .card-img {
  overflow: hidden;
  border-radius: 0;
}

.it-card .card-img img {
  transition: 0.3s ease-in-out;
}

.it-card h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
  padding: 0 20px;  
}

.it-card a { 
  transition: 0.3;
}

.it-card a:hover {
  color: #ffffff;
}

.it-card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  font-size: 15px;
}

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

.social-links{
  margin-left: 15px;
}

.social-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.65);
  width: 35px;
  height: 35px;
  border-radius: 25px;
}

 .youtube{
  width: 22px;
  height: 22px;
  color: #cd201f;
}
.facebook{
  width: 25px;
  height: 25px;
  color: #1877F2;
}

.wp-block-itblocks-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

h2.it-title.line::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.breadcrumb-container{
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.breadcrumb-container::before {
  content: "";
  background: rgba(6, 12, 34, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.banner-text{
  width: 100%;
  position: absolute;
  bottom: 50px;
  z-index: 9;
}

.banner-desc{
  background: rgba(14,14,14,0.4);
}

.banner-text h1{
  color: #ffffff;
  font-size: 30px;
  padding: 10px 20px;
  background: var(--heading-color);
}

.banner-text p{
  color: #ffffff;
  padding: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.gc-tabs{
  position: relative;
}

.tab-pane{
  overflow: hidden;
  position: relative;
}

.nav-tabs{
  border: none!important;
  margin:30px 0;
}

.nav-tabs .nav-item{
  padding-right: 10px;
}

.nav-tabs .nav-link{
  background-color: var(--secondary-color);
  width: 100%;
  min-height: 100px;  
  border-radius: 10px!important; 
  border:none!important;  
}


.nav-tabs .nav-item .nav-link:hover, 
.nav-tabs .nav-item .active{
  background: var(--primary-color)!important;
}

.nav-tabs .nav-item h4{
  font-size: 24px;
  color: #ffffff;
}


.nav-tabs .nav-item p{
  font-size: 16px;
  font-weight: 400;
  color: var(--accent-color);
}

.tab-title br {
  display: block;
  line-height: 1.5;
}

.wp-block-itblocks-slider{
  overflow: hidden;
}

 .border-radius-2{
     border-radius: 15px;
     overflow: hidden;
 }

.icon-list-item{
    list-style: none;
    display: flex;
    align-items:center;
    padding: 5px 10px;
}

.icon-list-item i{
    font-size: 20px;
    color: #ffffff;
    margin-right: 10px;
}

.it-button{
    background: var(--primary-color);
    border:none;
    border-radius: 5px;
    color: #ffffff;
}

.it-button:hover{
    background: var(--secondary-color)!important;
}

.it-button svg{
    margin: 0 5px;
}

.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.align-right {
    text-align: right;
}

.modal-header{
    background: var(--primary-color);
    border: none!important;
}

.modal-header h5{
    color:#ffffff;
    text-align: center;
}

.close{
    background: #ffffff;
    padding: 5px 13px;
    border-radius: 25px;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 99999;
    border: none;
}

.btn-theme{
    background: var(--primary-color);
    color:#ffffff;
}

.post-excerpt{
    background: #e2e2e2;
    padding: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.post-excerpt p{
    color: #444444;
}

.it-pagination{
    padding: 50px 0;
    display: flex;
}

.it-pagination .page-numbers{
    padding: 10px 15px;
    background: #e2e2e2;
    color: #444444;
    font-size: 16px;
}

.it-pagination .page-numbers:hover, .it-pagination .current{
    background: var(--primary-color);
    color: #ffffff;
}

.modal-body{
    padding: 0!important;
}

.excerpt-wrapper{
    padding: 35px 25px;
}

.modal-title{
    text-align: center;
}

.excerpt-wrapper p{
    text-align: center;
}

.btn-wrapper{
    text-align: center;
}

.swiper-pagination-bullet-active{
    color: var(--primary-color)!important;
}

.tab-center .nav-tabs{
    justify-content: center;
}

@media screen and (max-width: 991px) {
    
   .header .logo {
    order: 0;
  }
    .full-height{
        height: auto!important;
    }
    
    .header .logo img {
        max-height: 50px;
        
    }
    
    .col-lg-4{
        margin-bottom: 15px;
    }
    
    .breadcrumb-container{
         background-position: top!important;
        background-size: contain!important;
        
    }
    
    .wp-block-itblocks-tabs .nav{
        display: flex;
        overflow-x: auto;
        width: 100%;
        flex-wrap: nowrap!important;
    }
    
    .wp-block-itblocks-tabs .nav .col-lg-2{
        width: 33.33%!important;
        padding-left:5px;
        padding-right: 5px;
    }
    
    .nav-tabs .nav-item h4{
        font-size: 15px;
    }
    
    .nav-tabs .nav-item p{
        font-size: 12px;
    }
    
    .nav-tabs .navlink{
        padding: 7px;
    }
    
    .wp-block-itblocks-row .col-lg-5{
        
    }
    
    .wp-block-itblocks-row .col-lg-7{
       
    }
}

.list-row{
    display: flex;
}

.list-row .icon-list-item{
    padding: 10px 15px;
}

.gallery-carousel-swiper-container{
    position: relative;
    overflow: hidden!important;
    background: #ffffff;
}

    
.gallery-carousel-swiper-container{
    width: 100%;
    height: 515px; /* Set the height of the slider */
}

.gallery-carousel-swiper-container .swiper-slide{
    display: flex; /* Center the image within the slide */
    justify-content: center;
    align-items: center;
    height: 100%;
}

.gallery-carousel-swiper-container .swiper-slide img{
    max-width: 100%; /* Ensure the image fits within the slide */
    max-height: 100%; /* Prevent overflow */
    object-fit: contain; /* Maintain aspect ratio without cropping */
   
}

.gallery-caption{
    position: absolute;
    bottom: 25px;
    margin: 0 auto;
    z-index: 999;
    background: rgba(255,255,255, 0.7);
    padding: 10px 20px;
}

.youtube-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn-readmore{
    background: var(--primary-color);
    color: #ffffff;
}

.btn-readmore:hover{
     background: #ffffff;
    color: var(--primary-color);
}




@media (max-width: 991px) {
    .list-row .icon-list-item{
        flex-direction: column;
    }
    
    .list-item-content{
        text-align: center;
    }
    
    .col-md-12 img{
        width: 100%;
    }
    .breadcrumb-container{
        height:40vh;
        position:relative;
    }
    
    .tab-pane .col-lg-5{
        order: 1;
    }
    .tab-pane .col-lg-7{
        order: 0;
    }
}

@media (max-width: 575px) {
    .list-row{
        flex-wrap: wrap;
    }
    
    .list-row .icon-list-item{
        flex-direction: row;
        width: 50%;
    }
    
    .list-item-content{
        text-align: left;
    }
    
     .breadcrumb-container{
         height: 60vh;
     }
}




